From 103d591f3b04abdfedbe10a469435b8f54307fb5 Mon Sep 17 00:00:00 2001 From: Mirokko Date: Tue, 8 Oct 2024 14:25:21 +0300 Subject: [PATCH 01/34] =?UTF-8?q?=D0=9F=D0=BE=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D1=82=D0=B5=D0=BB=D0=B5=D0=BF=D0=BE=D1=80=D1=82?= =?UTF-8?q?=20=D1=81=D1=83=D0=BC=D0=B5=D1=80=D0=B5=D1=87=D0=BD=D0=B8=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=BA=D0=BE=D0=B3=D0=B4=D0=B0=20=D0=BE=D0=BD=20=D0=B2?= =?UTF-8?q?=20=D0=BC=D0=B5=D1=85=D0=B5=20(#583)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Запрет сумеречникам телепортироваться изнутри рипли ## Почему / Баланс **Ссылка на публикацию в Discord** - [Баги](https://discord.com/channels/901772674865455115/1290354250332897333) ## Техническая информация ## Медиа ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: - fix: Исправлен баг с телепортом сумеречников в рипли и в утилизационной трубе --------- Co-authored-by: Tymur Valiiev --- Content.Server/ADT/Shadekin/ShadekinSystem.cs | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/Content.Server/ADT/Shadekin/ShadekinSystem.cs b/Content.Server/ADT/Shadekin/ShadekinSystem.cs index 9ecba6b12d0..cb4692ee998 100644 --- a/Content.Server/ADT/Shadekin/ShadekinSystem.cs +++ b/Content.Server/ADT/Shadekin/ShadekinSystem.cs @@ -23,6 +23,8 @@ using Content.Shared.Mobs.Systems; using Content.Server.Cuffs; using Content.Shared.Cuffs.Components; +using Content.Shared.Mech.Components; +using Content.Server.Disposal.Unit.Components; namespace Content.Server.ADT.Shadekin; @@ -126,9 +128,19 @@ private void OnTeleport(EntityUid uid, ShadekinComponent comp, ShadekinTeleportA return; // if (_interaction.InRangeUnobstructed(uid, args.Target, -1f)) // return; + + if ( + HasComp(uid) + || HasComp(uid) + ) + { + return; + } + if (!TryUseAbility(uid, 50)) return; args.Handled = true; + if (TryComp(uid, out var puller) && puller.Pulling != null && TryComp(puller.Pulling, out var pullable)) _pulling.TryStopPull(puller.Pulling.Value, pullable); _transform.SetCoordinates(uid, args.Target); @@ -161,7 +173,11 @@ public void TeleportRandomly(EntityUid uid, ShadekinComponent? comp) var coordsValid = false; EntityCoordinates coords = Transform(uid).Coordinates; - if (TryComp(uid, out var cuffable) && _cuffable.IsCuffed((uid, cuffable), true)) + if ( + (TryComp(uid, out var cuffable) && _cuffable.IsCuffed((uid, cuffable), true)) + || HasComp(uid) + || HasComp(uid) + ) { comp.MaxedPowerAccumulator = 0f; return; From db76606bf607f6b8bd1ac42efdb3fbafad0b9e54 Mon Sep 17 00:00:00 2001 From: RevengenRat <138193222+Ratyyy@users.noreply.github.com> Date: Tue, 8 Oct 2024 18:58:43 +0300 Subject: [PATCH 02/34] =?UTF-8?q?=D1=84=D0=B8=D0=BA=D1=81=20=D0=BA=D0=B0?= =?UTF-8?q?=D1=80=D1=82=20=D0=B8=20=D0=BA=D0=B8=D0=BB=D0=BE=20(#620)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR фиксы моих карт добавление кило ## Почему / Баланс **Ссылка на публикацию в Discord** оазис не нужен, кило лучше ## Медиа ## Требования - [ ] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [ ] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: Ratyyy - add: Инженеры НТ вновь вернули чертёж станции kilostation! - fix: Инженеры НТ исправили часть своих косяков на станциях! --- .../Tests/PostMapInitTest.cs | 3 +- .../Maps/ADTMaps/ADTStations/adt_delta.yml | 2402 +- .../Maps/ADTMaps/ADTStations/adt_gemini.yml | 94 +- .../ADTMaps/ADTStations/adt_kilostation.yml | 206057 +++++++++++++++ .../Maps/ADTMaps/ADTStations/adt_meta.yml | 246 +- .../Prototypes/ADT/Maps/ADTMaps/adt_kilo.yml | 77 + Resources/Prototypes/Maps/Pools/default.yml | 2 +- 7 files changed, 206814 insertions(+), 2067 deletions(-) create mode 100644 Resources/Maps/ADTMaps/ADTStations/adt_kilostation.yml create mode 100644 Resources/Prototypes/ADT/Maps/ADTMaps/adt_kilo.yml diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 55ec16f1a98..9669d30efd1 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -99,7 +99,8 @@ public sealed class PostMapInitTest "ADT_Gemini", "ADT_Aspid", "ADT_Moose", - "ADT_Alley" + "ADT_Alley", + "ADT_kilo" // ADT-End }; diff --git a/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml b/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml index b2dd1a28228..ab98401d8db 100644 --- a/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml +++ b/Resources/Maps/ADTMaps/ADTStations/adt_delta.yml @@ -25282,7 +25282,8 @@ entities: -11,9: 0: 61682 -11,10: - 0: 20253 + 0: 20237 + 7: 16 -11,11: 0: 21981 -11,12: @@ -27122,6 +27123,29 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: OccluderTree - type: Shuttle @@ -33581,7 +33605,7 @@ entities: pos: 19.5,-2.5 parent: 2 - type: Door - secondsUntilStateChange: -31015.291 + secondsUntilStateChange: -37845.32 state: Opening - type: DeviceLinkSource lastSignals: @@ -33726,7 +33750,7 @@ entities: pos: 49.5,4.5 parent: 2 - type: Door - secondsUntilStateChange: -2495.8022 + secondsUntilStateChange: -9325.833 state: Opening - type: DeviceLinkSource lastSignals: @@ -33929,7 +33953,7 @@ entities: pos: 49.5,22.5 parent: 2 - type: Door - secondsUntilStateChange: -77505.35 + secondsUntilStateChange: -84335.38 state: Opening - type: DeviceLinkSource lastSignals: @@ -35676,11 +35700,6 @@ entities: lastSignals: DoorStatus: False DockStatus: True - - uid: 532 - components: - - type: Transform - pos: 32.5,38.5 - parent: 2 - uid: 37112 components: - type: Transform @@ -39601,6 +39620,11 @@ entities: parent: 2 - proto: AtmosDeviceFanTiny entities: + - uid: 532 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 - uid: 1114 components: - type: Transform @@ -100597,7 +100621,7 @@ entities: - uid: 12611 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -38.5,-1.5 parent: 2 - uid: 12612 @@ -109153,8 +109177,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -117710,7 +117734,7 @@ entities: - uid: 14963 components: - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 27.5,61.5 parent: 2 - uid: 14964 @@ -118151,6 +118175,26 @@ entities: - type: Transform pos: -72.5,-12.5 parent: 2 + - uid: 24340 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 24341 + components: + - type: Transform + pos: -69.5,-11.5 + parent: 2 + - uid: 24342 + components: + - type: Transform + pos: -68.5,-11.5 + parent: 2 + - uid: 24343 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 - proto: CrateFilledSpawner entities: - uid: 15000 @@ -121500,13 +121544,14 @@ entities: - type: Transform pos: 47.5,16.5 parent: 2 -- proto: DisposalJunctionFlipped - entities: - uid: 15405 components: - type: Transform + rot: 3.141592653589793 rad pos: -18.5,49.5 parent: 2 +- proto: DisposalJunctionFlipped + entities: - uid: 15406 components: - type: Transform @@ -185423,17 +185468,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.457588,-68.454704 parent: 2 -- proto: LightTubeCrystalOrange - entities: - - uid: 24258 - components: - - type: Transform - parent: 24257 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - proto: LightTubeCrystalPink entities: - uid: 24260 @@ -185465,57 +185499,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 24266 - components: - - type: Transform - parent: 24265 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24268 - components: - - type: Transform - parent: 24267 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24270 - components: - - type: Transform - parent: 24269 - - type: LightBulb - lightRadius: 4 - lightEnergy: 2 - - type: Physics - canCollide: False - - uid: 24272 - components: - - type: Transform - parent: 24271 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24274 - components: - - type: Transform - parent: 24273 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24276 - components: - - type: Transform - parent: 24275 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 24278 components: - type: Transform @@ -185525,94 +185508,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 24280 - components: - - type: Transform - parent: 24279 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24282 - components: - - type: Transform - parent: 24281 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24284 - components: - - type: Transform - parent: 24283 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24286 - components: - - type: Transform - parent: 24285 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24288 - components: - - type: Transform - parent: 24287 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24290 - components: - - type: Transform - parent: 24289 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24292 - components: - - type: Transform - parent: 24291 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24294 - components: - - type: Transform - parent: 24293 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24296 - components: - - type: Transform - parent: 24295 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24298 - components: - - type: Transform - parent: 24297 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 24300 components: - type: Transform @@ -185622,83 +185517,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 24302 - components: - - type: Transform - parent: 24301 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24304 - components: - - type: Transform - parent: 24303 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24306 - components: - - type: Transform - parent: 24305 - - type: LightBulb - lightRadius: 2 - - type: Physics - canCollide: False - - uid: 24308 - components: - - type: Transform - parent: 24307 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24310 - components: - - type: Transform - parent: 24309 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24312 - components: - - type: Transform - parent: 24311 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24314 - components: - - type: Transform - parent: 24313 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24316 - components: - - type: Transform - parent: 24315 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24318 - components: - - type: Transform - parent: 24317 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 24320 components: - type: Transform @@ -185708,60 +185526,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 24322 - components: - - type: Transform - parent: 24321 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24324 - components: - - type: Transform - parent: 24323 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24326 - components: - - type: Transform - parent: 24325 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24328 - components: - - type: Transform - parent: 24327 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24330 - components: - - type: Transform - parent: 24329 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24332 - components: - - type: Transform - parent: 24331 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 24334 components: - type: Transform @@ -185771,247 +185535,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 24336 - components: - - type: Transform - parent: 24335 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24338 - components: - - type: Transform - parent: 24337 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24340 - components: - - type: Transform - parent: 24339 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24342 - components: - - type: Transform - parent: 24341 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24344 - components: - - type: Transform - parent: 24343 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24346 - components: - - type: Transform - parent: 24345 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24348 - components: - - type: Transform - parent: 24347 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24350 - components: - - type: Transform - parent: 24349 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24352 - components: - - type: Transform - parent: 24351 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24354 - components: - - type: Transform - parent: 24353 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24356 - components: - - type: Transform - parent: 24355 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24358 - components: - - type: Transform - parent: 24357 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24360 - components: - - type: Transform - parent: 24359 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24362 - components: - - type: Transform - parent: 24361 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24364 - components: - - type: Transform - parent: 24363 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24366 - components: - - type: Transform - parent: 24365 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24368 - components: - - type: Transform - parent: 24367 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24370 - components: - - type: Transform - parent: 24369 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24372 - components: - - type: Transform - parent: 24371 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24374 - components: - - type: Transform - parent: 24373 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24376 - components: - - type: Transform - parent: 24375 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24378 - components: - - type: Transform - parent: 24377 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24380 - components: - - type: Transform - parent: 24379 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24382 - components: - - type: Transform - parent: 24381 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24384 - components: - - type: Transform - parent: 24383 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24386 - components: - - type: Transform - parent: 24385 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24388 - components: - - type: Transform - parent: 24387 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 24390 components: - type: Transform @@ -186021,77 +185544,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 24392 - components: - - type: Transform - parent: 24391 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24394 - components: - - type: Transform - parent: 24393 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24396 - components: - - type: Transform - parent: 24395 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24398 - components: - - type: Transform - parent: 24397 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24400 - components: - - type: Transform - parent: 24399 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24402 - components: - - type: Transform - parent: 24401 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24404 - components: - - type: Transform - parent: 24403 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 24406 - components: - - type: Transform - parent: 24405 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 24408 components: - type: Transform @@ -188638,15 +188090,16 @@ entities: parent: 37216 - proto: MaintenanceFluffSpawner entities: - - uid: 24552 + - uid: 24336 components: - type: Transform - pos: -29.5,58.5 + rot: -1.5707963267948966 rad + pos: 7.5,48.5 parent: 2 - - uid: 24553 + - uid: 24552 components: - type: Transform - pos: 7.5,48.5 + pos: -29.5,58.5 parent: 2 - uid: 24554 components: @@ -200606,26 +200059,6 @@ entities: parent: 2 - proto: PoweredlightEmpty entities: - - uid: 24257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-20.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FF8227FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24258 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 24259 components: - type: Transform @@ -200679,123 +200112,6 @@ entities: ent: 24264 - type: ApcPowerReceiver powerLoad: 60 - - uid: 24265 - components: - - type: Transform - pos: 27.5,61.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24266 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24267 - components: - - type: Transform - pos: 20.5,72.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24268 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-42.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 2 - color: '#FB4747FF' - radius: 4 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24270 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-23.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24272 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24273 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-21.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24274 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24275 - components: - - type: Transform - pos: 14.5,62.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24276 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 24277 components: - type: Transform @@ -200815,202 +200131,6 @@ entities: ent: 24278 - type: ApcPowerReceiver powerLoad: 60 - - uid: 24279 - components: - - type: Transform - pos: -39.5,-50.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24280 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24281 - components: - - type: Transform - pos: -38.5,-64.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24282 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24283 - components: - - type: Transform - pos: 12.5,56.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24284 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-61.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24286 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,59.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24288 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24289 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,39.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24290 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24291 - components: - - type: Transform - pos: -22.5,-19.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24292 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,62.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24294 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.49999997,45.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24296 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-46.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24298 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 24299 components: - type: Transform @@ -201031,183 +200151,6 @@ entities: ent: 24300 - type: ApcPowerReceiver powerLoad: 60 - - uid: 24301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-58.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24302 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,25.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24304 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24305 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-53.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 3 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24306 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-5.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24308 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-20.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24310 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-20.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24312 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24313 - components: - - type: Transform - pos: -41.5,-57.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24314 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24315 - components: - - type: Transform - pos: 37.5,-3.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24316 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24317 - components: - - type: Transform - pos: -48.5,-33.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24318 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 24319 components: - type: Transform @@ -201228,123 +200171,6 @@ entities: ent: 24320 - type: ApcPowerReceiver powerLoad: 60 - - uid: 24321 - components: - - type: Transform - pos: 7.5,54.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24322 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24323 - components: - - type: Transform - pos: -1.5,27.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24324 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24325 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24326 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,48.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24328 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-40.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24330 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24331 - components: - - type: Transform - pos: -41.5,-19.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24332 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 24333 components: - type: Transform @@ -201365,530 +200191,6 @@ entities: ent: 24334 - type: ApcPowerReceiver powerLoad: 60 - - uid: 24335 - components: - - type: Transform - pos: -32.5,-17.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24336 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-14.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24338 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-14.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24340 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24341 - components: - - type: Transform - pos: -39.5,-8.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24342 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-1.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24344 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,27.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24346 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,31.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24348 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,35.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24350 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,35.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24352 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24353 - components: - - type: Transform - pos: -30.5,23.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24354 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24355 - components: - - type: Transform - pos: -41.5,40.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24356 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24357 - components: - - type: Transform - pos: -38.5,40.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24358 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,41.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24360 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,53.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24362 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,51.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24364 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24365 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-38.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24366 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24367 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,57.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24368 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24369 - components: - - type: Transform - pos: -25.5,57.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24370 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24371 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-72.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24372 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24373 - components: - - type: Transform - pos: -32.5,-69.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24374 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24375 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-65.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24376 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24377 - components: - - type: Transform - pos: -16.5,-61.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24378 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24379 - components: - - type: Transform - pos: -8.5,-54.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24380 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24381 - components: - - type: Transform - pos: 5.5,-54.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24382 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24383 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-54.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24384 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-55.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24386 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-55.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24388 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 24389 components: - type: Transform @@ -201909,164 +200211,6 @@ entities: ent: 24390 - type: ApcPowerReceiver powerLoad: 60 - - uid: 24391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-55.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24392 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24393 - components: - - type: Transform - pos: 37.5,-46.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24394 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24395 - components: - - type: Transform - pos: 44.5,-46.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24396 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-42.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24398 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-36.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24400 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-29.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24402 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24403 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-28.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 2 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24404 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 24405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-35.5 - parent: 2 - - type: PointLight - softness: 0.5 - energy: 1 - color: '#FB4747FF' - radius: 8 - enabled: True - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24406 - - type: ApcPowerReceiver - powerLoad: 60 - uid: 24407 components: - type: Transform @@ -202285,12 +200429,6 @@ entities: parent: 2 - proto: PoweredlightRed entities: - - uid: 26107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-36.5 - parent: 2 - uid: 26108 components: - type: Transform @@ -202319,6 +200457,383 @@ entities: parent: 2 - proto: PoweredSmallLight entities: + - uid: 24257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-20.5 + parent: 2 + - uid: 24258 + components: + - type: Transform + pos: 27.5,61.5 + parent: 2 + - uid: 24265 + components: + - type: Transform + pos: 20.5,72.5 + parent: 2 + - uid: 24266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-42.5 + parent: 2 + - uid: 24267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-23.5 + parent: 2 + - uid: 24268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-21.5 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 24271 + components: + - type: Transform + pos: 12.5,56.5 + parent: 2 + - uid: 24272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-61.5 + parent: 2 + - uid: 24273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,59.5 + parent: 2 + - uid: 24274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,39.5 + parent: 2 + - uid: 24275 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 24276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,62.5 + parent: 2 + - uid: 24279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,45.5 + parent: 2 + - uid: 24280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-46.5 + parent: 2 + - uid: 24281 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 24282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,25.5 + parent: 2 + - uid: 24283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-53.5 + parent: 2 + - uid: 24284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,53.5 + parent: 2 + - uid: 24285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 2 + - uid: 24286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 24287 + components: + - type: Transform + pos: -41.5,-57.5 + parent: 2 + - uid: 24288 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 24289 + components: + - type: Transform + pos: -48.5,-33.5 + parent: 2 + - uid: 24290 + components: + - type: Transform + pos: 7.5,54.5 + parent: 2 + - uid: 24291 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 24292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,32.5 + parent: 2 + - uid: 24293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,48.5 + parent: 2 + - uid: 24294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-40.5 + parent: 2 + - uid: 24295 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 24296 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - uid: 24298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-14.5 + parent: 2 + - uid: 24301 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 24302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 2 + - uid: 24303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,27.5 + parent: 2 + - uid: 24304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,31.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,35.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - uid: 24307 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + pos: -38.5,40.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + pos: -41.5,40.5 + parent: 2 + - uid: 24310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,41.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,51.5 + parent: 2 + - uid: 24312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-38.5 + parent: 2 + - uid: 24313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,57.5 + parent: 2 + - uid: 24314 + components: + - type: Transform + pos: -25.5,57.5 + parent: 2 + - uid: 24315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-76.5 + parent: 2 + - uid: 24316 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - uid: 24317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-65.5 + parent: 2 + - uid: 24318 + components: + - type: Transform + pos: -16.5,-61.5 + parent: 2 + - uid: 24321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-58.5 + parent: 2 + - uid: 24322 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - uid: 24323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-54.5 + parent: 2 + - uid: 24324 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 24325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-55.5 + parent: 2 + - uid: 24326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-55.5 + parent: 2 + - uid: 24327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-49.5 + parent: 2 + - uid: 24328 + components: + - type: Transform + pos: 44.5,-46.5 + parent: 2 + - uid: 24329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-42.5 + parent: 2 + - uid: 24330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 24331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-29.5 + parent: 2 + - uid: 24332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-28.5 + parent: 2 + - uid: 24335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-55.5 + parent: 2 + - uid: 24337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-36.5 + parent: 2 + - uid: 24338 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 2 + - uid: 24339 + components: + - type: Transform + pos: 14.5,62.5 + parent: 2 - uid: 26112 components: - type: Transform @@ -205923,14 +204438,14 @@ entities: - type: Transform pos: -33.5,45.5 parent: 2 - - uid: 26664 +- proto: RandomPosterContraband + entities: + - uid: 24270 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-63.5 parent: 2 -- proto: RandomPosterContraband - entities: - uid: 26665 components: - type: Transform @@ -213938,6 +212453,16 @@ entities: parent: 2 - proto: SheetGlass entities: + - uid: 24344 + components: + - type: Transform + pos: -9.530755,-31.294102 + parent: 2 + - uid: 24345 + components: + - type: Transform + pos: -9.51513,-31.106602 + parent: 2 - uid: 28165 components: - type: Transform @@ -214060,6 +212585,16 @@ entities: parent: 2 - proto: SheetPlastic entities: + - uid: 24346 + components: + - type: Transform + pos: -9.733879,-32.38785 + parent: 2 + - uid: 24347 + components: + - type: Transform + pos: -9.499504,-32.38785 + parent: 2 - uid: 28181 components: - type: Transform @@ -271074,13 +269609,6 @@ entities: - type: Transform pos: -44.5,4.5 parent: 2 - - uid: 37043 - components: - - type: Transform - pos: 0.5158134,45.46363 - parent: 2 - - type: Physics - canCollide: False - uid: 37044 components: - type: Transform diff --git a/Resources/Maps/ADTMaps/ADTStations/adt_gemini.yml b/Resources/Maps/ADTMaps/ADTStations/adt_gemini.yml index ae2ae79e014..db0a15e258e 100644 --- a/Resources/Maps/ADTMaps/ADTStations/adt_gemini.yml +++ b/Resources/Maps/ADTMaps/ADTStations/adt_gemini.yml @@ -12695,7 +12695,7 @@ entities: pos: -9.5,60.5 parent: 2 - type: Door - secondsUntilStateChange: -9961.385 + secondsUntilStateChange: -10706.288 state: Opening - uid: 204 components: @@ -14242,7 +14242,7 @@ entities: pos: 0.5,-22.5 parent: 2 - type: Door - secondsUntilStateChange: -91402.07 + secondsUntilStateChange: -92146.98 state: Opening - uid: 483 components: @@ -14549,7 +14549,7 @@ entities: pos: -1.5,10.5 parent: 2 - type: Door - secondsUntilStateChange: -114362.38 + secondsUntilStateChange: -115107.29 state: Opening - proto: AirlockResearchDirectorLocked entities: @@ -14560,7 +14560,7 @@ entities: pos: -2.5,11.5 parent: 2 - type: Door - secondsUntilStateChange: -114362.016 + secondsUntilStateChange: -115106.92 state: Opening - proto: AirlockSalvageGlassLocked entities: @@ -14596,7 +14596,7 @@ entities: pos: 24.5,72.5 parent: 2 - type: Door - secondsUntilStateChange: -112916.15 + secondsUntilStateChange: -113661.055 state: Opening - uid: 545 components: @@ -14623,7 +14623,7 @@ entities: pos: 18.5,68.5 parent: 2 - type: Door - secondsUntilStateChange: -128789.57 + secondsUntilStateChange: -129534.48 state: Opening - uid: 549 components: @@ -14638,7 +14638,7 @@ entities: pos: 23.5,72.5 parent: 2 - type: Door - secondsUntilStateChange: -112916.586 + secondsUntilStateChange: -113661.49 state: Opening - uid: 551 components: @@ -14668,7 +14668,7 @@ entities: pos: 10.5,6.5 parent: 2 - type: Door - secondsUntilStateChange: -114364.945 + secondsUntilStateChange: -115109.85 state: Opening - uid: 555 components: @@ -14676,7 +14676,7 @@ entities: pos: -0.5,15.5 parent: 2 - type: Door - secondsUntilStateChange: -114358.65 + secondsUntilStateChange: -115103.555 state: Opening - uid: 556 components: @@ -14686,7 +14686,7 @@ entities: pos: 2.5,7.5 parent: 2 - type: Door - secondsUntilStateChange: -113819.62 + secondsUntilStateChange: -114564.52 state: Opening - uid: 557 components: @@ -14695,7 +14695,7 @@ entities: pos: 11.5,3.5 parent: 2 - type: Door - secondsUntilStateChange: -151580.03 + secondsUntilStateChange: -152324.94 state: Opening - uid: 558 components: @@ -14703,7 +14703,7 @@ entities: pos: 5.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -114374.75 + secondsUntilStateChange: -115119.66 state: Opening - uid: 559 components: @@ -14711,7 +14711,7 @@ entities: pos: -0.5,16.5 parent: 2 - type: Door - secondsUntilStateChange: -114358.88 + secondsUntilStateChange: -115103.79 state: Opening - uid: 560 components: @@ -14719,7 +14719,7 @@ entities: pos: 13.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -114373.18 + secondsUntilStateChange: -115118.086 state: Opening - uid: 561 components: @@ -14727,7 +14727,7 @@ entities: pos: 14.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -114373.484 + secondsUntilStateChange: -115118.39 state: Opening - proto: AirlockScienceLocked entities: @@ -14737,7 +14737,7 @@ entities: pos: 27.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -114334.984 + secondsUntilStateChange: -115079.89 state: Opening - uid: 563 components: @@ -14745,7 +14745,7 @@ entities: pos: 30.5,13.5 parent: 2 - type: Door - secondsUntilStateChange: -114333.414 + secondsUntilStateChange: -115078.32 state: Opening - uid: 564 components: @@ -14754,7 +14754,7 @@ entities: pos: 17.5,15.5 parent: 2 - type: Door - secondsUntilStateChange: -114372.15 + secondsUntilStateChange: -115117.055 state: Opening - uid: 565 components: @@ -14762,7 +14762,7 @@ entities: pos: 30.5,12.5 parent: 2 - type: Door - secondsUntilStateChange: -114333.68 + secondsUntilStateChange: -115078.586 state: Opening - uid: 566 components: @@ -14770,7 +14770,7 @@ entities: pos: 27.5,12.5 parent: 2 - type: Door - secondsUntilStateChange: -114335.28 + secondsUntilStateChange: -115080.19 state: Opening - uid: 567 components: @@ -14778,7 +14778,7 @@ entities: pos: 15.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -155665.88 + secondsUntilStateChange: -156410.78 state: Opening - uid: 568 components: @@ -14786,7 +14786,7 @@ entities: pos: 11.5,19.5 parent: 2 - type: Door - secondsUntilStateChange: -114376.55 + secondsUntilStateChange: -115121.45 state: Opening - uid: 569 components: @@ -14795,7 +14795,7 @@ entities: pos: 17.5,14.5 parent: 2 - type: Door - secondsUntilStateChange: -114372.414 + secondsUntilStateChange: -115117.32 state: Opening - uid: 570 components: @@ -14804,7 +14804,7 @@ entities: pos: 22.5,15.5 parent: 2 - type: Door - secondsUntilStateChange: -114370.68 + secondsUntilStateChange: -115115.586 state: Opening - uid: 571 components: @@ -14813,7 +14813,7 @@ entities: pos: 22.5,14.5 parent: 2 - type: Door - secondsUntilStateChange: -114370.414 + secondsUntilStateChange: -115115.32 state: Opening - proto: AirlockSecurity entities: @@ -83724,7 +83724,7 @@ entities: pos: 19.5,62.5 parent: 2 - type: Door - secondsUntilStateChange: -152161.25 + secondsUntilStateChange: -152906.16 state: Closing - uid: 12663 components: @@ -84050,7 +84050,7 @@ entities: pos: -4.5,-15.5 parent: 2 - type: Door - secondsUntilStateChange: -5276.642 + secondsUntilStateChange: -6021.545 state: Closing - uid: 12727 components: @@ -86985,6 +86985,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 15882 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 13153 @@ -105641,6 +105648,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 21154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeTJunction entities: - uid: 15617 @@ -107656,14 +107671,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 15883 components: - type: Transform @@ -110645,6 +110652,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 27164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVolumePump entities: - uid: 16278 @@ -120452,7 +120467,7 @@ entities: pos: 29.5,63.5 parent: 2 - type: Door - secondsUntilStateChange: -127931.87 + secondsUntilStateChange: -128676.77 state: Opening - proto: HospitalCurtainsOpen entities: @@ -139199,13 +139214,6 @@ entities: - type: Transform pos: 60.40058,-8.604193 parent: 2 -- proto: RubberStampHop - entities: - - uid: 21154 - components: - - type: Transform - pos: -6.5865464,1.3825479 - parent: 2 - proto: RubberStampSyndicate entities: - uid: 21155 diff --git a/Resources/Maps/ADTMaps/ADTStations/adt_kilostation.yml b/Resources/Maps/ADTMaps/ADTStations/adt_kilostation.yml new file mode 100644 index 00000000000..e60c64f9f1c --- /dev/null +++ b/Resources/Maps/ADTMaps/ADTStations/adt_kilostation.yml @@ -0,0 +1,206057 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 6: FloorAsphalt + 9: FloorAsteroidSand + 10: FloorAsteroidSandDug + 11: FloorAsteroidSandRed + 12: FloorAsteroidSandUnvariantized + 16: FloorBar + 19: FloorBlueCircuit + 29: FloorClown + 33: FloorDark + 34: FloorDarkDiagonal + 38: FloorDarkMono + 42: FloorDarkPlastic + 46: FloorElevatorShaft + 48: FloorFreezer + 49: FloorGlass + 51: FloorGrass + 55: FloorGrayConcrete + 58: FloorGreenCircuit + 61: FloorHullReinforced + 64: FloorKitchen + 65: FloorLaundry + 66: FloorLino + 69: FloorMime + 77: FloorPlanetDirt + 78: FloorPlanetGrass + 80: FloorRGlass + 81: FloorReinforced + 83: FloorRockVault + 92: FloorSilver + 95: FloorSteel + 97: FloorSteelCheckerDark + 98: FloorSteelCheckerLight + 110: FloorTechMaint + 111: FloorTechMaint2 + 112: FloorTechMaint3 + 113: FloorWebTile + 114: FloorWhite + 123: FloorWhitePlastic + 124: FloorWood + 126: FloorWoodTile + 127: Lattice + 136: Plating + 137: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: kilo + - type: Transform + pos: -0.359375,-0.484375 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: XwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAEwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAOgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAUQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAEwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAKgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAACQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAQAAAAAAAQAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAQAAAAAAAQAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAiAAAAAAAQAAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAIQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: fAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAATgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAOgAAAAAATgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbwAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAATgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAOgAAAAAATgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAATgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiQAAAAAACQAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAOgAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAiAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAiAAAAAAAfAAAAAAARQAAAAAARQAAAAAARQAAAAAAiAAAAAAAKgAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAKgAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAYQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAYQAAAAAAiAAAAAAAKgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAiAAAAAAAKgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: CQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYQAAAAAAiAAAAAAAYQAAAAAAiAAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAMwAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAXwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAewAAAAAAKgAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: XwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAOgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAOgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAOgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: XwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAACQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAfgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAEwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfgAAAAAAiAAAAAAAiAAAAAAAEwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAKgAAAAAAKgAAAAAAfgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: iAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: iAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAAiQAAAAAACQAAAAAAfwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAXwAAAAAAIQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAOgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAXwAAAAAAIQAAAAAAEwAAAAAAEwAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAEwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: iAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAfgAAAAAAfgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAfgAAAAAAfgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAiAAAAAAATgAAAAAATgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfAAAAAAAfgAAAAAAfgAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATQAAAAAATQAAAAAATQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATQAAAAAATQAAAAAATQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACQAAAAAACQAAAAAADAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAACQAAAAAACQAAAAAADAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAACQAAAAAACQAAAAAADAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAACQAAAAAACQAAAAAADAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAKgAAAAAADAAAAAAADAAAAAAADAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: iAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAewAAAAAAewAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAAQQAAAAAAQQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: XwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: MAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAbwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAfAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAACQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAYQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAACQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: KgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAMwAAAAAAiAAAAAAAMwAAAAAAiAAAAAAAMwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: iAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAACQAAAAAACQAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAYgAAAAAAKgAAAAAAAAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAYgAAAAAAKgAAAAAAAAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: XwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAewAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAiAAAAAAAewAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAewAAAAAAewAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAewAAAAAAKgAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: CQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAACQAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAACQAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAACQAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: KgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAbwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAbwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAbwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: ewAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAewAAAAAAewAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAewAAAAAAewAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAewAAAAAAewAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAEAAAAAAAUAAAAAAAEAAAAAAAUAAAAAAAEAAAAAAAUAAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAUAAAAAAAEAAAAAAAUAAAAAAAEAAAAAAAUAAAAAAAEAAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAewAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAewAAAAAAKgAAAAAAiAAAAAAANwAAAAAANwAAAAAANwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAewAAAAAAKgAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAEwAAAAAAEwAAAAAAKgAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAEwAAAAAAEwAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: iAAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAEAAAAAAAUAAAAAAAEAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAEAAAAAAAUAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAfwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfAAAAAAAfAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: ewAAAAAAKgAAAAAAiAAAAAAANwAAAAAANwAAAAAANwAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAANwAAAAAANwAAAAAANwAAAAAAiAAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAiAAAAAAAKgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: fwAAAAAAfwAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAbgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAbgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAbgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAbgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: iAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAiAAAAAAAKgAAAAAA + version: 6 + -5,0: + ind: -5,0 + tiles: CQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAKgAAAAAAfAAAAAAAfAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAACQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: KgAAAAAAcQAAAAAAiAAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAiAAAAAAAYQAAAAAAcQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAewAAAAAAewAAAAAAewAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAcQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAiAAAAAAAcQAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAcQAAAAAAYQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAANwAAAAAANwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAANwAAAAAANwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -5,-3: + ind: -5,-3 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACgAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAACQAAAAAAiAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAcgAAAAAAiAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAiAAAAAAA + version: 6 + -5,-4: + ind: -5,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAA + version: 6 + 3,-4: + ind: 3,-4 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAYQAAAAAAYQAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -2,-5: + ind: -2,-5 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAIQAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAAAAAAAAAiQAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAfwAAAAAAiAAAAAAAiQAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAIQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAIQAAAAAAAAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: fwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXwAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAMAAAAAAAKgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAMAAAAAAAMAAAAAAAXwAAAAAAMAAAAAAAMAAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: UQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOgAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAKgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAA + version: 6 + 1,-5: + ind: 1,-5 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAACQAAAAAACQAAAAAAfwAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAACQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAiAAAAAAACQAAAAAACQAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: KgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAUQAAAAAAiAAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAKgAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAKgAAAAAAOgAAAAAAKgAAAAAAUQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-5: + ind: 2,-5 + tiles: AAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiQAAAAAAfwAAAAAAiAAAAAAA + version: 6 + -6,-3: + ind: -6,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXwAAAAAAQQAAAAAAQQAAAAAAiAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAXwAAAAAAQQAAAAAAQQAAAAAAiAAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAXwAAAAAATgAAAAAATgAAAAAATgAAAAAAXwAAAAAAQQAAAAAAQQAAAAAAiAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAXwAAAAAATgAAAAAATgAAAAAATgAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAUwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -6,-2: + ind: -6,-2 + tiles: QgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAXwAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAA + version: 6 + -6,-4: + ind: -6,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAA + version: 6 + -2,-6: + ind: -2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAA + version: 6 + -7,-3: + ind: -7,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAA + version: 6 + -7,-2: + ind: -7,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,-1: + ind: -6,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiQAAAAAACQAAAAAAiQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAiQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAiQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAPQAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAiAAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAPQAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,3: + ind: -4,3 + tiles: KgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAACQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXwAAAAAAiAAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAMQAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAIQAAAAAAMQAAAAAAIQAAAAAAIQAAAAAAXwAAAAAAiAAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXwAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMQAAAAAAKgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAMQAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAMQAAAAAAIQAAAAAAIQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAMQAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAMQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,2: + ind: -5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfAAAAAAAKgAAAAAAMQAAAAAAMQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -5,3: + ind: -5,3 + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAJgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAJgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAJgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAALgAAAAAALgAAAAAAiAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAfAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAfgAAAAAA + version: 6 + -5,4: + ind: -5,4 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,4: + ind: -4,4 + tiles: iAAAAAAAiAAAAAAAiAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,3: + ind: -6,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAJgAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAXAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + -6,2: + ind: -6,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiQAAAAAAiQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,3: + ind: -3,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -6,4: + ind: -6,4 + tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -7,3: + ind: -7,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACwAAAAAA + version: 6 + -7,4: + ind: -7,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,4: + ind: -3,4 + tiles: fwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,1: + ind: -5,1 + tiles: AAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAAiQAAAAAAiQAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAiQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAiQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAAEwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEwAAAAAAiAAAAAAAKgAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,3: + ind: 0,3 + tiles: iAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAEwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEwAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAUQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAUQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAEwAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAiAAAAAAAEwAAAAAAiAAAAAAAOgAAAAAAUQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAOgAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAOgAAAAAAUQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAKgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAKgAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAUQAAAAAAKgAAAAAAUQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAiQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-6: + ind: -1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAA + version: 6 + 0,-6: + ind: 0,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 1,-6: + ind: 1,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-5: + ind: 3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAiAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: iAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-6: + ind: 2,-6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAiQAAAAAAiQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 9477: -6,-61 + 9478: -2,-61 + 9479: 2,-61 + 9480: 6,-61 + 12174: 3,-60 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 8662: 16,-63 + 9486: -10,-60 + 9487: -10,-56 + 9488: -10,-52 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 9483: 4,-61 + 9484: 0,-61 + 9485: -4,-61 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 9474: -10,-58 + 9475: -10,-54 + 9476: -10,-50 + - node: + color: '#18A2D5FF' + id: Basalt1 + decals: + 7431: -85,57 + 7432: -85,61 + 7433: -90,62 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 3742: 18.044418,-25.922356 + 7429: -85,60 + 7430: -90,61 + 7555: -62.54046,68.10831 + 7556: -60.13421,66.92081 + 8976: -21.596441,28.856123 + 8977: -19.330816,28.981123 + 8980: -29.046104,27.871748 + 8986: -84.909,-15.961215 + 8987: -83.89337,-18.461216 + 8988: -81.06525,-20.98078 + 8989: -79.94025,-24.94563 + 8993: -92.298805,-20.181383 + 8994: -101.19247,-29.90015 + 8995: -59.54586,-49.45685 + 8998: -62.280235,-45.253223 + 8999: -64.56333,-56.33496 + 9000: -61.71958,-54.730766 + 9015: 51.953697,35.95971 + 9016: 39.16196,36.069553 + 9017: 5.977743,29.897476 + 12213: -50,-13 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 12214: -48.70035,-14.276043 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 7426: -89,51 + 7427: -86,57 + 7428: -89,60 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 7553: -66.55608,69.96768 + 8979: -32.952354,28.277998 + 8996: -61.592735,-49.45685 + 9001: -64.56333,-54.387016 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 12216: -50.76285,-15.057293 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 8981: -32.78048,29.824873 + 9002: -63.18833,-55.793266 + 9003: -41.127533,-57.640194 + 9004: -38.955658,-58.233944 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 7554: -64.80608,69.09268 + 8990: -79.909,-23.023754 + 8991: -99.202324,-19.868883 + 8992: -92.28318,-23.556383 + 8997: -60.04586,-47.722473 + 9005: -30.118109,-69.050255 + 9006: -21.709429,-84.74708 + 9007: 43.54626,-71.697876 + 9008: 56.139046,-57.95829 + 9009: 45.050068,-27.850641 + 9010: 63.112354,5.8133917 + 9011: 67.690475,7.1415167 + 9012: 56.617287,13.048214 + 9013: 55.134777,25.478195 + 9014: 53.134777,32.28572 + 12215: -47.6066,-12.791668 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 7552: -69.72796,71.99893 + 8978: -30.452354,29.402998 + 8982: -28.139854,29.574873 + - node: + color: '#E6D4D4FF' + id: Bot + decals: + 1362: -31,-2 + 1372: -29,-2 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 68: 3,6 + 70: 10,6 + 79: -11,10 + 181: 3,-24 + 182: 3,-27 + 183: 3,-29 + 184: 5,-28 + 185: 5,-27 + 186: 5,-26 + 187: 7,-29 + 197: 13,-21 + 198: 11,-24 + 199: 12,-24 + 210: -5,-39 + 211: -2,-38 + 212: -5,-35 + 213: -4,-35 + 214: -3,-35 + 215: -2,-36 + 248: 16,-37 + 249: 13,-37 + 278: 24,-36 + 301: 5,-46 + 302: 4,-46 + 303: 4,-47 + 304: 5,-47 + 305: 5,-48 + 306: 4,-48 + 307: 4,-49 + 308: 5,-49 + 322: 6,-45 + 323: 7,-43 + 324: 8,-43 + 325: 9,-43 + 339: 5,-54 + 340: 7,-54 + 345: 9,-53 + 346: 9,-54 + 347: 8,-54 + 392: 11,-54 + 393: 11,-52 + 415: 20,-54 + 450: 23,-49 + 478: 19,-46 + 480: 23,-45 + 481: 23,-43 + 482: 23,-41 + 483: 24,-41 + 484: 25,-41 + 485: 27,-44 + 488: 25,-45 + 570: 29,-60 + 610: -20,-40 + 693: -50,-49 + 694: -49,-49 + 695: -47,-49 + 696: -47,-50 + 697: -50,-42 + 698: -49,-42 + 699: -47,-42 + 700: -48,-42 + 701: -41,-42 + 724: -35,-37 + 756: -34,-53 + 757: -34,-52 + 758: -33,-52 + 759: -33,-53 + 760: -29,-51 + 761: -29,-50 + 762: -29,-49 + 763: -26,-52 + 764: -27,-46 + 765: -28,-46 + 766: -29,-46 + 768: -26,-46 + 775: -34,-55 + 776: -33,-55 + 777: -36,-54 + 778: -36,-52 + 779: -36,-51 + 780: -36,-50 + 781: -35,-50 + 782: -27,-40 + 783: -26,-40 + 784: -29,-38 + 785: -28,-38 + 786: -27,-38 + 787: -26,-38 + 788: -26,-36 + 1102: -48,8 + 1103: -48,6 + 1104: -43,6 + 1105: -43,7 + 1106: -46,9 + 1131: -49,-2 + 1132: -47,-2 + 1140: -46,-5 + 1141: -46,-4 + 1171: -34,-1 + 1172: -35,-1 + 1176: -35,-7 + 1177: -35,-6 + 1178: -29,-6 + 1191: -31,-5 + 1204: -40,-7 + 1205: -46,-9 + 1206: -45,-9 + 1207: -44,-10 + 1208: -43,-10 + 1209: -42,-10 + 1224: -38,-10 + 1271: -33,-14 + 1275: -33,-13 + 1313: -27,-11 + 1524: -53,0 + 1584: -29,12 + 1642: -57,-38 + 1643: -54,-40 + 1646: -57,-34 + 1647: -56,-34 + 1648: -55,-34 + 1649: -59,-34 + 1650: -60,-34 + 1669: -49,-38 + 1670: -49,-40 + 2012: -33,-46 + 2072: -34,-40 + 2073: -36,-40 + 2074: -39,-39 + 2075: -39,-40 + 2076: -37,-37 + 2206: -47,-33 + 2207: -44,-33 + 2208: -41,-33 + 2209: -38,-33 + 2210: -35,-33 + 2211: -32,-33 + 2249: -43,-38 + 2348: -47,-37 + 2370: -17,-33 + 2371: -18,-33 + 2461: -42,4 + 2462: -43,3 + 2526: -37,-3 + 2558: -44,-3 + 2559: -43,-3 + 2560: -42,-3 + 2561: -42,-5 + 2565: -36,1 + 2566: -36,-1 + 2642: -36,8 + 2694: -40,-2 + 2698: -43,2 + 2703: -38,2 + 2704: -38,1 + 2714: -37,12 + 2718: -33,9 + 2719: -34,9 + 2720: -33,6 + 2721: -34,6 + 2726: -39,-13 + 2764: -24,-54 + 2765: -25,-55 + 2766: -26,-56 + 2782: -23,-57 + 2787: -19,-46 + 2788: -19,-47 + 3077: -8,-1 + 3078: -12,-1 + 3079: -14,-1 + 3080: -14,-5 + 3081: -12,-5 + 3082: -14,-9 + 3086: -10,-9 + 3087: -10,-10 + 3088: -7,-13 + 3089: 10,-4 + 3090: 10,-5 + 3091: 10,-6 + 3092: 13,0 + 3093: 11,0 + 3094: 13,-4 + 3095: 15,-5 + 3096: 15,-4 + 3097: 16,0 + 3098: 15,0 + 3099: 19,0 + 3100: 18,0 + 3101: 21,0 + 3102: 22,-9 + 3108: 11,-10 + 3109: 11,-9 + 3110: 11,-8 + 3111: 14,-9 + 3120: -22,-11 + 3121: -22,-13 + 3395: -10,-11 + 3502: 18,-8 + 3503: 21,-12 + 3583: 20,-12 + 3584: 19,-12 + 3586: 16,-12 + 3696: 13,-17 + 3726: 17,-22 + 3732: 16,-24 + 3733: 18,-24 + 3779: 7,-20 + 3878: -8,-29 + 3879: -7,-29 + 3880: -6,-29 + 3881: -5,-29 + 3959: -19,-20 + 3960: -20,-20 + 3961: -21,-20 + 3962: -18,-24 + 4018: 7,-25 + 4019: 7,-28 + 4401: 4,-22 + 4402: 3,-22 + 4403: -4,-22 + 4404: -5,-22 + 4405: 5,-20 + 4406: -5,-19 + 4553: -20,-15 + 4631: -6,-36 + 4706: 4,-36 + 4707: 4,-38 + 4741: 21,-34 + 4743: 28,-5 + 4744: 31,-5 + 4745: 31,-4 + 4746: 33,-5 + 4747: 31,-1 + 4759: 26,-34 + 4760: 26,-35 + 4842: 28,5 + 4843: 28,8 + 4847: 33,-4 + 4967: 36,-4 + 5033: 20,6 + 5034: 21,6 + 5035: 26,9 + 5036: 26,10 + 5037: 23,11 + 5040: 20,9 + 5041: 18,6 + 5042: 18,7 + 5045: 26,6 + 5046: 46,3 + 5072: 40,8 + 5073: 41,8 + 5074: 42,8 + 5075: 43,8 + 5118: 29,15 + 5119: 31,15 + 5120: 31,14 + 5161: 36,10 + 5162: 38,8 + 5163: 36,6 + 5164: 35,6 + 5165: 33,10 + 5168: 38,5 + 5178: 14,6 + 5281: 23,7 + 5282: 23,6 + 5296: 37,-10 + 5297: 36,-10 + 5298: 34,-10 + 5299: 34,-13 + 5451: 29,-11 + 5452: 32,-13 + 5453: 32,-14 + 5528: 30,-26 + 5529: 32,-26 + 5580: 28,-18 + 5581: 29,-18 + 5582: 31,-20 + 5583: 29,-20 + 5637: 31,-24 + 5638: 28,-22 + 5648: 48,-12 + 5649: 48,-10 + 5745: 33,-24 + 5746: 39,-12 + 5747: 37,-15 + 5778: 26,-22 + 6021: -4,4 + 6022: -4,3 + 6023: 5,-1 + 6024: 4,-1 + 6025: 3,-1 + 6045: 38,-17 + 6046: 37,-17 + 6047: 36,-17 + 6048: 36,-19 + 6049: 37,-19 + 6050: 38,-19 + 6051: 38,-21 + 6052: 37,-21 + 6053: 36,-21 + 6054: 33,-20 + 6055: 33,-21 + 6056: 33,-18 + 6061: 46,-13 + 6111: 18,-43 + 6112: 17,-43 + 6124: 20,-43 + 6125: 19,-43 + 6133: 26,-47 + 6199: 17,-51 + 6200: 21,-52 + 6201: 21,-51 + 6332: 14,-59 + 6333: 12,-59 + 6334: 13,-59 + 6335: 14,-56 + 6336: 12,-58 + 6337: 12,-57 + 6338: 12,-56 + 6339: 13,-56 + 6440: 9,-48 + 6441: 9,-49 + 6783: 43,-22 + 7013: 11,-36 + 7014: 11,-37 + 7049: 15,-29 + 7050: 15,-28 + 7827: -19,-27 + 7828: -19,-26 + 8016: -27,-3 + 8017: -27,-4 + 8075: -12,6 + 8142: -21,12 + 8161: -27,10 + 8183: 27,-9 + 8301: 35,-29 + 8302: 34,-29 + 8303: 33,-38 + 8338: 22,-24 + 8340: 21,-25 + 8410: 37,-41 + 8411: 37,-40 + 8412: 39,-39 + 8541: 45,-33 + 8542: 45,-32 + 8543: 46,-31 + 8544: 47,-31 + 8545: 48,-31 + 8546: 49,-31 + 8655: 43,-32 + 8656: 43,-34 + 8657: 48,-45 + 8658: 47,-45 + 8659: 41,-43 + 8718: 42,-46 + 8719: 41,-46 + 8872: -13,-33 + 8915: -7,40 + 8916: -3,40 + 8924: -10,47 + 8925: -11,45 + 8944: 1,46 + 8945: 1,45 + 8946: 0,42 + 8947: -1,42 + 8948: 0,47 + 8960: -4,46 + 8964: -6,50 + 9020: -8,57 + 9021: -2,57 + 9155: -2,4 + 9156: -1,6 + 9157: 4,6 + 9158: 3,4 + 9160: -7,8 + 9161: -7,10 + 9197: 10,8 + 9198: 10,9 + 9264: -25,-72 + 9265: -26,-73 + 9266: -24,-73 + 9267: -24,-71 + 9292: -15,-66 + 9293: -14,-66 + 9294: -13,-66 + 9341: 7,12 + 9342: 10,12 + 9398: 14,15 + 9517: 18,24 + 9518: 18,26 + 9519: 18,28 + 9520: 19,28 + 9597: 23,18 + 9598: 25,18 + 9599: 26,18 + 9633: -28,-14 + 9859: 52,9 + 9860: 51,9 + 9895: 38,26 + 9896: 39,26 + 9922: -5,-48 + 9923: -3,-44 + 9924: 2,-46 + 9925: 4,-44 + 9985: -53,-43 + 9989: -55,-49 + 9990: -53,-42 + 10143: 42,16 + 10153: 50,5 + 10154: 54,0 + 10155: 54,-6 + 10197: 42,-8 + 10198: 36,-6 + 10199: 35,-6 + 10227: 41,-8 + 10229: 29,-9 + 10259: 32,-76 + 10365: 33,31 + 10366: 27,32 + 10367: 27,31 + 10370: 28,29 + 10371: 32,26 + 10372: 32,24 + 10373: 28,26 + 10374: 28,22 + 10375: 32,22 + 10376: 28,20 + 10377: 36,29 + 10443: 32,-60 + 10444: 32,-59 + 10445: 32,-58 + 10446: 29,-48 + 10447: 29,-47 + 10741: 2,25 + 10742: 4,25 + 10743: 5,23 + 10744: 3,22 + 10745: 3,23 + 10780: 2,17 + 10789: 0,17 + 10790: -1,17 + 10842: -16,18 + 10849: -15,20 + 10886: -21,14 + 10910: -17,22 + 10911: -18,24 + 10912: -19,24 + 10913: -20,24 + 10926: -12,13 + 10927: -12,12 + 10930: -23,21 + 10951: -35,16 + 10953: -42,16 + 11183: -55,18 + 11251: -52,14 + 11252: -48,11 + 11253: -49,11 + 11282: -54,9 + 11283: -53,11 + 11309: -54,5 + 11316: -50,5 + 11319: -58,7 + 11320: -59,7 + 11327: -70,6 + 11328: -71,6 + 11467: -63,-9 + 11468: -59,-12 + 11469: -63,-13 + 11470: -63,-14 + 11471: -60,-14 + 11472: -59,-14 + 11473: -66,-10 + 11475: -67,-14 + 11476: -65,-13 + 11477: -69,-14 + 11478: -68,-17 + 11479: -67,-17 + 11480: -57,-10 + 11481: -56,-10 + 11482: -55,-10 + 11483: -54,-9 + 11484: -58,-8 + 11515: -52,-3 + 11516: -55,-4 + 11517: -49,-9 + 11556: -52,-6 + 11588: -68,-22 + 11593: -71,-23 + 11594: -70,-23 + 11597: -73,-23 + 11627: -78,-23 + 11628: -77,-23 + 11705: -73,-32 + 11706: -73,-28 + 11731: -73,-20 + 11737: -68,-25 + 11738: -68,-26 + 11743: -62,-38 + 11744: -64,-38 + 11745: -70,-32 + 11793: -73,-16 + 11806: -52,-38 + 11807: -52,-39 + 11813: -49,-52 + 11815: -51,-52 + 11858: -10,-46 + 11859: -7,-46 + 11865: 1,-46 + 11879: 4,-42 + 11883: 22,-38 + 11884: 21,-38 + 11887: 28,-41 + 11889: 35,-47 + 11907: 35,-72 + 11908: 33,-72 + 11944: -13,-35 + 11945: -12,-40 + 11979: -14,-38 + 12150: 3,-59 + 12151: 1,-59 + 12209: -7,-18 + 12210: -7,-15 + 12212: -12,-18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 1807: -70,-34 + 1808: -69,-34 + 2382: -20,-33 + 9470: 6,19 + 9471: 15,19 + 9645: -23,-35 + 9646: -25,-29 + 9647: -28,-31 + 9648: -29,-31 + 9718: 34,16 + 9719: 37,16 + 9721: 42,28 + 9722: 43,29 + 9745: 47,16 + 9746: 46,16 + 9747: 41,10 + 9748: 40,10 + 9749: 39,11 + 9754: 51,16 + 9756: 49,14 + 10145: 43,16 + 10226: 39,-8 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Bot + decals: + 7366: -21,7 + 7367: -21,6 + 7368: -21,8 + 7369: -21,11 + 7557: -34,-22 + 7558: -30,-22 + 7559: -28,-18 + 7560: -29,-18 + 7561: -30,-18 + 7657: -45,-24 + 7658: -45,-19 + 7659: -45,-18 + 7660: -52,-20 + 7661: -52,-23 + 7748: -65,-18 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 1576: -35,14 + 1577: -35,13 + 1578: -33,14 + 1579: -32,14 + 1580: -32,13 + 1581: -33,13 + 1582: -30,13 + 1583: -30,14 + 3114: -16,-2 + 3115: -16,-3 + 3116: -16,-4 + 3117: -17,-8 + 7062: -81,49 + 7063: -81,50 + 7064: -81,51 + 7069: -79,49 + 7070: -79,50 + 7071: -79,51 + 10996: -40,27 + 10997: -38,27 + 10998: -36,25 + 10999: -36,24 + 11000: -36,21 + 11001: -42,19 + 11002: -42,26 + 11460: -77,2 + 11461: -77,1 + 11462: -75,0 + 11463: -70,1 + 11464: -70,2 + 11466: -73,0 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 3401: -16,0 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 3112: 13,-6 + 3113: 14,-7 + - node: + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 1197: -40,-9 + 1198: -40,-10 + 2640: -40,10 + 2641: -39,10 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 3129: 8,-10 + 3130: 8,-11 + - node: + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 1195: -37,-7 + 1196: -37,-8 + 2725: -38,-16 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 69: 1,7 + 78: -11,9 + 100: -9,3 + 101: 10,3 + 122: -13,-24 + 566: 18,-59 + 567: 19,-59 + 568: 25,-59 + 569: 26,-59 + 571: 15,-64 + 572: 15,-65 + 772: -32,-50 + 773: -31,-50 + 774: -31,-51 + 1384: -30,4 + 2013: -36,-48 + 2014: -37,-48 + 2407: -43,-24 + 2408: -41,-24 + 2409: -39,-24 + 2638: -41,8 + 2639: -41,6 + 2712: -36,6 + 2767: -26,-57 + 3083: -12,-9 + 3122: -20,-11 + 3393: -20,-57 + 3734: 17,-24 + 3877: -4,-29 + 4554: -20,-16 + 5475: 29,-15 + 5735: 28,-25 + 5777: 25,-26 + 6113: 21,-47 + 6114: 21,-49 + 8903: -5,42 + 8904: -9,45 + 8906: -6,46 + 8952: -1,45 + 8962: -5,56 + 8963: -4,50 + 8975: -5,53 + 9268: -26,-72 + 9269: -25,-73 + 9270: -24,-72 + 9271: -25,-71 + 9295: -13,-69 + 10294: 25,21 + 10295: 35,21 + 10296: 35,25 + 10297: 25,25 + 10298: 24,32 + 10299: 36,32 + 10368: 28,37 + 10369: 32,37 + 10441: 27,34 + 10442: 33,34 + 10448: 29,-49 + 10449: 29,-50 + 10450: 29,-51 + 10730: 1,24 + 10731: 5,21 + 10952: -35,18 + 11306: -52,7 + 11307: -53,7 + 11308: -54,7 + 11519: -52,-7 + 11520: -52,-8 + 11521: -52,-9 + 11856: -14,-47 + 11857: -13,-47 + 11895: 33,-66 + 11896: 34,-66 + 11897: 34,-67 + 11946: -14,-39 + 11947: -14,-40 + 12087: 22,9 + 12088: 24,9 + 12089: 51,-5 + 12090: 50,-5 + 12146: -4,-59 + 12147: -3,-59 + 12148: -2,-59 + 12217: 10,-56 + 12218: 10,-57 + 12219: 10,-58 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Box + decals: + 2743: -31,-54 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Box + decals: + 7357: -77,44 + 7438: -43,-18 + 7439: -41,-18 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 3119: -20,-8 + 12211: -12,-15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 7216: -59,64 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 7214: -60,64 + 7215: -61,64 + - node: + color: '#A4610696' + id: BrickTileSteelEndE + decals: + 5174: 33,1 + 5175: 33,1 + - node: + color: '#A4610696' + id: BrickTileSteelEndW + decals: + 5173: 32,1 + 5176: 32,1 + - node: + color: '#0E94FFFF' + id: BrickTileWhiteCornerNe + decals: + 4353: -2,-17 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNe + decals: + 1903: -85,-44 + 3601: 15,-1 + - node: + color: '#0E94FFFF' + id: BrickTileWhiteCornerNw + decals: + 4359: 2,-17 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerNw + decals: + 1907: -89,-44 + - node: + color: '#9FED5896' + id: BrickTileWhiteCornerSe + decals: + 3600: 15,-2 + - node: + color: '#52B4E996' + id: BrickTileWhiteEndE + decals: + 3497: 20,-2 + 3498: 20,-6 + - node: + color: '#9FED5896' + id: BrickTileWhiteEndW + decals: + 3499: 17,-2 + 3589: 17,-6 + - node: + color: '#A4610696' + id: BrickTileWhiteEndW + decals: + 6134: 27,-48 + - node: + color: '#0E94FFFF' + id: BrickTileWhiteInnerNe + decals: + 4354: -2,-18 + - node: + color: '#CBCBCBFF' + id: BrickTileWhiteInnerNe + decals: + 7242: -58,46 + - node: + color: '#0E94FFFF' + id: BrickTileWhiteInnerNw + decals: + 4355: 2,-18 + - node: + color: '#D2D2D2FF' + id: BrickTileWhiteInnerNw + decals: + 7344: -64,46 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineE + decals: + 1899: -85,-48 + 1900: -85,-47 + 1901: -85,-46 + 1902: -85,-45 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineE + decals: + 1747: -74,-41 + 1748: -74,-42 + 1749: -74,-43 + - node: + color: '#0E94FFFF' + id: BrickTileWhiteLineN + decals: + 4350: -5,-17 + 4351: -4,-17 + 4352: -3,-17 + 4356: -1,-18 + 4357: 0,-18 + 4358: 1,-18 + 4360: 3,-17 + 4361: 4,-17 + 4362: 5,-17 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 3495: 18,-2 + 3590: 18,-6 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineN + decals: + 1904: -86,-44 + 1905: -87,-44 + 1906: -88,-44 + 3501: 19,-6 + 3588: 19,-2 + - node: + color: '#D0CFD0FF' + id: BrickTileWhiteLineN + decals: + 2892: 9,-3 + 2893: 10,-3 + 2894: 11,-3 + 2895: 12,-3 + 2896: 13,-3 + 2897: 8,-3 + - node: + color: '#D2D2D2FF' + id: BrickTileWhiteLineN + decals: + 7337: -57,46 + 7338: -56,46 + 7340: -55,46 + 7341: -67,46 + 7342: -66,46 + 7343: -65,46 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 3496: 18,-2 + 3591: 18,-6 + - node: + color: '#9FED5842' + id: BrickTileWhiteLineS + decals: + 2907: 16,-11 + 2908: 21,-11 + 3579: 20,-11 + 3580: 19,-11 + 3581: 18,-11 + 3582: 17,-11 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineS + decals: + 3500: 19,-6 + 3587: 19,-2 + - node: + color: '#9FED5896' + id: BrickTileWhiteLineW + decals: + 1908: -89,-45 + 1909: -89,-46 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 1750: -74,-41 + 1751: -74,-42 + 1752: -74,-43 + - node: + color: '#FFFFFFFF' + id: BushAThree + decals: + 1026: -44,14 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 7168: -61,45 + - node: + color: '#FFFFFFFF' + id: BushDThree + decals: + 7171: -59,45 + 7172: -62.57333,44.969673 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 1315: -42,-14 + 11836: -56,-14 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 1025: -46,11 + 1931: -87,-47 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 1316: -44,-14 + - node: + color: '#FFFFFFFF' + id: Bushd1 + decals: + 7169: -60,45 + 8685: 52,-37 + - node: + color: '#FFFFFFFF' + id: Bushd3 + decals: + 8177: -26,14 + - node: + color: '#FFFFFFFF' + id: Bushd4 + decals: + 7173: -61.620205,44.89155 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 3567: -28,8 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 7170: -59,45 + 8176: -27,14 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 1934: -88,-46 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Bushf1 + decals: + 7393: -20,12 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 2383: -42,-28 + 2388: -43,-27 + 2406: -33,-27 + 2431: -53,-32 + 3557: 16,1 + 3706: 19,-16 + 4521: -5,-12 + 4526: 1,-10 + 4638: 0,-39 + 8678: 47,-38 + 9116: -4,17 + 11839: -56,-12 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 1335: -43.02854,-13.737341 + 2387: -41,-26 + 2405: -33,-28 + 2442: -61,-32 + 9114: -8,13 + - node: + color: '#FFFFFFFF' + id: Bushg3 + decals: + 2441: -60,-31 + 8677: 43,-38 + 9115: -6,16 + 9133: -3,17 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 2395: -40,-26 + 4527: 3,-10 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 1914: -86,-46 + 2384: -43,-27 + 2392: -40,-26 + 2402: -33,-27 + 2438: -60,-31 + 3513: 19,-9 + 3547: 20,1 + 3548: 18,1 + 3566: -28,8 + 4637: 0,-39 + 5121: 25,15 + 7167: -62,45 + 7175: -59.41708,45.094673 + 8174: -28,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Bushi1 + decals: + 7391: -18,10 + - node: + color: '#FFFFFFFF' + id: Bushi2 + decals: + 4519: -5,-12 + 7174: -60.38583,44.969673 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 3532: 23,-1 + 4523: 1,-10 + 7195: -20,11 + 7198: -17,9 + 7199: -16,8 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 7200: -16,9 + 7201: -16,12 + - node: + color: '#FFFFFFFF' + id: Bushj1 + decals: + 1033: -43,13 + 1322: -43,-12 + 2398: -38,-27 + 2437: -58,-31 + 3710: 15,-16 + 3906: -6,-30 + 4518: -6,-10 + 9130: -8,14 + 11834: -57,-14 + 11842: -54,-12 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 1358: -41,-15 + 1917: -87,-45 + 2391: -44,-26 + 3515: 18,-9 + 3556: 17,1 + 4522: -2,-10 + 8679: 45,-38 + 9131: -7,16 + 9134: -4,13 + - node: + color: '#FFFFFFFF' + id: Bushj3 + decals: + 1350: -42,-16 + 2401: -36,-27 + 2434: -52,-33 + 3522: 23,-9 + 4528: 4,-10 + 4531: 5,-13 + 4634: 0,-35 + 5123: 25,15 + 8175: -27,15 + - node: + color: '#FFFFFFFF' + id: Bushk2 + decals: + 3531: 23,0 + - node: + color: '#FFFFFFFF' + id: Bushk3 + decals: + 9132: -9,13 + - node: + color: '#FFFFFFFF' + id: Bushl2 + decals: + 3904: -5,-30 + 11838: -55,-14 + - node: + color: '#FFFFFFFF' + id: Bushl3 + decals: + 3905: -7,-30 + - node: + color: '#FFFFFFFF' + id: Bushl4 + decals: + 3524: 23,-8 + 3555: 19,1 + 5138: 25,13 + 7197: -19,9 + - node: + color: '#FFFFFFFF' + id: Bushm2 + decals: + 7196: -19,11 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Bushm3 + decals: + 7390: -18,9 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 6012: -9,5 + 9136: -15.996965,-29.426594 + 9137: -10.9952545,-30.431665 + - node: + color: '#169C9C93' + id: CheckerNESW + decals: + 6885: 15,-49 + 6886: 14,-49 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 1377: -29,-1 + 2463: -41,1 + 2464: -42,1 + 2465: -41,2 + 2466: -42,2 + 2467: -41,3 + 2468: -42,3 + 2708: -31,7 + 6534: -10,-54 + 6535: -10,-55 + 6536: -10,-56 + 6537: -10,-58 + 6538: -10,-59 + 6539: -10,-60 + 6620: -1,-50 + 6621: -2,-50 + - node: + color: '#D381C996' + id: CheckerNESW + decals: + 6552: -2,-61 + 6553: -1,-61 + 6554: 0,-61 + - node: + color: '#D4D4D428' + id: CheckerNESW + decals: + 5283: 28,-14 + 5284: 28,-16 + 5285: 28,-15 + - node: + color: '#D4D4D448' + id: CheckerNESW + decals: + 6546: -6,-61 + 6547: -5,-61 + 6548: -4,-61 + - node: + color: '#D9E2F193' + id: CheckerNESW + decals: + 3032: -9,-9 + 3033: -9,-8 + 3034: -10,-8 + 3035: -8,-8 + 3036: -8,-9 + 3037: -9,-10 + 3038: -9,-11 + 3039: -9,-12 + 3040: -9,-13 + 3041: -8,-13 + 3042: -10,-13 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 6525: 4,-61 + 6526: 3,-61 + 6527: 2,-61 + 6528: -10,-52 + 6529: -10,-51 + 6530: -10,-50 + 11746: -68,-31 + 11747: -67,-31 + 11748: -66,-31 + - node: + color: '#DEE7FF30' + id: CheckerNESW + decals: + 1778: -84,-35 + 1779: -84,-36 + 1780: -82,-35 + 1781: -82,-36 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 1192: -33,-6 + 1193: -33,-5 + - node: + color: '#F9801D93' + id: CheckerNESW + decals: + 6625: -4,-50 + 6626: -5,-50 + 6887: 11,-49 + 6888: 12,-49 + - node: + color: '#52B4E957' + id: CheckerNWSE + decals: + 1107: -46,7 + 1108: -45,7 + 1109: -46,6 + - node: + color: '#52B4E959' + id: CheckerNWSE + decals: + 6540: -10,-56 + 6541: -10,-55 + 6542: -10,-54 + - node: + color: '#52B4E95B' + id: CheckerNWSE + decals: + 1110: -39,7 + 1111: -38,7 + 1112: -39,3 + 1113: -39,0 + 1114: -39,1 + 1115: -39,2 + 1116: -47,1 + 1117: -47,0 + 1118: -30,0 + 1119: -30,1 + 1120: -30,2 + 1121: -31,2 + 2469: -42,1 + 2470: -41,1 + 2471: -42,2 + 2472: -41,2 + 2473: -42,3 + 2474: -41,3 + 2475: -39,-1 + 2624: -39,8 + 2625: -38,8 + 2626: -37,8 + 2627: -37,7 + 2707: -31,7 + - node: + color: '#52B4E960' + id: CheckerNWSE + decals: + 1173: -31,1 + 1174: -31,0 + 1175: -31,-1 + - node: + color: '#9AA2B793' + id: CheckerNWSE + decals: + 3043: -9,-11 + 3044: -9,-10 + - node: + color: '#9FA7D951' + id: CheckerNWSE + decals: + 1782: -84,-35 + 1783: -84,-36 + 1784: -82,-35 + 1785: -82,-36 + - node: + color: '#A4A7C193' + id: CheckerNWSE + decals: + 3023: -8,-8 + 3024: -9,-8 + 3025: -10,-8 + 3026: -8,-9 + 3027: -9,-9 + 3028: -9,-12 + 3029: -9,-13 + 3030: -8,-13 + 3031: -10,-13 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 167: 0,-28 + 168: 0,-27 + 169: 0,-26 + 170: 0,-25 + 6543: -4,-61 + 6544: -5,-61 + 6545: -6,-61 + - node: + color: '#DE3A3A56' + id: CheckerNWSE + decals: + 6531: -10,-52 + 6532: -10,-51 + 6533: -10,-50 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 1736: -78,-42 + 1737: -78,-43 + 1738: -77,-42 + 1739: -77,-43 + 1740: -77,-41 + 1741: -76,-41 + 1742: -76,-42 + 1743: -76,-43 + 1744: -75,-43 + 1745: -75,-42 + 1746: -75,-41 + 2842: -4,-5 + 2843: -4,-6 + 2844: -3,-5 + 2845: -3,-6 + 2846: -2,-5 + 2847: -2,-6 + 2848: -1,-5 + 2849: -1,-6 + 2850: -1,-4 + 2851: -1,-3 + 2852: 0,-3 + 2853: 1,-3 + 2854: 1,-4 + 2855: 0,-4 + 2856: 0,-5 + 2857: 0,-6 + 2858: 1,-6 + 2859: 1,-5 + 2860: 2,-5 + 2861: 2,-6 + 2862: 3,-5 + 2863: 3,-6 + 2864: 4,-5 + 2865: 4,-6 + 2866: 5,-3 + 2867: 5,-4 + 2868: 5,-5 + 2869: 5,-6 + 2870: 5,-7 + 2871: 5,-8 + 2872: 6,-8 + 2873: 6,-7 + 2874: 6,-6 + 2875: 6,-5 + 2876: 6,-4 + 2877: 6,-3 + - node: + color: '#EFB34160' + id: CheckerNWSE + decals: + 1485: -64,3 + 1486: -63,3 + 1488: -62,3 + 1489: -61,3 + 1490: -60,3 + 1491: -59,3 + 1493: -59,2 + 1495: -59,1 + 1497: -59,0 + 1499: -59,-1 + 1500: -59,-2 + 1501: -59,-3 + 1502: -59,-4 + 1503: -59,-5 + 1504: -60,-5 + 1505: -61,-5 + 1506: -62,-5 + 1507: -63,-5 + 1508: -64,-5 + 1509: -64,-4 + 1510: -64,-3 + 1511: -64,-2 + 1512: -64,-1 + 1513: -64,0 + 1514: -64,1 + 1515: -64,2 + - node: + color: '#EFB34196' + id: CheckerNWSE + decals: + 6549: -2,-61 + 6550: -1,-61 + 6551: 0,-61 + 6622: -2,-50 + 6623: -1,-50 + 6624: -4,-50 + 6627: -5,-50 + 6881: 11,-49 + 6882: 12,-49 + 6883: 14,-49 + 6884: 15,-49 + 11749: -68,-31 + 11750: -67,-31 + 11751: -66,-31 + - node: + color: '#E6D4D4FF' + id: Delivery + decals: + 1361: -30,-2 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 71: -11,8 + 188: 7,-27 + 216: -6,-39 + 246: 15,-37 + 247: 17,-37 + 250: 13,-35 + 251: 19,-36 + 252: 19,-34 + 309: 6,-49 + 310: 6,-48 + 311: 6,-47 + 312: 6,-46 + 341: 4,-51 + 342: 5,-51 + 343: 6,-51 + 344: 7,-51 + 348: 7,-54 + 383: -7,-49 + 384: -7,-50 + 391: 12,-54 + 410: 16,-51 + 411: 18,-51 + 412: 17,-54 + 413: 16,-54 + 414: 15,-54 + 430: 23,-52 + 431: 26,-52 + 443: 23,-47 + 444: 24,-47 + 445: 25,-47 + 446: 27,-47 + 447: 27,-49 + 448: 25,-50 + 449: 23,-50 + 462: 17,-47 + 477: 19,-45 + 486: 27,-45 + 487: 27,-43 + 578: 22,-65 + 579: 22,-66 + 769: -44,-50 + 770: -43,-50 + 771: -42,-50 + 1100: -48,7 + 1101: -48,5 + 1129: -49,0 + 1130: -49,-1 + 1133: -46,-2 + 1179: -29,-5 + 1180: -29,-4 + 1181: -30,-8 + 1182: -29,-8 + 1258: -35,-10 + 1260: -33,-9 + 1263: -32,-12 + 1266: -36,-12 + 1267: -35,-12 + 1272: -33,-14 + 1311: -27,-10 + 1312: -27,-12 + 1644: -57,-42 + 1645: -57,-41 + 2077: -39,-37 + 2200: -46,-32 + 2201: -43,-32 + 2202: -40,-32 + 2203: -37,-32 + 2204: -34,-32 + 2205: -31,-32 + 2247: -43,-39 + 2248: -43,-40 + 2533: -33,-10 + 2579: -35,1 + 2697: -41,4 + 2702: -40,4 + 2706: -41,9 + 2715: -41,14 + 2716: -35,11 + 2717: -29,8 + 3084: -14,0 + 3085: -10,-12 + 3103: 22,-8 + 3104: 22,-1 + 3105: 22,0 + 3106: 13,-10 + 3107: 12,-10 + 3123: -20,-10 + 3124: -11,-12 + 3125: 12,-11 + 3126: 18,-13 + 3504: 18,-12 + 3505: 17,-12 + 3627: 23,-11 + 3628: 23,-12 + 3630: 21,-16 + 3782: 7,-19 + 3963: -18,-20 + 4399: -3,-22 + 4400: 5,-22 + 4550: -20,-18 + 4551: -22,-16 + 4552: -22,-15 + 4593: 4,-24 + 4625: 6,-36 + 4626: 2,-36 + 4627: 2,-38 + 4628: 6,-38 + 4755: 26,-37 + 4757: 31,-37 + 4758: 26,-36 + 4761: 29,-33 + 4762: 31,-33 + 4763: 30,-33 + 4845: 31,-6 + 4848: 31,-7 + 4968: 35,-1 + 5038: 22,11 + 5039: 24,11 + 5043: 18,9 + 5044: 18,10 + 5047: 49,3 + 5048: 48,-1 + 5049: 48,0 + 5070: 44,8 + 5071: 44,9 + 5117: 28,13 + 5166: 37,10 + 5167: 35,10 + 5172: 38,9 + 5455: 29,-14 + 5456: 32,-11 + 5525: 27,-13 + 5526: 27,-12 + 5586: 31,-18 + 5646: 49,-12 + 5647: 49,-10 + 5711: 41,-16 + 5748: 23,-33 + 5749: 22,-33 + 5750: 30,-32 + 5751: 29,-32 + 5752: 28,2 + 5753: 28,3 + 5754: 17,5 + 5755: 16,5 + 5756: 15,5 + 5757: -34,4 + 5758: -34,3 + 5759: -29,-42 + 5760: -29,-44 + 5761: -23,-53 + 5762: -52,-35 + 5763: -52,-36 + 5764: -49,-35 + 5765: -49,-36 + 5766: -1,-29 + 5767: 1,-29 + 5768: 45,2 + 5769: 45,1 + 5770: 43,0 + 5771: 42,0 + 5772: 41,0 + 5773: 33,-16 + 5774: 33,-15 + 5775: 32,-23 + 5779: 26,-21 + 6010: -5,7 + 6011: -9,6 + 6016: -6,9 + 6042: 39,-21 + 6043: 39,-19 + 6044: 39,-17 + 6059: 35,-24 + 6067: 47,-11 + 6127: 16,-48 + 6128: 22,-44 + 6129: 26,-46 + 6130: 20,-50 + 6131: 19,-50 + 6132: 16,-47 + 6197: 25,-54 + 6198: 26,-54 + 6272: 13,-50 + 6273: 10,-53 + 6310: 23,-55 + 6311: 27,-55 + 6312: 19,-55 + 6313: 18,-55 + 6314: 26,-46 + 6315: 22,-44 + 6316: 24,-51 + 6317: 22,-53 + 6318: 28,-53 + 6330: 13,-57 + 6331: 13,-58 + 6439: 10,-46 + 6466: 9,-54 + 6512: 10,-62 + 6515: 5,-57 + 6516: 6,-55 + 6517: 11,-61 + 6518: -4,-53 + 6519: -5,-53 + 6520: -2,-53 + 6521: -3,-53 + 6522: 2,-59 + 6523: 2,-50 + 6524: 1,-50 + 6691: 14,-53 + 7022: 8,-34 + 7023: 9,-34 + 7024: 10,-34 + 7938: -27,-7 + 8203: 25,-29 + 8204: 25,-30 + 8205: 25,-31 + 8413: 39,-38 + 8414: 37,-42 + 8551: 50,-41 + 8552: 50,-43 + 8553: 50,-35 + 8554: 50,-33 + 8555: 48,-34 + 8650: 49,-45 + 8651: 54,-41 + 8652: 54,-43 + 8653: 54,-35 + 8654: 54,-33 + 8660: 41,-40 + 8717: 40,-46 + 8720: 39,-46 + 8721: 37,-46 + 8722: 44,-46 + 8735: 37,-48 + 8736: 44,-48 + 8741: 47,-42 + 8786: -8,-34 + 8787: -9,-34 + 8788: -10,-34 + 8873: -7,-42 + 8874: -7,-41 + 8914: -3,42 + 8926: -11,44 + 8927: -9,47 + 8928: -11,46 + 8929: -9,42 + 8943: 1,43 + 8949: -1,47 + 8971: -6,53 + 8972: -4,53 + 9159: 3,6 + 9206: -17,-74 + 9207: -17,-73 + 9208: -17,-71 + 9337: 8,12 + 9521: 19,28 + 9554: 20,23 + 9555: 20,22 + 9775: -56,-51 + 9830: -55,-51 + 9921: -4,-48 + 9988: -56,-49 + 10156: 54,-1 + 10228: 37,-8 + 10237: 31,-10 + 10260: 30,19 + 10290: 27,21 + 10291: 27,25 + 10292: 33,21 + 10293: 33,25 + 10378: 35,29 + 10379: 34,29 + 10383: 34,-70 + 10746: 5,22 + 10850: -13,20 + 10851: -13,19 + 10852: -13,18 + 10917: -21,23 + 10924: -19,21 + 11078: -38,18 + 11079: -40,18 + 11182: -54,16 + 11276: -54,11 + 11281: -54,11 + 11304: -55,5 + 11305: -56,5 + 11474: -65,-10 + 11518: -52,-4 + 11592: -65,-26 + 11595: -71,-24 + 11596: -70,-24 + 11598: -75,-23 + 11605: -61,-27 + 11791: -74,-17 + 11792: -74,-18 + 11814: -49,-50 + 12104: -34,-22 + 12149: 0,-59 + 12220: -4,-55 + 12221: -3,-55 + 12222: -2,-55 + 12331: 28,-75 + 12332: 28,-76 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 9720: 35,16 + 9723: 39,30 + 9755: 50,14 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Delivery + decals: + 7440: -37,-19 + 7441: -37,-21 + 7442: -27,-19 + 7443: -27,-21 + 7562: -35,-22 + 7563: -33,-18 + 7564: -29,-22 + - node: + color: '#3FCAFFBF' + id: DeliveryGreyscale + decals: + 3397: -13,-11 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 4542: -14,-11 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 3118: -18,-8 + 11465: -77,3 + - node: + cleanable: True + color: '#0000007F' + id: Dirt + decals: + 6226: 35,-21 + 6227: 36,-21 + - node: + cleanable: True + color: '#000000FF' + id: Dirt + decals: + 1855: -85,-38 + 1856: -85,-38 + 1857: -92,-38 + 1859: -92,-36 + 1860: -93,-27 + 1861: -80,-39 + 1866: -80,-37 + 3701: 21,-18 + - node: + color: '#E3D9D9FF' + id: Dirt + decals: + 11220: -40,25 + - node: + color: '#E6D4D4FF' + id: Dirt + decals: + 1351: -34,14 + 1352: -34,12 + 1353: -35,11 + 1355: -31,12 + 1356: -30,10 + 1357: -29,11 + - node: + cleanable: True + color: '#FFD44DFF' + id: Dirt + decals: + 11741: -62,-42 + 11742: -62,-41 + - node: + cleanable: True + color: '#FFFFFB43' + id: Dirt + decals: + 11240: -48,21 + 11241: -48,20 + 11242: -47,21 + 11243: -47,20 + 11244: -46,21 + 11245: -46,20 + 11246: -45,21 + 11247: -45,20 + 11248: -49,20 + - node: + cleanable: True + color: '#FFFFFB57' + id: Dirt + decals: + 11236: -50,20 + 11237: -51,20 + 11238: -51,19 + 11239: -50,19 + - node: + cleanable: True + color: '#FFFFFF57' + id: Dirt + decals: + 11082: -39,19 + 11083: -38,19 + 11084: -38,20 + 11085: -37,20 + 11086: -37,21 + 11087: -38,21 + 11088: -37,22 + 11089: -38,22 + 11090: -37,23 + 11091: -38,23 + 11092: -37,24 + 11093: -38,24 + 11094: -37,25 + 11095: -38,25 + 11096: -38,26 + 11097: -39,26 + 11098: -40,26 + 11099: -41,26 + - node: + cleanable: True + color: '#FFFFFF60' + id: Dirt + decals: + 9457: 11,15 + 9458: 12,15 + 9459: 12,16 + 9460: 11,16 + 9461: 11,17 + 9462: 12,17 + 9463: 13,17 + 9464: 13,18 + 9465: 12,18 + 9466: 13,19 + 9467: 12,19 + 9468: 11,19 + 9469: 11,18 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 1525: -66,-6 + 1526: -66,-5 + 1527: -66,-4 + 1528: -65,-5 + 1529: -65,-3 + 1530: -64,-3 + 1531: -66,-2 + 1532: -65,-1 + 1533: -65,0 + 1534: -64,1 + 1535: -63,0 + 1536: -63,-1 + 1537: -62,-1 + 1538: -65,2 + 1539: -64,3 + 1540: -63,2 + 1541: -62,2 + 1542: -62,1 + 1543: -62,3 + 1544: -61,4 + 1545: -60,3 + 1546: -59,2 + 1547: -58,3 + 1548: -61,-2 + 1549: -60,-2 + 1550: -60,-1 + 1551: -61,0 + 1552: -61,-4 + 1553: -59,-4 + 1554: -61,-6 + 1555: -60,-6 + 1556: -58,-6 + 1557: -57,-5 + 1558: -57,-4 + 1559: -58,-3 + 1560: -59,-3 + 1561: -59,-2 + 1562: -58,-2 + 1563: -57,0 + 1564: -57,-1 + 1565: -57,-2 + 1566: -57,-3 + 1567: -58,0 + 1568: -57,1 + 1569: -56,2 + 1570: -55,2 + 1571: -55,1 + 1572: -53,0 + 2171: -31,-28 + 2172: -32,-28 + 2173: -33,-28 + 2174: -34,-28 + 2175: -35,-28 + 2176: -36,-28 + 2177: -37,-28 + 2178: -38,-28 + 2179: -39,-28 + 2180: -40,-28 + 2181: -41,-28 + 2182: -42,-28 + 2183: -43,-28 + 2184: -44,-28 + 2185: -45,-28 + 2186: -45,-27 + 3703: 17,-16 + 3704: 16,-16 + 3705: 15,-16 + 9628: -28,-13 + 9629: -29,-14 + 9678: 38,-32 + 9679: 39,-32 + 9680: 38,-31 + 9681: 37,-32 + 9682: 39,-30 + 9683: 40,-30 + 9684: 41,-30 + 9685: 42,-30 + 9690: -2,-47 + 9691: 0,-48 + 9692: 1,-43 + 9693: -1,-43 + 9694: -1,-42 + 9695: 0,-42 + 9696: 1,-42 + 9697: 1,-41 + 9698: 0,-41 + 9699: -1,-41 + 9700: -48,-51 + 9701: -50,-53 + 9773: -55,-47 + 9774: -53,-46 + 11629: -78,-23 + 11630: -77,-23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 1674: -56,-34 + 1675: -55,-35 + 1676: -54,-35 + 1677: -55,-36 + 1678: -57,-36 + 1679: -58,-35 + 1680: -59,-35 + 1681: -60,-36 + 1682: -61,-35 + 1683: -59,-37 + 1684: -56,-38 + 1685: -55,-39 + 1686: -57,-40 + 1687: -58,-40 + 1688: -59,-39 + 1689: -60,-39 + 1690: -60,-40 + 1691: -59,-40 + 1692: -59,-41 + 1693: -60,-41 + 1694: -56,-41 + 1695: -56,-42 + 1696: -55,-41 + 1697: -55,-42 + 1698: -57,-41 + 1699: -51,-36 + 1700: -51,-35 + 1701: -50,-35 + 1702: -50,-36 + 1703: -51,-37 + 1704: -52,-41 + 1705: -49,-38 + 1706: -49,-40 + 1786: -89,-34 + 1787: -88,-34 + 1788: -87,-34 + 1789: -86,-34 + 1790: -86,-35 + 1791: -87,-35 + 1792: -88,-35 + 1793: -89,-35 + 1794: -89,-36 + 1795: -88,-36 + 1796: -87,-36 + 1797: -86,-36 + 1798: -84,-39 + 1799: -77,-39 + 1800: -75,-36 + 1801: -76,-36 + 1802: -79,-37 + 1803: -80,-38 + 1804: -82,-38 + 1805: -89,-38 + 1806: -91,-39 + 1809: -78,-43 + 1875: -90,-34 + 1876: -90,-35 + 1877: -90,-36 + 1878: -87,-37 + 1939: -46,-52 + 1940: -33,-50 + 1941: -32,-51 + 1942: -32,-50 + 1943: -34,-53 + 2051: -26,-40 + 2052: -28,-39 + 2053: -29,-40 + 2054: -28,-38 + 2315: -25,-33 + 2316: -27,-33 + 2317: -28,-33 + 2318: -27,-35 + 2319: -29,-36 + 2352: -43,-30 + 2353: -43,-31 + 2354: -44,-31 + 2355: -40,-30 + 2356: -41,-31 + 2357: -46,-30 + 2358: -47,-31 + 2359: -34,-31 + 2360: -31,-31 + 2361: -31,-30 + 2362: -32,-30 + 2363: -38,-30 + 2372: -16,-34 + 2380: -20,-33 + 2381: -21,-35 + 2415: -47,-26 + 2416: -47,-27 + 2417: -47,-28 + 2418: -48,-27 + 2739: -47,-53 + 2740: -46,-53 + 2741: -46,-54 + 2742: -47,-54 + 2791: -20,-49 + 2792: -20,-50 + 2793: -20,-51 + 2794: -21,-51 + 2795: -21,-52 + 2796: -20,-52 + 3131: 9,-10 + 3132: 9,-11 + 3133: 8,-10 + 3134: 8,-11 + 3135: 9,-12 + 3136: 8,-12 + 3137: 10,-13 + 3138: 10,-12 + 3139: 14,-13 + 3140: 13,-13 + 3141: 12,-13 + 3142: 12,-14 + 3143: 12,-8 + 3144: 11,-8 + 3145: 12,-9 + 3146: 13,-9 + 3147: 14,-9 + 3598: 19,-1 + 3599: 17,-1 + 3602: 15,-2 + 3603: 19,-2 + 3604: 20,-3 + 3605: 21,-4 + 3606: 19,-5 + 3607: 18,-6 + 3608: 17,-6 + 3609: 21,-6 + 3610: 21,-7 + 3611: 20,-8 + 3612: 21,-9 + 3613: 17,-8 + 3614: 16,-8 + 3615: 17,-7 + 3616: 20,-12 + 3617: 19,-12 + 3622: 20,-11 + 3623: 19,-11 + 3624: 18,-11 + 3625: 17,-11 + 3626: 16,-12 + 3631: 12,-12 + 3632: 11,-12 + 3633: 11,-14 + 3634: 16,-14 + 3635: 17,-14 + 3636: 18,-14 + 3637: 19,-14 + 3638: 20,-14 + 3639: 21,-15 + 3640: 21,-16 + 3693: -8,-4 + 3737: 18,-26 + 3738: 17,-26 + 3739: 16,-26 + 3740: 15,-26 + 3747: 15,-20 + 3748: 16,-20 + 3749: 17,-20 + 3750: 18,-20 + 3751: 19,-20 + 3752: 19,-21 + 3753: 18,-21 + 3754: 17,-21 + 3755: 16,-21 + 3756: 15,-21 + 3757: 15,-22 + 3758: 16,-22 + 3759: 17,-22 + 3760: 18,-22 + 3761: 19,-22 + 3762: 19,-23 + 3763: 18,-23 + 3764: 19,-24 + 3765: 18,-24 + 3766: 17,-24 + 3767: 17,-23 + 3768: 16,-23 + 3769: 16,-24 + 3770: 15,-24 + 3771: 15,-23 + 4532: -5,-11 + 4533: -4,-10 + 4534: 5,-11 + 4535: 5,-12 + 4536: -1,-10 + 4537: 0,-10 + 4538: 2,-10 + 4539: 6,-10 + 4540: 5,-11 + 4543: -14,-11 + 4555: -22,-15 + 4556: -22,-16 + 4557: -22,-18 + 4558: -20,-18 + 4559: -20,-16 + 4560: -20,-15 + 4564: -17,-14 + 4565: -17,-11 + 4578: -11,-20 + 4579: -12,-23 + 4580: -14,-24 + 4581: -14,-25 + 4582: -16,-20 + 4583: -16,-25 + 4584: -10,-24 + 4585: -11,-27 + 4586: -17,-27 + 4587: -19,-24 + 4590: 6,-25 + 4591: 4,-27 + 4592: 5,-29 + 4594: 21,-21 + 5662: 34,-23 + 5663: 35,-23 + 5664: 36,-24 + 5665: 37,-24 + 6228: 34,-20 + 6229: 34,-19 + 6230: 36,-18 + 6231: 36,-17 + 6232: 37,-18 + 6233: 40,-23 + 6234: 39,-22 + 6235: 41,-22 + 6236: 41,-21 + 6237: 42,-23 + 6238: 36,-15 + 6239: 35,-15 + 6240: 34,-15 + 6241: 39,-16 + 6242: 40,-16 + 6243: 32,-16 + 6244: 30,-14 + 6245: 43,-13 + 6246: 44,-11 + 6247: 46,-12 + 6643: 7,-57 + 6644: 7,-59 + 6645: 7,-53 + 6646: 5,-52 + 6647: 3,-58 + 6648: 1,-58 + 6649: 1,-57 + 6650: 0,-52 + 6651: -3,-57 + 6652: -2,-57 + 6653: -7,-57 + 6654: -8,-57 + 6655: -8,-53 + 6656: -7,-52 + 6657: -11,-49 + 6658: -11,-50 + 6659: -11,-53 + 6660: -11,-56 + 6661: -10,-53 + 6662: -11,-61 + 6663: -6,-62 + 6664: 0,-62 + 6665: 3,-62 + 6666: 8,-49 + 6667: 9,-47 + 6668: 7,-45 + 6669: 5,-47 + 6670: 4,-46 + 6671: 4,-49 + 6672: 6,-49 + 6692: 12,-53 + 6693: 13,-52 + 6694: 13,-51 + 6695: 20,-51 + 6696: 16,-53 + 6697: 17,-48 + 6698: 20,-46 + 6699: 24,-50 + 6700: 26,-48 + 6701: 26,-58 + 6702: 19,-59 + 6703: 17,-71 + 6704: 17,-70 + 6705: 18,-70 + 6706: 21,-71 + 6707: 19,-73 + 6708: 23,-70 + 6709: 40,-62 + 6710: 40,-63 + 6711: 38,-61 + 6712: 38,-62 + 6713: 13,-59 + 6714: 14,-58 + 6715: 14,-57 + 6716: 12,-59 + 6717: 12,-57 + 6718: 12,-56 + 6719: 13,-56 + 6720: 23,-44 + 6721: 22,-35 + 6722: 21,-34 + 6723: 24,-34 + 6724: 27,-33 + 6725: 31,-37 + 6726: 30,-34 + 6727: 29,-33 + 6728: 31,-33 + 6729: 26,-36 + 6730: 28,-36 + 6731: 26,-34 + 6732: 26,-33 + 6733: 32,-26 + 6734: 30,-26 + 6735: 28,-26 + 6736: 27,-26 + 6737: 34,-26 + 6738: 35,-26 + 6739: 35,-27 + 6740: 34,-27 + 6741: 29,-25 + 6742: 28,-24 + 6743: 27,-23 + 6744: 30,-22 + 6745: 30,-23 + 6746: 31,-24 + 6747: 31,-22 + 6748: 25,-25 + 6749: 25,-27 + 6750: 26,-20 + 6751: 23,-20 + 6752: 27,-16 + 6753: 26,-15 + 6754: 29,-13 + 6755: 31,-12 + 6756: 35,-12 + 6757: 36,-13 + 6758: 40,-13 + 6759: 39,-13 + 6760: 39,-14 + 6761: 40,-11 + 6762: 40,-10 + 6763: 46,-13 + 6764: 46,-10 + 6765: 48,-10 + 6766: 49,-10 + 6767: 48,-11 + 6768: 49,-11 + 6769: 49,-12 + 6770: 48,-12 + 6771: 37,-10 + 6772: 36,-10 + 6773: 35,-10 + 6774: 34,-10 + 6775: 34,-11 + 6776: 27,-12 + 6777: 30,-20 + 6778: 39,-18 + 6779: 40,-19 + 6785: 43,-22 + 6786: 38,-21 + 6787: 39,-21 + 6788: 37,-27 + 6789: 37,-26 + 6790: 38,-26 + 6791: 38,-27 + 6792: 40,-27 + 6793: 40,-26 + 6794: 41,-26 + 6795: 42,-26 + 6796: 43,-26 + 6797: 43,-27 + 6798: 42,-27 + 6799: 42,-28 + 6800: 43,-28 + 6801: 41,-28 + 6802: 37,-27 + 6803: 37,-26 + 6804: 41,-26 + 6805: 42,-26 + 6806: 42,-28 + 6807: 43,-28 + 6808: 41,-27 + 6809: 42,-27 + 6811: 37,-28 + 6812: 37,-28 + 6817: 48,3 + 6818: 49,3 + 6819: 29,11 + 6820: 31,13 + 6821: 34,13 + 6822: 33,12 + 6823: 30,15 + 6824: 24,7 + 6825: 17,8 + 6826: 15,7 + 6827: 16,6 + 6828: 14,6 + 6829: 14,7 + 6830: 18,7 + 6831: 18,10 + 7217: -58,63 + 7218: -59,63 + 7219: -60,64 + 7220: -61,64 + 7221: -61,63 + 7222: -60,62 + 7223: -57,64 + 7224: -56,63 + 7225: -55,63 + 8746: 39,-35 + 8747: 44,-41 + 8748: 43,-41 + 8749: 44,-42 + 8750: 44,-44 + 8751: 39,-44 + 8752: 37,-45 + 8753: 37,-44 + 8754: 47,-45 + 8755: 48,-44 + 8756: 49,-43 + 8757: 46,-40 + 8758: 49,-40 + 8759: 49,-41 + 8760: 50,-38 + 8761: 49,-37 + 8762: 49,-35 + 8763: 37,-38 + 8764: 38,-40 + 8765: 39,-38 + 8766: 39,-39 + 8767: 48,-33 + 8768: 45,-33 + 8769: 46,-31 + 8770: 51,-43 + 8771: 37,-42 + 8772: 35,-29 + 8773: 33,-37 + 8774: 33,-38 + 8775: 31,-29 + 8776: 27,-30 + 8777: 17,-29 + 8778: 19,-28 + 8779: 23,-5 + 8780: 23,-3 + 8781: 3,0 + 8782: 1,-1 + 8783: -1,-1 + 8784: -4,-1 + 9022: -4,50 + 9023: -6,46 + 9024: -9,45 + 9025: -1,45 + 9026: -5,42 + 9027: -3,42 + 9028: -4,41 + 9029: -4,41 + 9030: -5,40 + 9031: -7,43 + 9032: 0,44 + 9033: 0,46 + 9034: -5,47 + 9035: -4,46 + 9036: -7,45 + 9037: -6,45 + 9038: -10,46 + 9039: -9,47 + 9040: -11,46 + 9041: -10,44 + 9042: -11,45 + 9043: -10,42 + 9044: -9,42 + 9045: -9,40 + 9046: -10,40 + 9047: -4,38 + 9048: -5,38 + 9049: -6,38 + 9050: -6,50 + 9051: -5,49 + 9052: -4,49 + 9053: -3,56 + 9054: -2,55 + 9055: -2,53 + 9056: -2,52 + 9057: -3,53 + 9058: -5,53 + 9059: -8,56 + 9060: -6,58 + 9061: -2,57 + 9062: -8,53 + 9063: -8,52 + 9082: -5,17 + 9083: -5,16 + 9084: -5,15 + 9085: -5,14 + 9086: -5,13 + 9087: -5,12 + 9088: -5,11 + 9089: -6,12 + 9090: -6,13 + 9091: -6,14 + 9092: -6,16 + 9093: -6,17 + 9094: -6,15 + 9095: -4,17 + 9096: -4,16 + 9097: -4,15 + 9098: -4,14 + 9099: -4,13 + 9100: -4,12 + 9101: -4,11 + 9102: -7,17 + 9103: -3,17 + 9104: -3,16 + 9209: 10,6 + 9210: 10,7 + 9211: 10,8 + 9212: 10,9 + 9213: 10,10 + 9214: 9,10 + 9215: 9,9 + 9216: 9,8 + 9217: 9,7 + 9218: 9,6 + 9219: 8,6 + 9220: 8,7 + 9221: 7,7 + 9222: 7,6 + 9223: 6,6 + 9224: 7,5 + 9225: 9,5 + 9226: 6,7 + 9227: 7,8 + 9228: 6,8 + 9229: 6,9 + 9230: 7,9 + 9231: 8,10 + 9232: 6,10 + 9233: 8,9 + 9234: 7,10 + 9247: 12,6 + 9248: 12,7 + 9249: 12,11 + 9329: 12,12 + 9330: 13,12 + 9331: 11,12 + 9332: 11,14 + 9334: 9,13 + 9343: 10,12 + 9344: 8,13 + 9345: 8,12 + 9346: 7,13 + 9347: 7,12 + 9348: 6,12 + 9349: 6,13 + 9350: 6,14 + 9351: 6,15 + 9352: 6,16 + 9353: 6,17 + 9354: 6,18 + 9355: 10,15 + 9356: 9,15 + 9357: 8,15 + 9358: 8,16 + 9359: 9,16 + 9360: 10,16 + 9361: 14,17 + 9362: 10,19 + 9363: 10,18 + 9364: 10,17 + 9365: 9,17 + 9366: 9,18 + 9367: 9,19 + 9368: 8,19 + 9369: 8,18 + 9370: 8,17 + 9374: 12,10 + 9375: 12,9 + 9376: 12,8 + 9377: 14,12 + 9378: 15,12 + 9379: 16,12 + 9380: 17,12 + 9381: 18,12 + 9382: 18,13 + 9383: 17,13 + 9384: 17,14 + 9385: 19,14 + 9386: 19,13 + 9387: 20,13 + 9388: 21,13 + 9389: 21,14 + 9390: 21,15 + 9391: 20,15 + 9392: 15,15 + 9393: 14,14 + 9394: 15,14 + 9395: 15,13 + 9396: 16,14 + 9397: 16,15 + 9419: 17,15 + 9420: 18,15 + 9421: 19,15 + 9422: 14,15 + 9423: 15,16 + 9424: 15,17 + 9425: 15,18 + 9426: 12,13 + 9427: 11,13 + 9428: 10,13 + 9429: 18,16 + 9430: 18,17 + 9431: 17,17 + 9432: 17,18 + 9433: 18,18 + 9434: 19,18 + 9435: 19,17 + 9472: 6,19 + 9473: 15,19 + 9481: 20,20 + 9482: 18,20 + 9496: 20,26 + 9497: 20,25 + 9556: 18,28 + 9557: 19,28 + 9558: 18,27 + 9559: 18,27 + 9560: 19,27 + 9561: 19,26 + 9562: 18,26 + 9563: 18,25 + 9564: 19,25 + 9565: 19,24 + 9566: 18,24 + 9567: 20,25 + 9568: 20,26 + 9569: 21,26 + 9570: 21,25 + 9571: 21,24 + 9572: 21,22 + 9573: 19,23 + 9574: 20,23 + 9575: 19,22 + 9576: 18,23 + 9577: 18,22 + 9578: 20,25 + 9579: 20,26 + 9580: 22,26 + 9581: 22,25 + 9582: 22,24 + 9583: 22,23 + 9584: 22,22 + 9585: 22,21 + 9586: 22,20 + 9587: 22,19 + 9588: 22,18 + 9589: 22,17 + 9590: 21,17 + 9591: 21,16 + 9592: 21,18 + 9593: 23,17 + 9594: 24,17 + 9595: 25,17 + 9596: 26,17 + 9600: 23,18 + 9601: 25,18 + 9602: 26,18 + 9603: 22,27 + 9604: 21,27 + 9605: 21,28 + 9606: 22,28 + 9607: 21,29 + 9610: 23,29 + 9611: 23,28 + 9614: 27,17 + 9615: 27,18 + 9619: 21,32 + 9620: 20,32 + 9621: 21,30 + 9622: 21,31 + 9634: -31,-16 + 9635: -31,-15 + 9636: -30,-15 + 9637: -30,-16 + 9638: -29,-16 + 9639: -29,-15 + 9640: -28,-15 + 9641: -28,-16 + 9642: -28,-14 + 9649: -28,-31 + 9650: -29,-31 + 9651: -28,-30 + 9652: -27,-30 + 9653: -27,-28 + 9654: -27,-29 + 9655: -26,-29 + 9656: -26,-30 + 9657: -26,-31 + 9658: -25,-31 + 9659: -25,-30 + 9660: -25,-29 + 9661: -24,-30 + 9662: -24,-31 + 9663: -23,-31 + 9664: -23,-32 + 9665: -23,-35 + 9666: -22,-35 + 9667: -22,-34 + 9668: -20,-34 + 9669: -21,-34 + 9670: -22,-33 + 9671: -22,-32 + 9672: -26,-28 + 9673: -26,-27 + 9674: -27,-27 + 9677: -29,-28 + 9782: 33,17 + 9783: 33,16 + 9784: 34,16 + 9785: 34,17 + 9786: 33,18 + 9787: 34,18 + 9788: 35,18 + 9789: 35,17 + 9790: 35,16 + 9791: 36,16 + 9792: 37,16 + 9793: 38,16 + 9794: 37,17 + 9795: 36,18 + 9796: 37,18 + 9797: 38,18 + 9798: 39,18 + 9799: 38,19 + 9801: 40,18 + 9802: 40,17 + 9803: 39,17 + 9804: 39,16 + 9805: 40,16 + 9806: 40,15 + 9807: 39,15 + 9809: 41,15 + 9810: 43,15 + 9811: 43,14 + 9812: 42,14 + 9813: 42,15 + 9815: 43,12 + 9817: 42,12 + 9818: 42,11 + 9819: 41,11 + 9820: 40,11 + 9821: 40,12 + 9822: 40,13 + 9823: 39,13 + 9824: 39,14 + 9825: 39,11 + 9826: 40,10 + 9827: 41,10 + 9828: 43,10 + 9829: 44,10 + 9831: 44,11 + 9832: 43,11 + 9833: 45,12 + 9834: 44,12 + 9835: 46,12 + 9836: 47,12 + 9837: 47,13 + 9838: 47,14 + 9839: 46,14 + 9840: 45,14 + 9841: 45,13 + 9842: 46,15 + 9843: 47,15 + 9844: 47,16 + 9845: 46,16 + 9846: 49,15 + 9847: 49,16 + 9848: 50,15 + 9849: 51,15 + 9850: 51,14 + 9851: 50,14 + 9852: 53,15 + 9853: 51,16 + 9854: 49,14 + 9855: 50,16 + 9856: 48,12 + 9857: 49,12 + 9858: 50,12 + 9864: 50,11 + 9865: 50,10 + 9866: 50,9 + 9867: 50,8 + 9868: 50,7 + 9869: 51,7 + 9870: 52,7 + 9871: 52,8 + 9872: 51,8 + 9873: 52,9 + 9874: 51,9 + 9875: 54,9 + 9876: 54,8 + 9877: 55,8 + 9878: 55,7 + 9879: 54,7 + 9880: 53,8 + 9881: 51,6 + 9882: 38,21 + 9883: 38,22 + 9884: 38,23 + 9885: 39,23 + 9886: 40,23 + 9887: 39,24 + 9888: 38,24 + 9889: 38,25 + 9890: 39,25 + 9891: 40,26 + 9892: 40,25 + 9897: 39,26 + 9898: 38,26 + 9899: 40,27 + 9900: 40,28 + 9901: 40,29 + 9902: 39,29 + 9903: 39,28 + 9904: 39,30 + 9905: 38,29 + 9906: 38,28 + 9908: 41,29 + 9909: 41,28 + 9910: 42,28 + 9911: 42,29 + 9912: 43,29 + 9913: 42,30 + 9915: 43,31 + 9916: 42,31 + 9917: 41,31 + 9919: 40,21 + 9920: 40,20 + 9926: 46,19 + 9927: -17,-47 + 9928: -17,-46 + 9929: -16,-47 + 9930: -15,-47 + 9931: -15,-48 + 9932: -13,-48 + 9933: -14,-48 + 9934: -14,-46 + 9935: -15,-46 + 9936: -13,-46 + 9937: -12,-46 + 9938: -11,-46 + 9939: -11,-47 + 9940: -10,-47 + 9941: -9,-47 + 9942: -8,-47 + 9943: -7,-47 + 9944: -6,-46 + 9945: -6,-47 + 9946: -4,-48 + 9947: -5,-47 + 9948: -5,-48 + 9949: -4,-47 + 9950: -3,-47 + 9951: -2,-47 + 9952: -2,-48 + 9953: 1,-48 + 9954: 0,-48 + 9955: 2,-48 + 9956: 2,-47 + 9957: 2,-46 + 9958: -1,-46 + 9959: 0,-46 + 9960: 2,-45 + 9961: 2,-44 + 9962: 3,-44 + 9963: 4,-44 + 9964: -2,-45 + 9965: -3,-45 + 9966: -4,-45 + 9967: -5,-45 + 9968: -5,-46 + 9969: -5,-44 + 9970: -3,-46 + 9971: -6,-44 + 9972: -4,-44 + 9973: -3,-44 + 9974: 2,-45 + 9975: 2,-44 + 9976: 3,-44 + 9977: 4,-44 + 9978: 3,-42 + 9979: 3,-43 + 9980: 3,-41 + 9981: 4,-41 + 9982: 5,-41 + 9983: 6,-41 + 9984: 7,-41 + 9991: -53,-52 + 9992: -54,-52 + 9993: -55,-52 + 9994: -55,-51 + 9995: -56,-51 + 9996: -56,-52 + 9997: -57,-52 + 9998: -57,-51 + 9999: -57,-53 + 10000: -56,-53 + 10001: -55,-53 + 10002: -53,-51 + 10003: -53,-50 + 10004: -52,-50 + 10005: -52,-51 + 10006: -52,-52 + 10007: -51,-51 + 10008: -50,-51 + 10009: -49,-51 + 10010: -50,-53 + 10014: -51,-54 + 10015: -50,-54 + 10016: -49,-54 + 10017: -50,-53 + 10018: -53,-49 + 10019: -53,-47 + 10020: -52,-48 + 10021: -53,-48 + 10022: -52,-47 + 10023: -52,-46 + 10024: -53,-46 + 10025: -53,-45 + 10026: -52,-45 + 10027: -52,-44 + 10028: -53,-44 + 10029: -54,-44 + 10030: -54,-45 + 10031: -55,-44 + 10032: -56,-44 + 10033: -52,-44 + 10034: -52,-43 + 10035: -53,-43 + 10036: -53,-42 + 10037: -52,-42 + 10038: -52,-41 + 10039: -51,-40 + 10040: -52,-40 + 10041: -51,-39 + 10042: -51,-38 + 10043: -55,-49 + 10044: -56,-49 + 10045: -56,-48 + 10046: -55,-48 + 10047: -55,-47 + 10048: -56,-47 + 10049: -56,-46 + 10053: -57,-48 + 10054: -57,-47 + 10055: -57,-46 + 10116: 39,19 + 10117: 39,20 + 10118: 39,21 + 10119: 39,22 + 10120: 42,19 + 10121: 43,18 + 10122: 45,19 + 10123: 44,20 + 10124: 44,21 + 10125: 42,21 + 10126: 42,23 + 10127: 45,23 + 10128: 44,23 + 10129: 45,22 + 10130: 49,22 + 10131: 48,23 + 10132: 47,23 + 10133: 48,24 + 10134: 50,19 + 10135: 50,18 + 10136: 49,18 + 10137: 47,18 + 10138: 44,18 + 10139: 45,18 + 10140: 47,21 + 10141: 48,20 + 10142: 48,21 + 10144: 42,16 + 10146: 43,16 + 10163: 54,5 + 10164: 54,4 + 10165: 54,3 + 10166: 53,4 + 10167: 52,4 + 10168: 52,5 + 10169: 51,5 + 10170: 50,5 + 10171: 51,4 + 10172: 51,3 + 10173: 52,3 + 10174: 51,2 + 10175: 51,1 + 10176: 52,1 + 10177: 53,1 + 10178: 54,1 + 10179: 55,1 + 10180: 55,0 + 10181: 55,-1 + 10182: 55,-3 + 10183: 55,-2 + 10184: 55,-4 + 10185: 55,-5 + 10186: 55,-6 + 10187: 55,-7 + 10188: 54,-6 + 10189: 54,-7 + 10190: 56,-7 + 10191: 57,-7 + 10192: 58,-7 + 10193: 53,-7 + 10194: 52,-7 + 10195: 51,-7 + 10196: 50,-7 + 10200: 51,-7 + 10201: 50,-7 + 10202: 50,-8 + 10203: 49,-8 + 10204: 48,-8 + 10205: 47,-8 + 10206: 46,-8 + 10207: 45,-8 + 10208: 45,-9 + 10209: 44,-8 + 10210: 44,-7 + 10211: 43,-7 + 10212: 42,-7 + 10213: 42,-8 + 10214: 41,-7 + 10215: 40,-7 + 10216: 39,-7 + 10217: 38,-7 + 10218: 37,-7 + 10219: 36,-6 + 10220: 36,-6 + 10221: 36,-7 + 10222: 37,-6 + 10223: 35,-6 + 10224: 35,-7 + 10225: 35,-8 + 10230: 29,-8 + 10231: 28,-8 + 10232: 30,-9 + 10233: 31,-9 + 10234: 31,-8 + 10235: 30,-8 + 10236: 29,-9 + 10241: 34,-8 + 10242: 32,-8 + 10243: 32,-9 + 10244: 33,-8 + 10455: 21,-41 + 10456: 21,-40 + 10457: 21,-39 + 10458: 22,-39 + 10459: 23,-38 + 10460: 23,-39 + 10461: 24,-39 + 10462: 24,-38 + 10463: 25,-39 + 10464: 26,-39 + 10465: 27,-39 + 10466: 28,-39 + 10467: 29,-39 + 10468: 30,-39 + 10469: 31,-39 + 10470: 30,-40 + 10471: 30,-41 + 10472: 29,-41 + 10473: 28,-40 + 10474: 29,-42 + 10475: 30,-42 + 10476: 31,-42 + 10477: 32,-42 + 10478: 32,-41 + 10479: 31,-41 + 10480: 33,-41 + 10481: 34,-41 + 10482: 35,-41 + 10483: 35,-40 + 10484: 34,-40 + 10485: 34,-39 + 10486: 35,-43 + 10487: 34,-43 + 10488: 33,-43 + 10489: 32,-43 + 10490: 31,-43 + 10491: 30,-44 + 10492: 30,-45 + 10493: 30,-46 + 10494: 30,-47 + 10495: 30,-47 + 10496: 30,-48 + 10497: 30,-49 + 10498: 30,-49 + 10499: 32,-49 + 10500: 31,-49 + 10501: 31,-50 + 10502: 30,-50 + 10503: 31,-51 + 10504: 30,-51 + 10505: 29,-51 + 10506: 29,-50 + 10507: 29,-49 + 10508: 29,-49 + 10509: 29,-48 + 10510: 29,-46 + 10511: 29,-45 + 10512: 31,-52 + 10513: 31,-53 + 10514: 31,-54 + 10515: 31,-55 + 10516: 31,-56 + 10517: 31,-57 + 10518: 31,-59 + 10519: 31,-61 + 10520: 31,-58 + 10521: 31,-62 + 10522: 31,-65 + 10523: 31,-67 + 10524: 31,-68 + 10525: 32,-67 + 10526: 33,-68 + 10527: 33,-69 + 10528: 31,-69 + 10529: 33,-67 + 10530: 35,-66 + 10531: 30,-66 + 10532: 31,-66 + 10533: 31,-71 + 10534: 32,-70 + 10535: 31,-70 + 10536: 33,-70 + 10537: 34,-70 + 10538: 31,-72 + 10539: 32,-73 + 10540: 33,-73 + 10541: 32,-72 + 10542: 32,-74 + 10543: 31,-73 + 10544: 32,-74 + 10545: 32,-75 + 10546: 33,-74 + 10547: 34,-73 + 10548: 37,-70 + 10549: 36,-70 + 10550: 36,-69 + 10551: 37,-68 + 10552: 38,-68 + 10553: 38,-70 + 10554: 37,-69 + 10555: 38,-69 + 10556: 39,-69 + 10557: 41,-69 + 10565: 30,34 + 10566: 30,33 + 10567: 30,35 + 10568: 29,35 + 10569: 31,35 + 10570: 30,36 + 10571: 29,37 + 10572: 27,38 + 10573: 28,37 + 10574: 28,36 + 10575: 27,36 + 10576: 31,38 + 10577: 32,38 + 10578: 32,37 + 10579: 33,37 + 10580: 33,36 + 10581: 32,36 + 10582: 35,33 + 10583: 36,33 + 10584: 37,33 + 10585: 37,32 + 10586: 36,32 + 10587: 35,32 + 10588: 35,31 + 10589: 36,31 + 10590: 37,31 + 10591: 35,30 + 10592: 35,29 + 10593: 34,29 + 10594: 34,28 + 10595: 35,28 + 10596: 36,28 + 10597: 36,29 + 10598: 37,28 + 10599: 33,28 + 10600: 32,28 + 10601: 32,29 + 10602: 31,29 + 10603: 31,28 + 10604: 30,28 + 10605: 30,29 + 10606: 29,29 + 10607: 29,28 + 10608: 28,28 + 10609: 28,29 + 10610: 28,30 + 10611: 29,30 + 10612: 29,31 + 10613: 28,32 + 10614: 28,31 + 10615: 29,32 + 10616: 27,33 + 10617: 27,34 + 10618: 28,33 + 10619: 29,33 + 10620: 33,33 + 10621: 33,33 + 10622: 33,33 + 10623: 33,32 + 10624: 32,32 + 10625: 31,32 + 10626: 32,33 + 10627: 33,31 + 10628: 31,31 + 10629: 30,31 + 10630: 26,29 + 10631: 27,28 + 10632: 24,29 + 10633: 27,25 + 10634: 28,25 + 10635: 29,25 + 10636: 29,26 + 10637: 30,26 + 10638: 30,27 + 10639: 29,27 + 10640: 31,27 + 10641: 31,26 + 10642: 31,24 + 10643: 30,24 + 10644: 30,23 + 10645: 31,22 + 10646: 31,22 + 10647: 29,21 + 10648: 30,22 + 10649: 29,22 + 10650: 29,24 + 10651: 28,24 + 10652: 31,25 + 10653: 32,22 + 10654: 32,21 + 10655: 31,21 + 10656: 31,20 + 10657: 32,20 + 10658: 30,20 + 10659: 29,20 + 10660: 28,20 + 10661: 29,23 + 10662: 30,25 + 10663: 31,23 + 10664: 30,21 + 10665: 29,20 + 10666: 28,20 + 10667: 28,21 + 10668: 27,21 + 10669: 26,21 + 10670: 26,22 + 10671: 25,22 + 10672: 25,21 + 10673: 24,22 + 10674: 24,21 + 10675: 24,20 + 10676: 25,20 + 10677: 26,20 + 10678: 25,23 + 10679: 24,23 + 10680: 24,24 + 10681: 25,24 + 10682: 26,25 + 10683: 26,24 + 10684: 26,26 + 10685: 25,26 + 10686: 25,25 + 10687: 24,26 + 10688: 24,25 + 10689: 34,25 + 10690: 33,25 + 10691: 32,25 + 10692: 32,26 + 10693: 34,26 + 10694: 35,26 + 10695: 35,24 + 10696: 34,24 + 10697: 36,24 + 10698: 35,25 + 10699: 36,25 + 10700: 36,26 + 10701: 34,22 + 10702: 34,21 + 10703: 34,20 + 10704: 35,20 + 10705: 35,22 + 10706: 36,22 + 10707: 36,21 + 10708: 35,21 + 10709: 36,20 + 10710: 25,33 + 10711: 24,33 + 10712: 23,33 + 10713: 24,32 + 10714: 24,32 + 10715: 25,32 + 10716: 25,31 + 10717: 24,31 + 10718: 23,31 + 10719: 30,32 + 10720: 30,30 + 10721: 31,30 + 10722: 32,30 + 10723: 32,31 + 10724: 33,34 + 10725: 29,18 + 10726: 29,17 + 10727: 30,18 + 10728: 30,17 + 10729: 31,18 + 10747: 5,21 + 10748: 4,21 + 10749: 4,20 + 10750: 2,20 + 10751: 2,21 + 10752: 3,21 + 10753: 1,21 + 10754: 1,22 + 10755: 2,22 + 10756: 3,22 + 10757: 3,23 + 10758: 2,23 + 10759: 1,23 + 10760: 1,24 + 10761: 2,24 + 10762: 2,25 + 10763: 3,25 + 10764: 3,24 + 10765: 4,25 + 10766: 4,24 + 10767: 5,24 + 10768: 4,23 + 10769: 5,23 + 10770: 5,22 + 10771: 4,22 + 10781: 5,18 + 10782: 2,17 + 10791: 0,17 + 10792: -1,17 + 10807: -10,21 + 10808: -11,21 + 10809: -10,20 + 10810: -9,19 + 10811: -10,19 + 10812: -11,19 + 10813: -11,18 + 10814: -10,18 + 10815: -9,18 + 10816: -11,17 + 10817: -11,15 + 10818: -11,16 + 10819: -11,14 + 10820: -12,14 + 10821: -13,14 + 10822: -13,13 + 10823: -14,13 + 10824: -14,14 + 10825: -15,14 + 10826: -15,15 + 10827: -12,16 + 10828: -13,12 + 10829: -13,11 + 10830: -13,10 + 10831: -13,9 + 10832: -13,8 + 10833: -13,7 + 10834: -13,6 + 10835: -12,6 + 10836: -14,11 + 10837: -15,11 + 10855: -13,16 + 10856: -16,16 + 10859: -14,16 + 10860: -15,16 + 10861: -14,17 + 10862: -15,17 + 10863: -17,19 + 10864: -16,19 + 10865: -16,18 + 10866: -15,18 + 10867: -14,18 + 10868: -13,18 + 10869: -13,19 + 10870: -14,19 + 10871: -15,19 + 10872: -15,20 + 10873: -16,20 + 10874: -14,20 + 10875: -13,20 + 10876: -17,16 + 10877: -18,16 + 10878: -19,16 + 10879: -19,17 + 10880: -19,18 + 10881: -19,19 + 10882: -20,17 + 10883: -21,17 + 10884: -21,16 + 10885: -21,15 + 10887: -21,20 + 10888: -22,20 + 10889: -22,21 + 10890: -23,20 + 10891: -24,20 + 10892: -25,20 + 10893: -26,20 + 10894: -18,22 + 10895: -18,23 + 10896: -17,23 + 10897: -17,24 + 10898: -19,23 + 10899: -19,22 + 10900: -22,24 + 10901: -23,24 + 10902: -23,23 + 10903: -22,23 + 10919: -18,18 + 10920: -18,19 + 10921: -18,20 + 10922: -19,20 + 10923: -19,20 + 10925: -19,21 + 10928: -12,13 + 10929: -12,12 + 10931: -23,21 + 10932: -20,22 + 10933: -20,23 + 10934: -20,24 + 10935: -19,24 + 10936: -18,24 + 10937: -17,22 + 10947: -20,20 + 11028: -41,19 + 11029: -42,19 + 11035: -40,19 + 11036: -41,20 + 11037: -41,21 + 11038: -40,21 + 11039: -40,22 + 11040: -41,22 + 11041: -40,23 + 11042: -41,23 + 11043: -40,24 + 11044: -41,24 + 11045: -41,25 + 11046: -42,24 + 11047: -43,24 + 11048: -43,23 + 11049: -42,23 + 11050: -43,23 + 11051: -42,22 + 11052: -43,22 + 11053: -43,21 + 11054: -42,21 + 11055: -35,16 + 11056: -34,16 + 11057: -34,17 + 11058: -33,17 + 11059: -33,18 + 11060: -34,18 + 11061: -34,20 + 11062: -34,21 + 11063: -32,20 + 11064: -30,20 + 11065: -36,17 + 11066: -35,17 + 11067: -35,18 + 11068: -37,17 + 11069: -38,17 + 11070: -39,17 + 11071: -40,17 + 11072: -41,17 + 11073: -42,17 + 11074: -43,17 + 11075: -43,16 + 11076: -42,16 + 11077: -44,16 + 11080: -40,18 + 11081: -38,18 + 11100: -42,26 + 11101: -40,27 + 11102: -39,27 + 11103: -38,27 + 11104: -37,26 + 11105: -36,25 + 11106: -36,24 + 11107: -36,23 + 11108: -36,22 + 11109: -36,21 + 11110: -36,20 + 11111: -37,19 + 11135: -45,16 + 11136: -45,17 + 11137: -46,17 + 11138: -47,17 + 11139: -49,16 + 11140: -48,16 + 11141: -47,16 + 11142: -46,16 + 11143: -50,16 + 11144: -51,15 + 11145: -48,15 + 11146: -49,12 + 11147: -49,13 + 11148: -50,12 + 11149: -51,13 + 11150: -50,13 + 11151: -51,12 + 11152: -52,13 + 11153: -51,14 + 11154: -50,14 + 11162: -48,18 + 11163: -47,18 + 11164: -46,18 + 11165: -45,18 + 11166: -48,17 + 11194: -51,17 + 11195: -51,16 + 11196: -50,17 + 11197: -49,17 + 11198: -52,17 + 11199: -53,17 + 11200: -53,18 + 11201: -54,18 + 11202: -55,18 + 11203: -55,17 + 11204: -54,17 + 11205: -54,16 + 11206: -55,16 + 11207: -53,16 + 11208: -56,17 + 11209: -57,17 + 11210: -50,18 + 11211: -52,20 + 11212: -52,21 + 11213: -51,21 + 11214: -50,21 + 11215: -49,20 + 11216: -48,22 + 11217: -47,22 + 11218: -46,22 + 11219: -45,22 + 11257: -48,14 + 11258: -48,13 + 11259: -48,12 + 11260: -48,11 + 11261: -49,11 + 11262: -50,11 + 11263: -49,10 + 11264: -50,7 + 11265: -51,7 + 11266: -50,6 + 11267: -51,6 + 11268: -52,6 + 11269: -52,5 + 11270: -51,5 + 11271: -53,6 + 11272: -54,6 + 11273: -55,6 + 11274: -56,6 + 11275: -52,14 + 11289: -54,11 + 11290: -53,11 + 11291: -54,10 + 11292: -53,10 + 11293: -52,10 + 11294: -52,9 + 11295: -53,9 + 11296: -54,9 + 11297: -51,9 + 11301: -50,10 + 11302: -50,9 + 11303: -50,8 + 11310: -52,7 + 11311: -53,7 + 11312: -54,7 + 11313: -55,5 + 11314: -56,5 + 11315: -54,5 + 11318: -50,5 + 11329: -72,6 + 11330: -72,5 + 11331: -71,5 + 11332: -71,4 + 11333: -70,5 + 11334: -71,6 + 11335: -70,6 + 11336: -68,5 + 11337: -69,5 + 11338: -67,5 + 11339: -67,6 + 11340: -68,6 + 11341: -68,4 + 11342: -66,6 + 11343: -65,6 + 11344: -64,6 + 11345: -63,6 + 11346: -63,5 + 11347: -62,6 + 11348: -61,6 + 11349: -62,7 + 11350: -62,8 + 11351: -63,8 + 11352: -61,8 + 11353: -60,6 + 11354: -59,6 + 11355: -58,6 + 11356: -58,7 + 11357: -59,7 + 11358: -57,6 + 11364: -68,3 + 11365: -67,3 + 11366: -67,2 + 11367: -68,2 + 11368: -68,1 + 11369: -67,1 + 11370: -68,0 + 11371: -68,-1 + 11372: -68,-2 + 11373: -69,-2 + 11374: -70,-2 + 11375: -69,-3 + 11404: -71,-2 + 11405: -72,-2 + 11406: -72,-1 + 11407: -72,-3 + 11408: -72,-5 + 11409: -71,-5 + 11410: -71,-4 + 11411: -72,-4 + 11412: -72,-6 + 11413: -71,-6 + 11414: -70,-5 + 11415: -69,-6 + 11416: -69,-5 + 11417: -69,-4 + 11418: -69,-7 + 11419: -69,-8 + 11420: -68,-8 + 11421: -67,-8 + 11422: -66,-8 + 11423: -65,-8 + 11424: -64,-8 + 11425: -62,-9 + 11426: -61,-9 + 11427: -60,-9 + 11428: -60,-8 + 11429: -60,-10 + 11430: -61,-10 + 11431: -62,-10 + 11432: -62,-11 + 11433: -63,-11 + 11434: -63,-12 + 11435: -62,-12 + 11436: -61,-12 + 11437: -60,-12 + 11438: -60,-11 + 11439: -59,-13 + 11440: -60,-13 + 11441: -61,-14 + 11442: -62,-14 + 11443: -62,-13 + 11487: -59,-12 + 11488: -59,-14 + 11489: -60,-14 + 11490: -64,-12 + 11491: -65,-12 + 11492: -65,-11 + 11493: -67,-11 + 11494: -66,-13 + 11495: -65,-13 + 11496: -66,-14 + 11497: -65,-14 + 11498: -66,-15 + 11499: -67,-15 + 11500: -65,-15 + 11501: -65,-16 + 11502: -64,-16 + 11503: -59,-9 + 11504: -58,-9 + 11505: -57,-8 + 11506: -57,-9 + 11507: -56,-8 + 11508: -56,-9 + 11509: -55,-8 + 11510: -55,-9 + 11522: -63,-8 + 11523: -62,-8 + 11524: -55,-6 + 11525: -55,-5 + 11526: -54,-5 + 11527: -54,-6 + 11528: -53,-5 + 11529: -54,-4 + 11530: -54,-3 + 11531: -54,-2 + 11532: -55,-2 + 11533: -53,-2 + 11534: -52,-2 + 11535: -52,-3 + 11536: -53,-3 + 11537: -51,-2 + 11538: -51,-3 + 11539: -51,-4 + 11540: -52,-5 + 11541: -51,-5 + 11542: -51,-6 + 11543: -51,-7 + 11544: -51,-8 + 11545: -52,-8 + 11546: -52,-9 + 11547: -51,-9 + 11548: -52,-7 + 11549: -50,-9 + 11550: -50,-8 + 11551: -49,-8 + 11552: -48,-8 + 11553: -48,-9 + 11554: -49,-9 + 11555: -50,-5 + 11557: -52,-6 + 11564: -68,-10 + 11565: -68,-11 + 11566: -68,-12 + 11567: -66,-11 + 11568: -66,-12 + 11569: -67,-11 + 11570: -69,-15 + 11571: -69,-14 + 11572: -69,-16 + 11573: -68,-15 + 11580: -70,-16 + 11581: -70,-17 + 11582: -70,-18 + 11583: -70,-19 + 11584: -69,-18 + 11585: -68,-18 + 11586: -67,-18 + 11587: -67,-19 + 11606: -74,-23 + 11607: -74,-22 + 11608: -74,-21 + 11609: -73,-21 + 11610: -72,-20 + 11611: -72,-21 + 11612: -71,-21 + 11613: -71,-20 + 11614: -70,-21 + 11615: -69,-21 + 11616: -67,-21 + 11617: -67,-23 + 11618: -68,-23 + 11619: -68,-22 + 11620: -67,-22 + 11621: -68,-21 + 11622: -70,-20 + 11623: -77,-25 + 11624: -78,-25 + 11625: -78,-24 + 11626: -77,-24 + 11633: -76,-25 + 11634: -75,-25 + 11635: -74,-25 + 11636: -74,-24 + 11637: -73,-24 + 11638: -73,-25 + 11639: -73,-26 + 11640: -71,-26 + 11641: -71,-25 + 11642: -71,-24 + 11643: -71,-23 + 11644: -70,-23 + 11645: -70,-25 + 11646: -70,-24 + 11647: -71,-23 + 11648: -70,-26 + 11649: -72,-26 + 11650: -68,-27 + 11651: -69,-27 + 11652: -66,-27 + 11653: -67,-27 + 11655: -67,-25 + 11656: -66,-25 + 11657: -66,-25 + 11658: -65,-26 + 11659: -64,-26 + 11660: -64,-25 + 11661: -65,-25 + 11662: -64,-27 + 11663: -63,-27 + 11664: -61,-27 + 11665: -62,-27 + 11666: -60,-27 + 11667: -60,-28 + 11668: -61,-28 + 11669: -62,-28 + 11670: -63,-28 + 11671: -59,-27 + 11672: -58,-27 + 11673: -57,-27 + 11674: -58,-28 + 11675: -58,-28 + 11676: -57,-28 + 11677: -56,-28 + 11678: -56,-27 + 11679: -55,-27 + 11680: -54,-28 + 11681: -55,-28 + 11682: -54,-27 + 11683: -53,-27 + 11684: -52,-27 + 11685: -52,-28 + 11686: -52,-26 + 11687: -51,-27 + 11688: -51,-28 + 11689: -50,-28 + 11690: -50,-27 + 11691: -49,-26 + 11692: -50,-26 + 11693: -49,-27 + 11694: -49,-28 + 11695: -50,-29 + 11696: -50,-30 + 11697: -49,-30 + 11698: -49,-31 + 11699: -50,-31 + 11700: -50,-32 + 11701: -49,-32 + 11702: -50,-33 + 11703: -49,-33 + 11704: -50,-34 + 11707: -73,-32 + 11708: -72,-32 + 11709: -72,-31 + 11710: -71,-30 + 11711: -71,-29 + 11712: -72,-29 + 11713: -72,-28 + 11714: -73,-28 + 11715: -66,-30 + 11716: -67,-29 + 11717: -69,-30 + 11718: -67,-24 + 11719: -65,-27 + 11720: -71,-27 + 11721: -71,-28 + 11727: -72,-30 + 11728: -71,-32 + 11729: -68,-30 + 11730: -67,-30 + 11732: -73,-20 + 11740: -69,-26 + 11762: -71,-31 + 11763: -70,-30 + 11764: -70,-29 + 11769: -74,-30 + 11770: -73,-30 + 11771: -68,-31 + 11772: -67,-31 + 11773: -66,-31 + 11774: -67,-28 + 11775: -67,-28 + 11776: -68,-28 + 11777: -66,-28 + 11808: -52,-38 + 11809: -52,-39 + 11812: -59,-52 + 11819: -50,-52 + 11820: -51,-52 + 11821: -49,-52 + 11850: -29,-30 + 11853: -29,-27 + 11860: -14,-47 + 11861: -13,-47 + 11862: -10,-46 + 11863: -7,-46 + 11864: -8,-46 + 11866: 1,-46 + 11871: 0,-43 + 11874: -1,-47 + 11875: -1,-48 + 11876: 1,-45 + 11877: 0,-45 + 11878: -1,-45 + 11880: 4,-42 + 11885: 22,-38 + 11886: 21,-38 + 11888: 28,-41 + 11890: 35,-47 + 11891: 35,-46 + 11892: 35,-45 + 11893: 35,-44 + 11894: 35,-43 + 11898: 33,-66 + 11899: 34,-66 + 11900: 34,-67 + 11903: 40,-69 + 11904: 39,-69 + 11905: 35,-73 + 11909: 33,-72 + 11910: 33,-72 + 11911: 35,-72 + 11912: 34,-72 + 11917: 35,-76 + 11918: 35,-74 + 11919: 34,-74 + - node: + cleanable: True + zIndex: 9 + color: '#FFFFFFFF' + id: Dirt + decals: + 7370: -70,62 + 7371: -69,62 + 7372: -70,63 + 7373: -72,63 + 7374: -71,63 + 7375: -71,64 + 7376: -72,64 + 7377: -68,63 + 7378: -67,63 + 7379: -68,64 + 7434: -39,-18 + 7435: -40,-20 + 7436: -42,-22 + 7437: -43,-24 + 7712: -46,-18 + 7713: -49,-17 + 7714: -51,-21 + 7715: -50,-23 + 7716: -46,-24 + 7717: -51,-24 + 7718: -52,-21 + 7719: -45,-19 + 7720: -45,-18 + 7721: -47,-19 + 7722: -49,-22 + 7723: -50,-22 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 3402: -18,-14 + 3403: -18,-13 + 3404: -17,-13 + 3405: -17,-10 + 3406: -18,-11 + 3407: -17,-6 + 3408: -17,-7 + 3409: -18,-7 + 3410: -17,-8 + 3411: -18,-8 + 3412: -18,-6 + 3413: -21,-7 + 3414: -20,-6 + 3415: -17,-3 + 3416: -16,0 + 3417: -12,-6 + 3418: -13,-7 + 3419: -14,-8 + 3420: -14,-9 + 3421: -8,-8 + 3422: -9,-9 + 3423: -9,-10 + 3424: -9,-11 + 3425: -8,-11 + 3426: -9,-12 + 3427: -9,-13 + 3428: -10,-13 + 3429: -7,-12 + 3430: -8,-12 + 3431: -10,-12 + 3432: -11,-12 + 3433: -12,-12 + 3434: -13,-12 + 3435: -12,-11 + 3436: -13,-11 + 3437: -14,-13 + 3438: -13,-13 + 3439: -12,-13 + 3440: -14,-14 + 3441: -14,-15 + 3442: -14,-16 + 3443: -15,-16 + 3444: -15,-17 + 3445: -16,-16 + 3446: -16,-17 + 3447: -17,-16 + 3448: -17,-17 + 3449: -17,-15 + 3450: -18,-17 + 3451: -18,-18 + 3452: -19,-17 + 3453: -21,-15 + 3454: -21,-16 + 3455: -22,-17 + 3456: -21,-17 + 3457: -20,-17 + 3458: -21,-18 + 3459: -9,-3 + 3460: -9,-2 + 3461: -6,-5 + 3462: -3,-6 + 3463: -2,-6 + 3464: -1,-5 + 3465: 0,-5 + 3466: 0,-4 + 3467: -1,-3 + 3468: 5,-4 + 3469: 5,-5 + 3470: 6,-5 + 3471: 3,-6 + 3472: 4,-7 + 3473: 3,-7 + 3474: 2,-8 + 3475: 3,-8 + 3476: 2,-3 + 3477: 3,-3 + 3478: 2,-4 + 3479: 3,-4 + 3480: 4,-4 + 3481: -2,-3 + 3482: -3,-3 + 3483: -4,-3 + 3484: -3,-7 + 3485: -2,-7 + 3486: -2,-8 + 3487: 9,-3 + 3488: 9,-1 + 3489: 8,-1 + 3490: 9,0 + 3491: 12,-3 + 3492: 13,-2 + 3493: 8,-6 + 3494: 8,-5 + - node: + cleanable: True + color: '#000000FF' + id: DirtHeavy + decals: + 1841: -93,-27 + 1847: -92,-36 + 1858: -85,-38 + 3697: 21,-18 + 3698: 21,-18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1818: -80,-35 + 1819: -83,-34 + 1820: -82,-34 + 1821: -83,-34 + 1827: -82,-39 + 1828: -87,-39 + 1835: -91,-36 + 1836: -91,-35 + 1879: -83,-41 + 1880: -83,-41 + - node: + cleanable: True + color: '#000000FF' + id: DirtHeavyMonotile + decals: + 1842: -93,-27 + 1843: -93,-30 + 1852: -88,-38 + 1853: -88,-38 + 1854: -85,-38 + 1862: -80,-39 + 1863: -80,-39 + 1867: -80,-37 + 1868: -80,-37 + 1869: -79,-36 + 1870: -79,-36 + 3699: 21,-18 + 3700: 21,-18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1816: -80,-35 + 1817: -80,-35 + 1824: -83,-35 + 1825: -82,-39 + 1826: -82,-39 + 1831: -93,-39 + 1832: -91,-34 + 1833: -91,-35 + 1834: -91,-35 + 1881: -83,-41 + - node: + cleanable: True + color: '#000000FF' + id: DirtLight + decals: + 1848: -92,-38 + 1849: -92,-38 + 1850: -92,-38 + 1851: -88,-38 + 1864: -80,-39 + 1865: -80,-37 + 1871: -79,-36 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1837: -91,-34 + 1838: -91,-36 + 1839: -92,-28 + - node: + cleanable: True + color: '#000000FF' + id: DirtMedium + decals: + 1844: -93,-30 + 1845: -93,-30 + 1846: -93,-33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1822: -83,-35 + 1823: -83,-35 + 1829: -87,-39 + 1830: -93,-39 + 1840: -92,-28 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 1031: -46,14 + 1037: -46,12 + 3523: 23,-8 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 7152: -62,55 + 7153: -61,55 + 7154: -61,56 + 7165: -61,45 + 8676: 47,-38 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 3549: 18,1 + 3551: 21,1 + 7194: -20,11 + 7229: -20,7 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 3514: 19,-9 + 3530: 23,0 + 3565: -28,7 + 3901: -7,-30 + 3903: -6,-30 + 7164: -60,45 + 8674: 45,-38 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 1029: -44,11 + 11841: -54,-12 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 1027: -44,13 + 1036: -43,11 + 1915: -86,-46 + 3529: 23,-1 + 3553: 17,1 + 3902: -5,-30 + 7163: -62,45 + 7192: -20,8 + 7193: -19,9 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 1028: -43,14 + 3521: 23,-9 + 3552: 19,1 + 3554: 20,1 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 1221: -29,-10 + 2404: -33,-27 + 3512: 18,-9 + 3550: 16,1 + 3564: -28,6 + 7162: -59,45 + 8675: 43,-38 + 9123: -9,13 + 9124: -3,17 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 1219: -31,-10 + 1916: -87,-45 + 2386: -43,-27 + 2440: -60,-31 + 5122: 25,15 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 1039: -45,14 + 1220: -30,-10 + 1222: -31,-13 + 1930: -87,-47 + 1938: -88,-47 + 4525: 1,-10 + 5126: 23,13 + 7155: -61,52 + 7156: -60,52 + 7157: -62,52 + 7161: -63,45 + 8171: -26,15 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 1333: -43,-14 + 1932: -88,-46 + 1933: -86,-47 + 2394: -40,-26 + 5132: 26,14 + 5133: 25,14 + 5134: 23,14 + 5135: 24,15 + 7158: -59,55 + 7159: -60,55 + 7160: -60,54 + - node: + color: '#00000042' + id: FullTileOverlayGreyscale + decals: + 3173: -39,-44 + 3174: -39,-43 + 3195: -47,-34 + 3201: -46,-49 + 3202: -46,-50 + 3203: -46,-51 + 3204: -32,-44 + 3205: -31,-42 + 3206: -32,-42 + 3207: -35,-42 + 3208: -31,-39 + 3209: -32,-39 + 3210: -32,-35 + 3211: -31,-35 + 3294: -23,-49 + 3295: -22,-46 + 3296: -19,-42 + 3303: -30,-43 + 3311: -23,-54 + 3312: -21,-54 + 3359: -31,-44 + 3840: -8,-29 + 3841: -7,-29 + 3842: -6,-29 + 3843: -5,-29 + 3844: -4,-29 + 3845: -4,-30 + 3846: -4,-31 + 3847: -8,-30 + 3848: -8,-31 + 3857: -1,-31 + 3858: 1,-31 + 4049: 4,-31 + 4050: 6,-31 + 4051: 5,-33 + 4055: -13,-22 + 4056: -14,-22 + 4057: -15,-22 + 4058: -16,-22 + 4059: -16,-21 + 4060: -15,-21 + 4061: -14,-21 + 4062: -13,-21 + 4063: -12,-21 + 4064: -11,-21 + 4065: -10,-21 + 4066: -10,-22 + 4067: -11,-22 + 4068: -12,-22 + 4069: -11,-20 + 4096: 5,-26 + 4097: 5,-27 + 4098: 5,-28 + 4168: 0,-22 + 4169: 0,-21 + 4268: -1,-18 + 4269: -1,-19 + 4270: 0,-18 + 4271: 0,-19 + 4272: 1,-18 + 4273: 1,-19 + 4679: -9,-33 + 4680: 3,-33 + 4685: 9,-33 + 4698: 4,-35 + 4699: 4,-38 + 4700: 4,-37 + 4701: 4,-36 + 4702: 4,-39 + 4935: 26,-2 + 4936: 17,4 + 4937: 16,4 + 4938: 15,4 + 5189: 15,6 + 5190: 16,6 + 5191: 17,6 + 5192: 17,7 + 5193: 16,7 + 5194: 15,7 + 5195: 17,8 + 5196: 17,9 + 5197: 17,10 + 5470: 30,-14 + 5471: 31,-12 + 5472: 30,-12 + 5532: 36,-23 + 5533: 37,-23 + 5534: 38,-23 + 5535: 35,-20 + 5536: 35,-19 + 5537: 35,-18 + 5538: 35,-17 + 5539: 35,-16 + 5541: 40,-22 + 5542: 42,-22 + 5565: 34,-19 + 5592: 42,-12 + 5593: 42,-11 + 5594: 43,-11 + 5595: 43,-12 + 5596: 44,-12 + 5597: 44,-11 + 5598: 45,-11 + 5599: 45,-12 + 5600: 46,-12 + 5601: 46,-11 + 5602: 47,-11 + 5818: 24,-29 + 5859: 1,-1 + 5860: -1,-1 + 5861: 0,2 + 6030: 39,-21 + 6031: 38,-21 + 6032: 36,-21 + 6033: 37,-21 + 6034: 39,-19 + 6035: 38,-19 + 6036: 37,-19 + 6037: 36,-19 + 6038: 36,-17 + 6039: 37,-17 + 6040: 38,-17 + 6041: 39,-17 + 6069: 20,-45 + 6070: 21,-48 + 6071: 20,-48 + 6072: 19,-49 + 6103: 20,-49 + 6185: 14,-32 + 6193: 15,-31 + 6194: 18,-31 + 6465: 6,-53 + 6572: 3,-57 + 6573: 2,-57 + 6574: 2,-58 + 6575: 3,-58 + 6576: -8,-50 + 6577: -8,-51 + 6578: 4,-57 + 6889: 13,-49 + 6952: 14,-39 + 6953: 18,-39 + 7862: -26,-15 + 7917: -26,2 + 7918: -26,1 + 7946: -23,-12 + 7947: -21,-9 + 8292: 33,-34 + 8293: 27,-30 + 8409: 37,-39 + 8624: 43,-41 + 8625: 48,-41 + 8626: 48,-35 + 8627: 41,-35 + 8686: 37,-47 + 8687: 44,-47 + 8856: -14,-44 + 8857: -8,-44 + 8858: -8,-37 + 11974: -13,-42 + - node: + cleanable: True + color: '#00000042' + id: FullTileOverlayGreyscale + decals: + 5653: 35,-23 + 5654: 35,-22 + 5655: 35,-21 + 5656: 34,-23 + - node: + zIndex: 9 + color: '#00000042' + id: FullTileOverlayGreyscale + decals: + 7509: -35,-19 + 7510: -36,-19 + 7646: -51,-22 + 7647: -51,-19 + 7648: -46,-21 + 7655: -49,-24 + - node: + color: '#00000642' + id: FullTileOverlayGreyscale + decals: + 5627: 28,-24 + 5628: 29,-24 + 5629: 30,-24 + 5632: 30,-23 + 5697: 41,-22 + - node: + color: '#9FED5842' + id: FullTileOverlayGreyscale + decals: + 3577: 19,-12 + 3578: 20,-12 + 3585: 16,-12 + - node: + color: '#9FED5843' + id: FullTileOverlayGreyscale + decals: + 2902: 17,-12 + 2903: 18,-12 + 2904: 21,-12 + - node: + color: '#D4D4D428' + id: FullTileOverlayGreyscale + decals: + 106: -17,-27 + 107: -16,-27 + 108: -15,-27 + 109: -14,-27 + 110: -13,-27 + 111: -12,-27 + 112: -11,-27 + 113: -10,-27 + 114: -10,-28 + 115: -11,-28 + 116: -12,-28 + 117: -11,-29 + 118: -16,-28 + 1279: -34,13 + 1280: -34,12 + 1281: -33,12 + 1282: -33,13 + 1283: -32,13 + 1284: -32,12 + 1285: -31,12 + 1286: -31,13 + 1287: -30,11 + 2690: -26,9 + 8531: 47,-33 + 8532: 48,-33 + - node: + zIndex: 9 + color: '#D4D4D428' + id: FullTileOverlayGreyscale + decals: + 7678: -49,-20 + 7679: -48,-20 + 7680: -48,-21 + 7681: -49,-21 + - node: + color: '#FF8F9AA3' + id: FullTileOverlayGreyscale + decals: + 1882: -97,-29 + 1883: -97,-30 + 1884: -96,-30 + 1885: -96,-29 + - node: + color: '#FFFFFFFF' + id: Grassa1 + decals: + 1317: -43,-15 + 1318: -42,-12 + 1354: -41,-15 + 1911: -87,-45 + 1912: -86,-46 + 2187: -39,-28 + 2188: -41,-27 + 2189: -43,-26 + 2190: -37,-27 + 2191: -34,-27 + 2426: -57,-32 + 3546: 20,1 + 3709: 15,-16 + 3899: -6,-30 + 9105: -6,13 + 9106: -4,14 + 9107: -3,16 + 11833: -57,-12 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 1038: -45,14 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 1032: -43,13 + 3545: 16,1 + 5127: 24,13 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 1020: -45,12 + 3510: 18,-9 + 5136: 24,15 + 8683: 52,-39 + 9108: -9,16 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 2427: -52,-32 + 3511: 19,-9 + 9109: -6,17 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 1021: -44,11 + 1022: -44,13 + 1314: -41,-16 + 1910: -87,-48 + 1913: -88,-46 + 2192: -36,-28 + 2193: -32,-27 + 2194: -39,-26 + 2195: -45,-26 + 2196: -42,-27 + 8740: 42,-48 + - node: + color: '#FFFFFFFF' + id: Grassb2 + decals: + 2428: -62,-31 + 9110: -8,15 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 1023: -43,14 + 9111: -6,12 + 9112: -4,12 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 1223: -30,-13 + 9113: -4,11 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 5128: 26,15 + 8737: 39,-48 + 8738: 42,-48 + 11976: -45,11 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Grassb5 + decals: + 7389: -18,9 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 1024: -45,12 + 1320: -43,-12 + 1331: -43,-14 + 2393: -40,-26 + 2433: -52,-33 + 2436: -58,-31 + 3520: 23,-9 + 3900: -7,-30 + 4530: 5,-13 + 7151: -62,54 + 8673: 45,-38 + 8684: 52,-37 + 9118: -7,16 + 9119: -3,17 + 9120: -4,13 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Grassc1 + decals: + 7388: -18,9 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 2439: -60,-31 + 4520: -5,-12 + 4633: 0,-35 + 7206: -17,8 + 7207: -16,11 + 7208: -17,10 + 7209: -18,10 + 7210: -18,10 + 7211: -20,10 + 7212: -19,10 + 7213: -18,12 + 9117: -9,13 + 9122: -7,16 + - node: + color: '#FFFFFFFF' + id: Grassc3 + decals: + 1321: -43,-12 + 1329: -43,-14 + 1348: -42,-16 + 2385: -43,-27 + 2390: -44,-26 + 4524: 1,-10 + 4636: 0,-39 + 5139: 26,13 + 9121: -4,13 + 9125: -8,14 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 1344: -42,-16 + 2397: -38,-27 + 2399: -36,-27 + 2403: -33,-27 + 2429: -56,-31 + 4517: -6,-10 + 5125: 23,13 + 5131: 26,14 + 8172: -28,14 + 8173: -26,14 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 1923: -88,-45 + 1924: -88,-48 + 1925: -89,-48 + 3518: 23,-8 + 3540: 18,1 + 3541: 19,1 + 5137: 25,13 + 7166: -63,45 + 11832: -54,-14 + 11837: -55,-14 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Grassd1 + decals: + 7380: -17,12 + 7381: -19,12 + 7382: -19,10 + 7383: -18,10 + 7384: -17,10 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 1922: -88,-45 + 1929: -86,-47 + 1935: -87,-48 + 3519: 23,-9 + 3538: 20,1 + 3539: 21,1 + 7202: -17,7 + 7203: -18,7 + 7228: -20,7 + 7230: -20,8 + 8168: -27.696651,14.559322 + 8169: -26.654099,14.45294 + 8170: -26.07963,14.155067 + 8680: 52,-38 + 9126: -8,14 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 1919: -87,-46 + 1926: -89,-48 + 8167: -26,14 + 8671: 45,-38 + 8681: 52,-39 + 9127: -3,17 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Grassd3 + decals: + 7385: -18,10 + 7386: -16,11 + 7387: -18,7 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 1928: -86,-47 + 3507: 18,-9 + 3508: 19,-9 + 3526: 23,-1 + 3527: 23,0 + 3561: -28,7 + 3896: -6,-30 + 3897: -7,-30 + 3898: -5,-30 + 4516: -6,-10 + 4632: 0,-35 + 4635: 0,-39 + 7188: -20,9 + 7189: -18,11 + 8162: -28,15 + 8163: -27,14 + 8164: -26,15 + 8668: 43,-38 + 8669: 45,-38 + 8670: 47,-38 + 11835: -56,-14 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 1035: -46,12 + 1918: -87,-46 + 1927: -89,-47 + 2389: -44,-26 + 2396: -38,-27 + 3506: 18,-9 + 3525: 23,-1 + 3528: 23,0 + 3533: 21,1 + 3534: 20,1 + 3535: 17,1 + 3542: 19,1 + 3558: -28,8 + 3559: -28,7 + 3560: -28,6 + 3893: -7,-30 + 3894: -6,-30 + 3895: -5,-30 + 4529: 5,-13 + 5124: 23,13 + 7205: -18,8 + 8672: 47,-38 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 1034: -43,11 + 1210: -31,-10 + 1211: -30,-10 + 1212: -29,-10 + 1213: -30,-11 + 1214: -31,-11 + 1215: -29,-11 + 1216: -29,-12 + 1217: -31,-13 + 1218: -30,-13 + 1920: -86,-48 + 1921: -86,-45 + 2400: -36,-27 + 2432: -52,-33 + 2435: -58,-31 + 3509: 19,-9 + 3516: 23,-9 + 3517: 23,-8 + 3536: 16,1 + 3537: 17,1 + 3543: 18,1 + 3544: 16,1 + 3562: -28,8 + 3563: -28,6 + 5130: 26,14 + 5140: 26,13 + 7146: -61,53 + 7147: -59,52 + 7148: -62,56 + 7149: -59,56 + 7150: -62,53 + 7186: -19,7 + 7187: -16,10 + 7204: -19,8 + 8165: -27,15 + 8166: -28,14 + 8667: 43,-38 + 8682: 52,-37 + 9128: -9,13 + 9129: -4,13 + 11975: -45,11 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: Grasse3 + decals: + 7392: -20,12 + - node: + color: '#00000042' + id: HalfTileOverlayGreyscale + decals: + 3160: -45,-44 + 3161: -44,-44 + 3162: -43,-44 + 3163: -42,-44 + 3164: -41,-44 + 3185: -41,-35 + 3186: -43,-35 + 3187: -44,-35 + 3188: -42,-35 + 3220: -49,-44 + 3221: -48,-44 + 3222: -47,-44 + 3223: -46,-44 + 3235: -38,-44 + 3236: -34,-44 + 3237: -33,-44 + 3240: -37,-35 + 3241: -36,-35 + 3242: -35,-35 + 3243: -34,-35 + 3244: -33,-35 + 3284: -25,-44 + 3285: -21,-44 + 3286: -20,-44 + 3287: -19,-44 + 3288: -18,-44 + 3289: -17,-44 + 3302: -30,-44 + 3306: -38,-35 + 3307: -40,-35 + 3310: -27,-44 + 3313: -22,-55 + 3315: -21,-55 + 3319: -21,-57 + 3320: -22,-57 + 3321: -23,-57 + 3360: -37,-44 + 3361: -35,-44 + 4076: -13,-23 + 4090: 5,-29 + 4231: -3,-21 + 4232: -4,-21 + 4240: -4,-17 + 4241: -3,-17 + 4251: 3,-21 + 4252: 4,-21 + 4263: 4,-17 + 4264: 3,-17 + 4668: 2,-33 + 4669: 1,-33 + 4670: 0,-33 + 4671: -1,-33 + 4672: -2,-33 + 4673: -3,-33 + 4674: -4,-33 + 4675: -5,-33 + 4676: -6,-33 + 4677: -7,-33 + 4681: 4,-33 + 4682: 6,-33 + 4683: 7,-33 + 4779: 29,-35 + 4780: 30,-35 + 4909: 23,2 + 4910: 22,2 + 4911: 21,2 + 4912: 20,2 + 4913: 19,2 + 4914: 18,2 + 4915: 17,2 + 4916: 16,2 + 4917: 15,2 + 4918: 14,2 + 5462: 30,-16 + 5463: 31,-16 + 5464: 32,-16 + 5540: 37,-16 + 5543: 39,-23 + 5544: 41,-23 + 5545: 42,-23 + 5555: 35,-24 + 5556: 36,-24 + 5557: 37,-24 + 5558: 38,-24 + 5603: 42,-13 + 5604: 43,-13 + 5605: 44,-13 + 5606: 45,-13 + 5858: 0,-1 + 5934: 13,2 + 5935: 12,2 + 5942: 10,2 + 5943: 9,2 + 5944: 8,2 + 5945: 2,-1 + 5946: 3,-1 + 5947: 4,-1 + 5948: -2,-1 + 5949: -3,-1 + 5950: -4,-1 + 5994: -11,2 + 5995: -10,2 + 5996: -9,2 + 5997: -7,1 + 6181: 12,-32 + 6182: 13,-32 + 6184: 25,-49 + 6253: 17,-53 + 6456: 7,-53 + 6457: 5,-53 + 6458: 4,-53 + 6459: 6,-54 + 6484: 8,-61 + 6485: 7,-61 + 6490: 7,-56 + 6491: 8,-56 + 6494: 6,-61 + 6561: 0,-52 + 6562: -1,-52 + 6563: -2,-52 + 6564: -3,-52 + 6565: -4,-52 + 6566: -5,-52 + 6567: -6,-52 + 6568: -7,-52 + 6569: -8,-52 + 6890: 13,-44 + 6926: 11,-41 + 6927: 10,-41 + 6928: 9,-41 + 6929: 8,-41 + 6931: 15,-41 + 6932: 16,-41 + 6933: 17,-41 + 6934: 18,-41 + 6935: 19,-41 + 7034: 24,-31 + 7035: 23,-31 + 7036: 22,-31 + 7037: 21,-31 + 7038: 20,-31 + 7039: 19,-31 + 7040: 17,-31 + 7989: -17,-31 + 7990: -16,-31 + 7991: -14,-32 + 7992: -13,-32 + 7993: -12,-32 + 8029: -13,2 + 8030: -14,2 + 8031: -15,2 + 8032: -16,2 + 8033: -17,2 + 8034: -18,2 + 8035: -19,2 + 8036: -20,2 + 8060: -21,2 + 8061: -22,2 + 8062: -23,2 + 8127: -28,16 + 8128: -27,16 + 8129: -26,16 + 8263: 27,-31 + 8264: 28,-31 + 8265: 31,-31 + 8266: 32,-31 + 8402: 38,-39 + 8406: 38,-42 + 8577: 37,-36 + 8578: 38,-36 + 8579: 39,-36 + 8588: 47,-41 + 8589: 46,-41 + 8590: 45,-41 + 8591: 43,-37 + 8592: 44,-37 + 8593: 45,-37 + 8594: 46,-37 + 8595: 47,-37 + 8632: 43,-43 + 8633: 46,-44 + 8634: 47,-44 + 8635: 48,-44 + 8636: 49,-44 + 8688: 39,-45 + 8689: 40,-45 + 8690: 41,-45 + 8691: 43,-45 + 8692: 42,-45 + 8694: 38,-44 + 8848: -9,-44 + 8849: -10,-44 + 8850: -11,-44 + 8851: -12,-44 + 8852: -13,-44 + 8853: -15,-44 + 9180: 7,7 + 9181: 8,7 + 9182: 8,6 + 9524: 18,22 + 9525: 19,22 + - node: + zIndex: 9 + color: '#00000042' + id: HalfTileOverlayGreyscale + decals: + 7500: -36,-21 + 7501: -35,-21 + 7502: -34,-21 + 7503: -33,-21 + 7504: -32,-21 + 7505: -31,-21 + 7506: -30,-21 + 7507: -29,-21 + 7508: -28,-21 + 7633: -50,-24 + 7634: -48,-24 + 7635: -47,-24 + 7640: -47,-18 + 7641: -48,-18 + 7642: -49,-18 + 7643: -50,-18 + 7656: -45,-22 + 7779: -24,-25 + 7790: -19,-31 + 7804: -24,-21 + - node: + color: '#00000642' + id: HalfTileOverlayGreyscale + decals: + 5614: 39,-27 + 5615: 40,-27 + 5616: 41,-27 + 5617: 42,-27 + 5624: 28,-25 + 5625: 29,-25 + 5626: 30,-25 + 5694: 40,-23 + - node: + color: '#9D9D975D' + id: HalfTileOverlayGreyscale + decals: + 12181: -8,-21 + - node: + color: '#D381C95B' + id: HalfTileOverlayGreyscale + decals: + 4316: 38,2 + 4317: 37,2 + 4980: 40,-1 + 4981: 39,-1 + 4982: 44,2 + 4983: 43,2 + 4984: 42,2 + 4985: 41,2 + 4986: 40,2 + 4988: 44,-1 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 123: -20,-24 + 124: -19,-24 + 125: -18,-24 + 194: 11,-24 + 195: 12,-24 + 201: -6,-39 + 239: 16,-37 + 256: 21,-36 + 279: 27,-37 + 280: 28,-37 + 281: 29,-37 + 300: 31,-37 + 330: 4,-54 + 331: 8,-54 + 366: -10,-62 + 367: -9,-62 + 368: -8,-62 + 369: -7,-62 + 370: -6,-62 + 371: -5,-62 + 372: -4,-62 + 373: -3,-62 + 374: -2,-62 + 375: -1,-62 + 376: 1,-62 + 377: 2,-62 + 378: 3,-62 + 379: 4,-62 + 386: 11,-54 + 387: 12,-54 + 388: 13,-54 + 396: 16,-54 + 434: 26,-50 + 453: 17,-49 + 468: 23,-45 + 469: 24,-45 + 602: -19,-40 + 603: -18,-40 + 604: -17,-40 + 605: -16,-40 + 630: -44,-45 + 631: -45,-45 + 632: -47,-45 + 633: -48,-45 + 634: -46,-45 + 635: -50,-49 + 636: -49,-49 + 637: -48,-49 + 656: -35,-55 + 657: -34,-55 + 658: -32,-55 + 659: -33,-55 + 660: -29,-54 + 661: -28,-54 + 662: -27,-54 + 674: -28,-40 + 675: -27,-40 + 791: -28,-35 + 792: -27,-35 + 793: -26,-35 + 1050: -47,-2 + 1051: -48,-2 + 1068: -48,-6 + 1069: -49,-6 + 1070: -44,-10 + 1071: -43,-10 + 1072: -42,-10 + 1088: -36,-16 + 1089: -35,-16 + 1090: -34,-16 + 1095: -30,-7 + 1098: -35,-1 + 1099: -34,-1 + 1147: -46,-2 + 1273: -39,-16 + 1290: -32,11 + 1291: -33,11 + 1292: -34,11 + 1307: -30,10 + 1629: -59,-37 + 1630: -60,-37 + 1668: -49,-38 + 2365: -17,-34 + 2680: -34,6 + 2723: -38,-16 + 2761: -25,-55 + 2828: -3,-7 + 2829: 3,-7 + 2883: 10,0 + 2884: 11,0 + 2885: 12,0 + 3017: -13,-3 + 3618: 20,-11 + 3619: 19,-11 + 3620: 18,-11 + 3621: 17,-11 + 3629: 21,-16 + 3727: 19,-24 + 3728: 18,-24 + 3729: 17,-24 + 3730: 16,-24 + 3731: 15,-24 + 4115: 20,7 + 4116: 21,7 + 4117: 22,7 + 4130: 32,3 + 4131: 33,3 + 4132: 34,3 + 4133: 36,3 + 4134: 38,3 + 4135: 37,3 + 4136: 35,3 + 4157: 32,-4 + 4162: 35,-3 + 4163: 36,-3 + 4164: 37,-3 + 4176: 52,-5 + 4177: 51,-5 + 4191: 39,-4 + 4193: 40,-4 + 4194: 41,-4 + 4196: 42,-4 + 4197: 44,-4 + 4198: 43,-4 + 4206: 37,5 + 4207: 38,5 + 4209: 35,6 + 4324: 50,-5 + 4339: 46,-4 + 4340: 48,-4 + 4365: -2,-12 + 4366: 2,-12 + 4391: -5,-22 + 4392: -4,-22 + 4393: -3,-22 + 4394: 3,-22 + 4395: 4,-22 + 4396: 5,-22 + 5113: 27,13 + 5169: 34,6 + 5202: 27,-26 + 5203: 28,-26 + 5204: 29,-26 + 5205: 30,-26 + 5208: 35,-25 + 5229: 42,-14 + 5230: 43,-14 + 5231: 44,-14 + 5232: 45,-14 + 5240: 41,-24 + 5241: 43,-24 + 5242: 42,-24 + 5244: 38,-28 + 5245: 39,-28 + 5246: 40,-28 + 5247: 42,-28 + 5248: 41,-28 + 5737: 31,-26 + 5738: 33,-27 + 6304: 39,-61 + 6370: 9,-62 + 6630: 0,-62 + 8547: 46,-45 + 8548: 47,-45 + 8549: 48,-45 + 8550: 49,-45 + 8713: 39,-46 + 8714: 40,-46 + 8715: 41,-46 + 8716: 42,-46 + 8870: -13,-33 + 8871: -14,-33 + 8937: 0,42 + 8942: -1,42 + 9144: 3,4 + 9149: 7,10 + 9273: -14,-69 + 9274: -13,-69 + 9275: -12,-69 + 9276: -11,-69 + 9282: -16,-77 + 10300: 35,28 + 10737: 3,23 + 10787: 0,17 + 10788: -1,17 + 11003: -42,21 + 11004: -41,21 + 11399: -75,0 + 11400: -76,0 + - node: + zIndex: 9 + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 7452: -28,-22 + 7453: -29,-22 + 7454: -30,-22 + 7455: -31,-22 + 7456: -33,-22 + 7457: -34,-22 + 7458: -36,-22 + 7459: -35,-22 + 7684: -48,-22 + 7685: -49,-22 + 7745: -64,-23 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 1723: -72,-36 + 1724: -73,-36 + 1764: -72,-38 + 1765: -71,-38 + 1766: -70,-38 + 1767: -69,-38 + 2138: -33,-34 + 2139: -36,-34 + 2140: -42,-34 + 2141: -45,-34 + 2142: -31,-32 + 2143: -34,-32 + 2144: -37,-32 + 2145: -40,-32 + 2146: -43,-32 + 2147: -46,-32 + 8527: 47,-32 + 8528: 48,-32 + 8529: 49,-32 + - node: + color: '#00000042' + id: HalfTileOverlayGreyscale180 + decals: + 3165: -44,-43 + 3166: -43,-43 + 3167: -42,-43 + 3168: -41,-43 + 3171: -39,-42 + 3172: -38,-42 + 3178: -45,-34 + 3189: -42,-35 + 3190: -42,-34 + 3224: -47,-43 + 3225: -48,-43 + 3226: -49,-43 + 3227: -50,-43 + 3228: -43,-48 + 3229: -44,-48 + 3230: -45,-48 + 3231: -46,-48 + 3232: -47,-48 + 3233: -48,-48 + 3234: -49,-48 + 3238: -33,-42 + 3239: -34,-42 + 3255: -36,-34 + 3256: -33,-34 + 3261: -25,-42 + 3276: -23,-38 + 3290: -21,-42 + 3291: -20,-42 + 3292: -18,-42 + 3293: -17,-42 + 3297: -37,-42 + 3298: -30,-42 + 3299: -27,-42 + 3314: -22,-54 + 3322: -21,-56 + 3323: -22,-56 + 3324: -23,-56 + 3849: -7,-31 + 3850: -6,-31 + 3851: -5,-31 + 3852: -9,-31 + 3853: -3,-31 + 3854: -2,-31 + 3855: 0,-31 + 3856: 2,-31 + 4044: 3,-31 + 4045: 5,-31 + 4046: 7,-31 + 4047: 8,-31 + 4048: 9,-31 + 4072: -15,-20 + 4073: -14,-20 + 4074: -13,-20 + 4075: -12,-20 + 4079: -13,-25 + 4091: 5,-25 + 4234: -3,-20 + 4235: -4,-20 + 4253: 3,-20 + 4254: 4,-20 + 4781: 31,-34 + 4782: 30,-34 + 4783: 29,-34 + 4784: 28,-34 + 4838: 21,-35 + 4919: 14,4 + 4920: 18,4 + 4921: 19,4 + 4922: 20,4 + 4923: 21,4 + 4924: 22,4 + 4925: 23,4 + 4926: 24,4 + 4927: 26,3 + 5465: 32,-15 + 5546: 40,-21 + 5569: 36,-15 + 5570: 35,-15 + 5571: 34,-15 + 5572: 33,-15 + 5607: 42,-10 + 5608: 43,-10 + 5609: 45,-10 + 5610: 46,-10 + 5611: 44,-10 + 5884: -4,2 + 5885: -3,2 + 5886: -2,2 + 5887: -1,2 + 5888: 1,2 + 5889: 2,2 + 5890: 3,2 + 5891: 4,2 + 5936: 13,4 + 5937: 12,4 + 5938: 10,4 + 5939: 9,4 + 5940: 8,4 + 5941: 7,4 + 5989: -7,4 + 5993: -11,4 + 6068: 19,-48 + 6107: 19,-44 + 6108: 20,-44 + 6110: 17,-48 + 6149: 25,-44 + 6150: 24,-44 + 6151: 23,-44 + 6152: 20,-28 + 6153: 18,-28 + 6154: 17,-28 + 6155: 19,-28 + 6156: 15,-30 + 6157: 14,-30 + 6158: 12,-30 + 6159: 11,-30 + 6160: 13,-30 + 6186: 23,-48 + 6187: 24,-48 + 6188: 25,-48 + 6251: 17,-52 + 6252: 18,-52 + 6424: 9,-47 + 6460: 4,-52 + 6461: 5,-52 + 6462: 6,-52 + 6463: 7,-52 + 6570: -6,-59 + 6571: -8,-49 + 6684: 11,-53 + 6685: 12,-53 + 6895: 14,-48 + 6896: 13,-48 + 6897: 12,-48 + 6937: 19,-39 + 6938: 17,-39 + 6939: 16,-39 + 6940: 15,-39 + 6941: 13,-39 + 6942: 12,-39 + 6943: 11,-39 + 7994: -17,-29 + 7995: -16,-29 + 7996: -15,-29 + 7997: -13,-30 + 7998: -12,-30 + 7999: -11,-30 + 8019: -22,4 + 8020: -21,4 + 8021: -20,4 + 8022: -19,4 + 8023: -18,4 + 8024: -17,4 + 8025: -16,4 + 8026: -15,4 + 8027: -14,4 + 8028: -13,4 + 8122: -24,18 + 8123: -25,18 + 8124: -26,18 + 8125: -27,18 + 8126: -28,18 + 8271: 27,-29 + 8272: 28,-29 + 8273: 29,-29 + 8274: 30,-29 + 8275: 31,-29 + 8276: 32,-29 + 8277: 33,-29 + 8284: 34,-38 + 8403: 38,-41 + 8407: 38,-38 + 8408: 37,-38 + 8574: 37,-34 + 8575: 38,-34 + 8576: 39,-34 + 8580: 43,-35 + 8581: 44,-35 + 8582: 45,-35 + 8583: 46,-35 + 8584: 47,-35 + 8596: 43,-39 + 8597: 44,-39 + 8598: 45,-39 + 8599: 47,-39 + 8600: 46,-39 + 8618: 41,-44 + 8619: 40,-44 + 8620: 39,-44 + 8637: 47,-43 + 8638: 48,-43 + 8708: 40,-45 + 8709: 41,-45 + 8854: -15,-42 + 8855: -11,-42 + 9189: 10,7 + 9529: 19,27 + 9530: 18,27 + 11972: -14,-42 + 11973: -12,-42 + - node: + zIndex: 9 + color: '#00000042' + id: HalfTileOverlayGreyscale180 + decals: + 7494: -28,-19 + 7495: -29,-19 + 7496: -30,-19 + 7497: -31,-19 + 7498: -32,-19 + 7499: -33,-19 + 7628: -45,-20 + 7629: -50,-17 + 7630: -49,-17 + 7631: -48,-17 + 7632: -47,-17 + 7636: -50,-23 + 7637: -49,-23 + 7638: -48,-23 + 7639: -47,-23 + 7775: -25,-21 + 7800: -21,-26 + 7805: -24,-20 + - node: + color: '#0000005B' + id: HalfTileOverlayGreyscale180 + decals: + 5031: 43,-3 + - node: + color: '#00000642' + id: HalfTileOverlayGreyscale180 + decals: + 5618: 39,-26 + 5619: 40,-26 + 5620: 42,-26 + 5621: 41,-26 + 5630: 28,-23 + 5631: 29,-23 + 5634: 30,-22 + 5701: 41,-21 + 5702: 42,-21 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 83: -5,8 + - node: + color: '#9FED585B' + id: HalfTileOverlayGreyscale180 + decals: + 5032: 44,-3 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 6640: 7,-62 + - node: + color: '#D381C95B' + id: HalfTileOverlayGreyscale180 + decals: + 4314: 37,1 + 4315: 38,1 + 4987: 44,1 + 4990: 40,1 + 5025: 44,-2 + 5026: 43,-2 + 5027: 39,-3 + 5028: 40,-3 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 119: -17,-26 + 126: -21,-20 + 127: -20,-20 + 128: -19,-20 + 129: -18,-20 + 130: -16,-19 + 131: -15,-19 + 132: -14,-19 + 133: -5,-16 + 134: -4,-16 + 135: -3,-16 + 140: -2,-16 + 141: 3,-16 + 142: 4,-16 + 143: 5,-16 + 179: 4,-24 + 207: -3,-35 + 208: -4,-35 + 209: -5,-35 + 236: 16,-34 + 260: 22,-33 + 261: 23,-33 + 286: 29,-33 + 287: 30,-33 + 288: 31,-33 + 319: 7,-43 + 320: 8,-43 + 327: 4,-51 + 328: 5,-51 + 329: 6,-51 + 380: -7,-61 + 381: -3,-61 + 382: 1,-61 + 389: 11,-52 + 399: 17,-51 + 400: 16,-51 + 436: 26,-47 + 437: 25,-47 + 438: 24,-47 + 439: 23,-47 + 463: 18,-43 + 470: 23,-43 + 471: 24,-43 + 472: 25,-43 + 473: 26,-43 + 617: -50,-42 + 618: -49,-42 + 619: -48,-42 + 620: -43,-42 + 621: -42,-42 + 622: -41,-42 + 625: -48,-47 + 626: -47,-47 + 627: -45,-47 + 628: -46,-47 + 629: -44,-47 + 640: -44,-51 + 641: -43,-51 + 642: -42,-51 + 643: -41,-51 + 644: -40,-51 + 653: -35,-50 + 670: -29,-46 + 671: -28,-46 + 672: -27,-46 + 676: -27,-38 + 677: -28,-38 + 721: -36,-37 + 722: -35,-37 + 1045: -48,3 + 1046: -47,3 + 1047: -46,3 + 1057: -47,9 + 1058: -46,9 + 1059: -45,9 + 1060: -44,9 + 1073: -46,-7 + 1074: -45,-7 + 1075: -44,-7 + 1076: -43,-7 + 1077: -42,-7 + 1087: -36,-12 + 1096: -30,-5 + 1148: -34,-3 + 1149: -35,-3 + 1157: -30,-8 + 1158: -29,-8 + 1167: -29,4 + 1295: -34,14 + 1296: -33,14 + 1297: -31,14 + 1298: -32,14 + 1624: -57,-34 + 1625: -56,-34 + 1626: -55,-34 + 1627: -59,-34 + 1628: -60,-34 + 1667: -49,-40 + 2320: -22,-37 + 2321: -23,-37 + 2322: -24,-37 + 2366: -17,-33 + 2379: -18,-35 + 2410: -47,-26 + 2460: -42,4 + 2555: -44,-3 + 2556: -43,-3 + 2557: -42,-3 + 2632: -40,10 + 2678: -34,9 + 2679: -33,9 + 2822: -3,-4 + 2823: 3,-4 + 2887: 12,-2 + 2888: 11,-2 + 2889: 10,-2 + 2890: 9,-2 + 3018: -13,0 + 3054: -12,-11 + 3055: -16,-10 + 3056: -17,-10 + 3057: -18,-10 + 3073: -9,-1 + 3074: -8,-1 + 3396: -13,-11 + 4016: 5,-24 + 4106: 21,11 + 4107: 22,11 + 4108: 23,11 + 4109: 24,11 + 4110: 25,11 + 4127: 33,4 + 4128: 34,4 + 4129: 35,4 + 4142: 32,-1 + 4143: 33,-1 + 4156: 32,-5 + 4181: 50,-2 + 4182: 51,-2 + 4183: 52,-2 + 4229: 36,10 + 4230: 37,10 + 4256: 28,15 + 4257: 27,15 + 4541: -14,-11 + 5065: 44,8 + 5066: 43,8 + 5067: 42,8 + 5068: 41,8 + 5069: 40,8 + 5151: 34,14 + 5152: 33,14 + 5215: 30,-18 + 5216: 31,-18 + 5221: 29,-11 + 5222: 30,-11 + 5223: 31,-11 + 5224: 32,-11 + 5225: 35,-10 + 5226: 36,-10 + 5227: 37,-10 + 5238: 43,-20 + 5257: 27,-27 + 5258: 28,-27 + 5259: 29,-27 + 5260: 30,-27 + 5261: 31,-27 + 5262: 32,-27 + 5263: 34,-27 + 5264: 33,-27 + 5274: 28,-22 + 5275: 21,-19 + 5276: 21,-19 + 5277: 21,-19 + 6123: 19,-43 + 6306: 39,-63 + 6377: -3,-50 + 8055: -15,5 + 8056: -16,5 + 8057: -17,5 + 8058: -18,5 + 8059: -19,5 + 8262: 35,-29 + 8534: 46,-31 + 8535: 47,-31 + 8536: 48,-31 + 8537: 49,-31 + 8645: 42,-32 + 8646: 41,-32 + 8922: -9,47 + 8923: -10,47 + 8938: 0,47 + 8939: -1,47 + 9141: -1,6 + 9142: 4,6 + 9143: 3,6 + 9148: 7,8 + 9278: -14,-66 + 9279: -15,-66 + 9411: 18,18 + 9498: 18,28 + 9499: 19,28 + 9686: -1,-42 + 9687: 0,-42 + 9894: 38,26 + 10270: 32,33 + 10271: 31,33 + 10272: 29,33 + 10273: 28,33 + 10301: 35,29 + 10732: 3,25 + 10738: 3,22 + 10739: 2,25 + 10740: 4,25 + 10845: -14,20 + 10846: -15,20 + 10847: -16,20 + 10987: -40,27 + 10988: -39,27 + 10989: -38,27 + 11009: -42,24 + 11010: -41,24 + 11126: -47,18 + 11128: -51,21 + 11129: -50,21 + 11130: -45,22 + 11131: -46,22 + 11132: -47,22 + 11133: -48,22 + 11159: -46,18 + 11160: -48,18 + 11277: -53,11 + 11851: -29,-27 + 11881: 21,-38 + 11906: 35,-72 + - node: + zIndex: 9 + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 7444: -36,-18 + 7445: -35,-18 + 7446: -34,-18 + 7447: -33,-18 + 7448: -31,-18 + 7449: -30,-18 + 7450: -29,-18 + 7451: -28,-18 + 7688: -49,-19 + 7689: -48,-19 + 7740: -64,-18 + - node: + color: '#DE3A3A5B' + id: HalfTileOverlayGreyscale180 + decals: + 1725: -69,-34 + 1726: -70,-34 + 5029: 41,-3 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 1720: -66,-33 + 1721: -72,-34 + 1722: -73,-34 + 1753: -72,-43 + 1754: -71,-43 + 1755: -70,-43 + 1756: -69,-43 + - node: + color: '#EFB3415B' + id: HalfTileOverlayGreyscale180 + decals: + 5030: 42,-3 + - node: + color: '#00000042' + id: HalfTileOverlayGreyscale270 + decals: + 3153: -45,-36 + 3154: -45,-37 + 3155: -45,-38 + 3156: -45,-39 + 3157: -45,-40 + 3158: -45,-42 + 3159: -45,-43 + 3179: -47,-35 + 3180: -47,-36 + 3197: -50,-44 + 3198: -50,-45 + 3199: -50,-46 + 3200: -50,-47 + 3245: -31,-34 + 3257: -31,-38 + 3258: -31,-40 + 3270: -22,-48 + 3271: -22,-47 + 3272: -22,-45 + 3273: -22,-41 + 3274: -22,-40 + 3275: -22,-39 + 3300: -23,-51 + 3304: -31,-37 + 3316: -20,-55 + 3317: -20,-56 + 4078: -14,-24 + 4084: 6,-28 + 4085: 6,-27 + 4086: 6,-26 + 4170: 1,-22 + 4171: 1,-21 + 4259: 5,-20 + 4260: 5,-19 + 4261: 5,-18 + 4266: 2,-18 + 4267: 2,-19 + 4694: 5,-35 + 4695: 5,-36 + 4696: 5,-37 + 4697: 5,-38 + 4778: 28,-36 + 4836: 23,-36 + 4837: 23,-35 + 4929: 26,0 + 4930: 27,-2 + 4931: 26,-4 + 4932: 26,-5 + 4933: 26,-6 + 4934: 26,-7 + 4949: 24,-4 + 4950: 24,-5 + 5188: 18,8 + 5458: 32,-12 + 5466: 31,-14 + 5467: 31,-13 + 5507: 27,-15 + 5508: 27,-14 + 5509: 27,-13 + 5510: 27,-12 + 5515: 26,-10 + 5516: 26,-9 + 5517: 26,-8 + 5524: 26,-17 + 5548: 40,-20 + 5549: 40,-18 + 5550: 40,-17 + 5587: 40,-14 + 5588: 41,-12 + 5589: 41,-13 + 5795: 26,-19 + 5796: 25,-21 + 5797: 25,-22 + 5798: 25,-23 + 5799: 25,-24 + 5815: 24,-26 + 5816: 24,-27 + 5817: 24,-28 + 5985: -5,3 + 5986: -5,4 + 5987: -5,5 + 6109: 20,-46 + 6148: 26,-45 + 6183: 24,-50 + 6248: 19,-54 + 6249: 20,-52 + 6250: 20,-51 + 6425: 8,-48 + 6426: 8,-49 + 6427: 8,-46 + 6428: 8,-45 + 6454: 8,-51 + 6455: 8,-52 + 6482: 9,-59 + 6483: 9,-60 + 6486: 6,-60 + 6487: 6,-59 + 6488: 6,-58 + 6489: 6,-57 + 6492: 9,-56 + 6780: 43,-22 + 6891: 14,-44 + 6892: 14,-45 + 6893: 15,-47 + 6894: 15,-48 + 6924: 14,-42 + 6930: 8,-40 + 6944: 10,-38 + 6945: 10,-37 + 6946: 10,-36 + 7815: -23,-21 + 7833: -24,-16 + 7834: -24,-15 + 7835: -24,-14 + 7836: -24,-13 + 7837: -24,-12 + 7838: -24,-11 + 7839: -24,-10 + 7840: -24,-9 + 7841: -24,-8 + 7842: -24,-7 + 7843: -24,-6 + 7844: -24,-5 + 7845: -24,-4 + 7846: -24,-3 + 7847: -24,-2 + 7848: -24,-1 + 7934: -24,-19 + 7935: -24,-18 + 8063: -24,1 + 8111: -23,6 + 8112: -23,7 + 8113: -23,8 + 8114: -23,9 + 8115: -23,10 + 8116: -23,11 + 8117: -23,12 + 8118: -23,14 + 8119: -23,15 + 8120: -23,16 + 8121: -23,17 + 8278: 35,-30 + 8279: 35,-31 + 8280: 35,-32 + 8281: 35,-33 + 8282: 35,-37 + 8285: 35,-38 + 8404: 39,-41 + 8405: 39,-40 + 8585: 49,-36 + 8586: 50,-38 + 8587: 49,-40 + 8621: 44,-43 + 8628: 42,-34 + 8835: -8,-43 + 8836: -8,-42 + 8837: -8,-41 + 8838: -8,-40 + 8839: -8,-39 + 8840: -8,-38 + 8841: -8,-36 + 9186: 9,8 + 9187: 9,9 + 9188: 9,10 + 9531: 21,23 + 9532: 21,24 + 9533: 21,25 + - node: + zIndex: 9 + color: '#00000042' + id: HalfTileOverlayGreyscale270 + decals: + 7492: -36,-20 + 7625: -45,-21 + 7626: -46,-23 + 7627: -46,-19 + 7711: -46,-18 + 7728: -64,-22 + 7729: -64,-21 + 7730: -64,-20 + 7731: -64,-19 + 7798: -22,-25 + 7799: -20,-27 + 7801: -23,-23 + 7802: -23,-22 + - node: + color: '#00000642' + id: HalfTileOverlayGreyscale270 + decals: + 5633: 31,-23 + 5704: 40,-19 + - node: + color: '#52B4E91C' + id: HalfTileOverlayGreyscale270 + decals: + 4161: -1,-22 + 4174: -1,-21 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 81: -5,8 + 82: -5,9 + - node: + color: '#9D9D975D' + id: HalfTileOverlayGreyscale270 + decals: + 12175: -7,-20 + 12176: -7,-19 + 12177: -7,-18 + 12178: -7,-17 + 12179: -7,-16 + 12180: -7,-15 + - node: + color: '#D381C95B' + id: HalfTileOverlayGreyscale270 + decals: + 4979: 41,0 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 144: 2,-15 + 145: 2,-16 + 171: 7,-29 + 172: 7,-28 + 173: 7,-27 + 189: 13,-19 + 190: 13,-20 + 191: 13,-21 + 192: 13,-22 + 193: 13,-23 + 240: 19,-37 + 241: 19,-36 + 242: 19,-35 + 243: 19,-34 + 244: 19,-33 + 257: 24,-36 + 258: 24,-35 + 259: 24,-34 + 317: 9,-45 + 318: 9,-44 + 332: 9,-53 + 333: 9,-52 + 334: 9,-51 + 364: -10,-57 + 365: -10,-49 + 404: 21,-53 + 405: 21,-52 + 406: 21,-51 + 435: 27,-49 + 457: 15,-44 + 474: 27,-44 + 475: 27,-45 + 623: -49,-46 + 645: -39,-52 + 646: -39,-53 + 647: -39,-54 + 648: -39,-55 + 654: -31,-51 + 655: -31,-54 + 663: -26,-53 + 664: -26,-52 + 665: -26,-51 + 666: -26,-50 + 667: -26,-49 + 668: -26,-48 + 669: -26,-47 + 678: -26,-39 + 680: -27,-39 + 681: -28,-39 + 790: -25,-34 + 794: -25,-33 + 802: -28,-34 + 803: -28,-33 + 804: -27,-34 + 805: -27,-33 + 806: -26,-33 + 807: -26,-34 + 1048: -45,2 + 1049: -45,1 + 1054: -43,6 + 1055: -43,7 + 1056: -43,8 + 1066: -46,-5 + 1067: -46,-4 + 1082: -37,-10 + 1083: -37,-9 + 1084: -37,-8 + 1091: -33,-15 + 1092: -33,-14 + 1093: -33,-12 + 1094: -33,-9 + 1097: -31,-4 + 1163: -28,-1 + 1194: -37,-7 + 1274: -33,-13 + 1299: -30,13 + 1306: -29,11 + 1618: -54,-40 + 1619: -54,-39 + 1622: -53,-35 + 1623: -53,-36 + 2532: -33,-10 + 2681: -29,8 + 2682: -29,7 + 2683: -29,6 + 2684: -27,8 + 2685: -27,7 + 2686: -27,6 + 2705: -37,0 + 2824: -4,-3 + 2825: 2,-3 + 2826: 2,-8 + 2827: -4,-8 + 2900: 10,-5 + 2901: 10,-6 + 3004: 22,0 + 3005: 22,-1 + 3006: 22,-8 + 3007: 22,-9 + 3012: -10,0 + 3013: -12,-1 + 3014: -12,-2 + 3047: -8,-11 + 3048: -7,-13 + 3060: -20,-13 + 3061: -20,-12 + 3062: -20,-11 + 3063: -20,-10 + 3694: 13,-17 + 3695: 13,-16 + 3798: 13,-26 + 3799: 13,-27 + 3800: 13,-28 + 3839: -3,-29 + 4014: 7,-26 + 4015: 7,-25 + 4101: 18,10 + 4111: 26,10 + 4137: 32,5 + 4138: 32,6 + 4139: 32,7 + 4233: 38,8 + 4244: 31,10 + 4245: 31,11 + 4246: 31,12 + 4280: 18,6 + 4544: -20,-15 + 4615: 6,-39 + 4616: 6,-38 + 4617: 6,-37 + 4618: 6,-36 + 4619: 6,-35 + 4858: 27,-9 + 4859: 27,-8 + 4971: 37,-1 + 5171: 38,9 + 5234: 41,-19 + 5235: 41,-18 + 5236: 41,-16 + 5237: 41,-17 + 5250: 43,-27 + 5251: 43,-26 + 5268: 34,-26 + 5278: 28,-20 + 5279: 28,-19 + 5280: 28,-18 + 6018: -4,4 + 6019: -4,5 + 6303: 38,-62 + 6364: 9,-49 + 6371: 10,-61 + 6372: 10,-60 + 6373: 10,-59 + 6374: 10,-58 + 6375: 10,-57 + 6376: 10,-56 + 6632: -10,-53 + 6961: 11,-37 + 7012: 11,-36 + 7181: -22,11 + 7182: -22,9 + 7183: -22,8 + 7184: -22,7 + 7185: -22,6 + 7227: -22,10 + 7238: -22,12 + 7826: -19,-26 + 8178: -15,7 + 8179: -15,8 + 8180: -15,9 + 8181: -15,10 + 8182: -15,11 + 8388: 39,-38 + 8533: 49,-33 + 8647: 43,-33 + 8860: -7,-42 + 8861: -7,-41 + 8912: -3,41 + 8913: -3,40 + 8933: 1,43 + 8934: 1,44 + 8935: 1,45 + 8936: 1,46 + 9150: 6,9 + 9283: -15,-76 + 9284: -15,-75 + 9285: -15,-74 + 9286: -15,-73 + 9287: -15,-72 + 9288: -15,-71 + 9289: -15,-70 + 9412: 19,17 + 10261: 32,21 + 10262: 32,22 + 10263: 32,24 + 10264: 32,25 + 10265: 32,26 + 10266: 32,28 + 10267: 33,31 + 10268: 33,32 + 10269: 28,32 + 10843: -13,18 + 10844: -13,19 + 10990: -36,25 + 10991: -36,24 + 10992: -36,23 + 10993: -36,22 + 10994: -36,21 + 10995: -36,20 + 11007: -40,22 + 11008: -40,23 + 11393: -70,1 + 11394: -70,3 + 11395: -70,2 + 11921: -12,-40 + 11922: -12,-36 + - node: + zIndex: 9 + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 7574: -45,-24 + 7575: -45,-18 + 7576: -45,-17 + 7682: -47,-20 + 7683: -47,-21 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 1632: -57,-39 + 1633: -57,-40 + 1761: -73,-42 + 1762: -73,-41 + 1763: -73,-39 + 1768: -73,-40 + 2119: -32,-33 + 2120: -35,-33 + 2121: -38,-33 + 2122: -41,-33 + 2123: -44,-33 + 2124: -47,-33 + 8526: 46,-33 + - node: + color: '#00000042' + id: HalfTileOverlayGreyscale90 + decals: + 3181: -47,-33 + 3182: -44,-33 + 3183: -41,-33 + 3184: -38,-33 + 3196: -46,-42 + 3214: -42,-45 + 3215: -42,-46 + 3216: -42,-47 + 3246: -35,-33 + 3247: -32,-33 + 3259: -32,-38 + 3260: -32,-40 + 3277: -24,-39 + 3278: -24,-40 + 3279: -24,-41 + 3280: -24,-45 + 3281: -24,-46 + 3282: -24,-47 + 3283: -24,-48 + 3301: -24,-51 + 3305: -32,-37 + 4077: -12,-24 + 4087: 4,-26 + 4088: 4,-27 + 4089: 4,-28 + 4172: -1,-22 + 4173: -1,-21 + 4236: -5,-20 + 4237: -5,-19 + 4238: -5,-18 + 4239: -5,-17 + 4247: -2,-18 + 4248: -2,-19 + 4691: 3,-38 + 4692: 3,-37 + 4693: 3,-36 + 4705: 3,-35 + 4785: 27,-36 + 4786: 27,-35 + 4787: 27,-34 + 4788: 27,-33 + 4940: 24,0 + 4941: 24,-1 + 4942: 24,-2 + 4947: 23,-4 + 4948: 23,-5 + 4951: 24,-7 + 4952: 24,-8 + 4953: 24,-9 + 4954: 24,-10 + 4955: 24,-11 + 4956: 24,-12 + 5459: 29,-12 + 5460: 29,-13 + 5461: 29,-15 + 5511: 26,-12 + 5512: 26,-13 + 5513: 26,-14 + 5514: 26,-15 + 5518: 24,-13 + 5519: 23,-15 + 5520: 23,-16 + 5521: 23,-17 + 5530: 34,-18 + 5531: 34,-17 + 5562: 33,-23 + 5563: 34,-22 + 5564: 34,-21 + 5566: 33,-19 + 5567: 34,-16 + 5575: 39,-14 + 5576: 40,-13 + 5577: 40,-12 + 5578: 40,-11 + 5579: 40,-10 + 5590: 41,-12 + 5591: 41,-13 + 5805: 21,-26 + 5806: 23,-23 + 5807: 23,-22 + 5808: 23,-21 + 5809: 23,-20 + 5810: 23,-19 + 5811: 21,-27 + 5988: -6,5 + 6104: 18,-47 + 6105: 18,-46 + 6106: 18,-45 + 6196: 24,-26 + 6254: 18,-54 + 6255: 19,-51 + 6429: 7,-45 + 6430: 7,-46 + 6431: 7,-47 + 6432: 7,-48 + 6433: 7,-49 + 6555: 1,-58 + 6556: 1,-57 + 6557: 1,-56 + 6558: 1,-55 + 6559: 1,-53 + 6560: 1,-54 + 6682: 13,-51 + 6683: 13,-52 + 6898: 11,-48 + 6899: 11,-47 + 6900: 12,-45 + 6901: 12,-44 + 6925: 12,-42 + 6936: 19,-40 + 6947: 8,-36 + 6948: 8,-37 + 6949: 8,-38 + 7849: -26,-16 + 7850: -26,-13 + 7851: -26,-12 + 7852: -26,-11 + 7853: -26,-10 + 7854: -26,-9 + 7855: -26,-6 + 7856: -26,-5 + 7857: -26,-4 + 7858: -26,-3 + 7859: -26,-2 + 7860: -26,-1 + 7861: -26,-14 + 7916: -25,4 + 8130: -25,15 + 8131: -25,14 + 8132: -25,12 + 8133: -25,11 + 8134: -25,10 + 8135: -25,9 + 8136: -25,8 + 8137: -25,7 + 8138: -25,6 + 8267: 33,-32 + 8268: 33,-33 + 8269: 33,-35 + 8270: 33,-36 + 8601: 41,-40 + 8602: 41,-39 + 8603: 41,-38 + 8604: 41,-37 + 8617: 42,-43 + 8622: 44,-44 + 8648: 39,-35 + 8842: -10,-36 + 8843: -10,-37 + 8844: -10,-38 + 8845: -10,-39 + 8846: -10,-40 + 8847: -10,-41 + 8895: -24,-26 + 9178: 6,6 + 9526: 19,24 + 9527: 19,25 + 9528: 19,26 + - node: + zIndex: 9 + color: '#00000042' + id: HalfTileOverlayGreyscale90 + decals: + 7493: -28,-20 + 7511: -26,-21 + 7512: -26,-20 + 7513: -26,-19 + 7514: -26,-18 + 7621: -52,-19 + 7622: -52,-22 + 7623: -51,-18 + 7624: -51,-23 + 7644: -51,-20 + 7645: -51,-21 + 7776: -25,-22 + 7777: -25,-23 + 7778: -25,-24 + - node: + color: '#00000642' + id: HalfTileOverlayGreyscale90 + decals: + 5635: 27,-24 + 5661: 34,-20 + - node: + color: '#52B4E91C' + id: HalfTileOverlayGreyscale90 + decals: + 4160: 1,-22 + 4175: 1,-21 + - node: + color: '#9D9D975D' + id: HalfTileOverlayGreyscale90 + decals: + 12182: -12,-18 + - node: + color: '#D381C95B' + id: HalfTileOverlayGreyscale90 + decals: + 4989: 43,0 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 136: -2,-15 + 174: 3,-29 + 175: 3,-28 + 176: 3,-27 + 177: 3,-26 + 178: 3,-25 + 237: 13,-35 + 238: 13,-36 + 245: 17,-33 + 282: 26,-36 + 283: 26,-35 + 284: 26,-34 + 285: 26,-33 + 321: 6,-44 + 351: -11,-57 + 352: -11,-56 + 353: -11,-55 + 354: -11,-54 + 355: -11,-53 + 356: -11,-52 + 357: -11,-51 + 358: -11,-50 + 359: -11,-49 + 360: -11,-59 + 361: -11,-58 + 362: -11,-61 + 363: -11,-60 + 390: 12,-51 + 397: 15,-53 + 398: 15,-52 + 433: 23,-50 + 454: 17,-46 + 455: 17,-45 + 456: 17,-44 + 606: -20,-39 + 607: -20,-38 + 608: -20,-37 + 612: -47,-38 + 613: -47,-39 + 614: -47,-40 + 615: -48,-36 + 616: -48,-35 + 624: -43,-46 + 638: -47,-51 + 639: -47,-50 + 649: -36,-54 + 650: -36,-53 + 651: -36,-52 + 652: -36,-51 + 673: -29,-39 + 679: -27,-39 + 682: -28,-39 + 789: -29,-34 + 795: -29,-33 + 796: -26,-33 + 797: -27,-33 + 798: -28,-33 + 799: -28,-34 + 800: -27,-34 + 801: -26,-34 + 1041: -49,-1 + 1042: -49,0 + 1043: -49,1 + 1044: -49,2 + 1061: -48,8 + 1062: -48,7 + 1063: -48,6 + 1064: -48,5 + 1078: -40,-10 + 1079: -40,-9 + 1080: -40,-7 + 1081: -40,-8 + 1085: -40,-12 + 1086: -40,-13 + 1152: -29,-4 + 1293: -35,12 + 1294: -35,13 + 1308: -27,-12 + 1309: -27,-11 + 1310: -27,-10 + 1478: -67,-4 + 1479: -67,-5 + 1480: -67,-6 + 1617: -57,-42 + 2066: -39,-38 + 2067: -39,-39 + 2068: -39,-40 + 2069: -39,-37 + 2244: -43,-39 + 2245: -43,-40 + 2459: -43,3 + 2562: -36,1 + 2563: -36,0 + 2628: -41,6 + 2629: -41,7 + 2630: -41,8 + 2631: -41,9 + 2687: -26,8 + 2688: -26,7 + 2689: -26,6 + 2695: -43,2 + 2762: -24,-56 + 2763: -24,-57 + 2830: 4,-8 + 2831: -2,-8 + 2832: -2,-3 + 2833: 4,-3 + 2886: 13,-1 + 3008: 15,-4 + 3009: 15,-5 + 3015: -14,-1 + 3016: -14,-2 + 3045: -10,-10 + 3046: -10,-11 + 3058: -18,-13 + 3059: -18,-14 + 3064: -22,-10 + 3075: -10,-5 + 3076: -10,-6 + 3127: 8,-10 + 3128: 8,-11 + 3781: 7,-19 + 4100: 14,6 + 4105: 20,10 + 4118: 23,6 + 4121: 28,5 + 4122: 31,8 + 4123: 31,7 + 4124: 31,6 + 4125: 31,5 + 4126: 31,4 + 4158: 28,-6 + 4159: 28,-5 + 4210: 33,9 + 4211: 33,10 + 4249: 28,10 + 4250: 28,11 + 4491: 40,4 + 4545: -22,-15 + 4620: 2,-35 + 4621: 2,-36 + 4622: 2,-37 + 4623: 2,-38 + 4624: 2,-39 + 5112: 28,12 + 5211: 33,-21 + 5213: 29,-20 + 5214: 29,-19 + 5252: 37,-27 + 5253: 37,-26 + 5255: 39,-11 + 5256: 39,-10 + 5266: 35,-26 + 5322: 34,-12 + 6305: 40,-62 + 6367: 11,-44 + 7048: 15,-28 + 7077: -74,48 + 7078: -74,49 + 7079: -74,50 + 7080: -74,51 + 7176: -21,6 + 7177: -21,7 + 7178: -21,8 + 7179: -21,9 + 7180: -21,11 + 7226: -21,10 + 7939: -27,-6 + 7940: -27,-4 + 7941: -27,-3 + 8141: -21,12 + 8300: 33,-38 + 8386: 37,-41 + 8387: 37,-42 + 8539: 45,-32 + 8540: 45,-33 + 8910: -7,41 + 8911: -7,40 + 8918: -11,43 + 8919: -11,44 + 8920: -11,45 + 8921: -11,46 + 9145: -2,5 + 9146: -2,4 + 9147: 8,9 + 9413: 17,17 + 9500: 18,25 + 9618: 20,32 + 9688: 1,-41 + 10050: -57,-48 + 10051: -57,-47 + 10052: -57,-46 + 10274: 27,32 + 10275: 27,31 + 10276: 28,28 + 10277: 28,26 + 10278: 28,25 + 10279: 28,24 + 10280: 28,22 + 10281: 28,21 + 10803: -11,21 + 11005: -43,22 + 11006: -43,23 + 11127: -52,20 + 11278: -54,10 + 11279: -54,9 + 11396: -77,3 + 11397: -77,2 + 11398: -77,1 + 11401: -73,1 + 11402: -73,0 + 11920: -14,-40 + - node: + zIndex: 9 + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 7686: -50,-21 + 7687: -50,-20 + 7741: -65,-19 + 7742: -65,-20 + 7743: -65,-21 + 7744: -65,-22 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 733: -31,-53 + 1634: -55,-39 + 1635: -55,-40 + 1636: -55,-41 + 1637: -55,-42 + 1769: -68,-39 + 1770: -68,-40 + 1771: -68,-41 + 1772: -68,-42 + 1773: -67,-37 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 2643: -40,8 + 2644: -40,6 + 5527: 27,-15 + 6195: 26,-49 + 6514: 11,-45 + 10796: -6,19 + - node: + zIndex: 9 + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 7356: -77,43 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 574: 18,-58 + 575: 19,-58 + 3875: -4,-30 + 4789: 28,-36 + 4790: 27,-36 + 4846: 32,-4 + 5270: 22,10 + 5271: 24,10 + 5457: 31,-11 + 5573: 35,-19 + 5574: 35,-17 + 6641: 6,-62 + 8661: 47,-43 + 11631: -71,-25 + 11632: -70,-25 + - node: + cleanable: True + color: '#FFFFFFFF' + id: LoadingArea + decals: + 5660: 35,-21 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 326: 9,-46 + 3398: -12,-12 + 5715: 39,-24 + 5776: 25,-27 + 6135: 15,-45 + 6450: 7.1617794,-48.965874 + 6451: 7.1617794,-47.969173 + 6452: 7.1617794,-46.965878 + 6453: 7.1617794,-45.967197 + 8202: -10,46 + 10795: -4,19 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 576: 25,-58 + 577: 26,-58 + 3399: 12,-12 + 3400: 18,-14 + 3876: -8,-30 + 5707: 41,-17 + 6642: 8,-62 + 7120: -53,55 + 8240: 0,43 + 8940: -1,43 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 8226: -4,42 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkBox + decals: + 7134: -60,50 + 7135: -60,58 + 7136: -56,54 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSe + decals: + 7335: -56,44 + 7336: -55,45 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndE + decals: + 7090: -68,50 + 7093: -64,49 + 7106: -68,58 + 7107: -64,59 + 7115: -65,45 + 7116: -56,45 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndN + decals: + 7097: -64,56 + 7138: -56,50 + 7139: -56,59 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndS + decals: + 7098: -64,52 + 7137: -56,49 + 7140: -56,58 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndW + decals: + 7089: -70,50 + 7094: -66,49 + 7105: -70,58 + 7108: -66,59 + 7113: -66,45 + 7114: -57,45 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNe + decals: + 7285: -69,54 + 7321: -64,44 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNw + decals: + 7277: -64,50 + 7296: -57,48 + 7323: -58,44 + - node: + color: '#D2D2D2FF' + id: MiniTileDarkInnerSe + decals: + 7345: -64,46 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSe + decals: + 7133: -63,52 + 7284: -69,54 + 7304: -68,48 + 7346: -63,60 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSw + decals: + 7283: -64,58 + 7303: -64,48 + 7308: -57,60 + 7322: -58,46 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 7099: -64,53 + 7100: -64,54 + 7101: -64,55 + 7121: -63,49 + 7122: -63,50 + 7123: -63,51 + 7124: -63,57 + 7125: -63,58 + 7126: -63,59 + 7127: -59,59 + 7128: -59,58 + 7129: -59,57 + 7130: -59,51 + 7131: -59,50 + 7132: -59,49 + 7271: -69,55 + 7272: -69,56 + 7273: -69,57 + 7280: -69,51 + 7281: -69,52 + 7282: -69,53 + 7310: -64,45 + 7339: -55,46 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 7092: -69,50 + 7095: -65,49 + 7109: -65,59 + 7112: -69,58 + 7267: -65,54 + 7268: -66,54 + 7269: -67,54 + 7270: -68,54 + 7274: -67,50 + 7275: -66,50 + 7276: -65,50 + 7311: -63,44 + 7312: -62,44 + 7313: -61,44 + 7314: -60,44 + 7315: -59,44 + 7347: -56,61 + 7348: -55,61 + 7349: -57,61 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 7359: -77,46 + 7360: -76,46 + 7361: -75,46 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 7091: -69,50 + 7096: -65,49 + 7110: -65,59 + 7111: -69,58 + 7286: -68,54 + 7287: -67,54 + 7288: -66,54 + 7289: -65,54 + 7290: -67,58 + 7291: -66,58 + 7292: -65,58 + 7297: -57,48 + 7298: -56,48 + 7299: -55,48 + 7300: -67,48 + 7301: -66,48 + 7302: -65,48 + 7316: -63,46 + 7317: -62,46 + 7318: -61,46 + 7319: -60,46 + 7320: -59,46 + 7324: -67,44 + 7325: -66,44 + 7326: -65,44 + 7327: -64,44 + 7328: -63,44 + 7329: -62,44 + 7330: -61,44 + 7331: -60,44 + 7332: -59,44 + 7333: -58,44 + 7334: -57,44 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 7102: -64,53 + 7103: -64,54 + 7104: -64,55 + 7278: -64,51 + 7279: -64,57 + 7293: -57,51 + 7294: -57,50 + 7295: -57,49 + 7305: -57,57 + 7306: -57,58 + 7307: -57,59 + 7309: -58,45 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 7362: -82,48 + 7363: -82,49 + 7364: -82,51 + 7365: -82,50 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNe + decals: + 10060: 42,20 + 10061: 44,20 + 10062: 46,20 + 10063: 48,20 + 10064: 50,20 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNw + decals: + 10073: 42,19 + 10081: 42,23 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSe + decals: + 10056: 43,21 + 10057: 45,21 + 10058: 47,21 + 10059: 49,21 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSw + decals: + 10074: 42,18 + 10080: 42,22 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineN + decals: + 10068: 43,19 + 10069: 44,19 + 10070: 46,19 + 10071: 45,19 + 10072: 47,19 + 10082: 43,23 + 10083: 44,23 + 10084: 45,23 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineS + decals: + 10065: 43,22 + 10066: 44,22 + 10067: 45,22 + 10075: 43,18 + 10076: 44,18 + 10077: 45,18 + 10078: 46,18 + 10079: 47,18 + - node: + color: '#00000035' + id: QuarterTileOverlayGreyscale + decals: + 5729: 36,-16 + 11955: -12,-38 + 11959: -13,-36 + 11960: -13,-38 + 11961: -13,-39 + 11962: -13,-40 + - node: + color: '#00000042' + id: QuarterTileOverlayGreyscale + decals: + 3269: -22,-49 + 3392: -20,-57 + 4095: 6,-29 + 4258: 5,-21 + 4689: 5,-39 + 4829: 18,-33 + 4905: 27,-3 + 5504: 27,-16 + 5547: 40,-21 + 5559: 39,-24 + 5568: 34,-16 + 5794: 26,-20 + 5813: 25,-25 + 5951: 5,-1 + 5952: 6,0 + 5953: 7,1 + 6099: 21,-49 + 6180: 11,-33 + 6190: 26,-49 + 6191: 15,-32 + 6259: 20,-53 + 6464: 8,-53 + 6495: 9,-61 + 7042: 23,-32 + 8608: 49,-41 + 8609: 50,-39 + 8712: 37,-45 + - node: + zIndex: 9 + color: '#00000042' + id: QuarterTileOverlayGreyscale + decals: + 7652: -46,-24 + 7806: -24,-20 + - node: + color: '#00000642' + id: QuarterTileOverlayGreyscale + decals: + 9546: 21,22 + - node: + cleanable: True + color: '#00000642' + id: QuarterTileOverlayGreyscale + decals: + 5659: 43,-23 + - node: + color: '#169C9C7F' + id: QuarterTileOverlayGreyscale + decals: + 12196: -11,-17 + 12197: -11,-18 + - node: + color: '#169C9C93' + id: QuarterTileOverlayGreyscale + decals: + 6391: 7,-44 + 6392: 8,-44 + 6393: 7,-46 + 6394: 7,-47 + 6395: 7,-48 + 6396: 7,-49 + 6402: 9,-47 + 6409: 4,-52 + 6410: 5,-52 + 6411: 6,-52 + 6412: 7,-52 + 6438: 7,-45 + - node: + color: '#169C9CA1' + id: QuarterTileOverlayGreyscale + decals: + 12199: -11,-15 + 12200: -10,-15 + 12201: -9,-15 + 12202: -8,-15 + - node: + color: '#19191993' + id: QuarterTileOverlayGreyscale + decals: + 5912: 12,4 + 5913: 13,4 + 5928: 6,3 + 5929: 6,4 + 5930: 7,4 + 5931: 8,4 + 5932: 10,4 + 5980: -11,4 + 7876: -26,-16 + 7877: -26,-14 + 7878: -26,-13 + 7879: -26,-12 + 7880: -26,-11 + 7976: -15,-32 + 8102: -25,15 + 8103: -25,14 + 8104: -25,12 + 8105: -25,11 + 8106: -25,10 + 8107: -25,9 + 8108: -25,8 + 8109: -25,7 + 8110: -25,6 + - node: + zIndex: 9 + color: '#19191993' + id: QuarterTileOverlayGreyscale + decals: + 7774: -23,-20 + - node: + color: '#28282893' + id: QuarterTileOverlayGreyscale + decals: + 5478: 23,-14 + 5479: 24,-14 + 5480: 23,-15 + 5481: 23,-16 + 5482: 23,-17 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 153: -1,-28 + 154: -1,-26 + 155: -1,-25 + 3909: -16,-23 + 3910: -15,-23 + 3914: -14,-26 + 3915: -13,-26 + 3916: -12,-26 + 3917: -11,-26 + 3918: -11,-25 + 3919: -11,-24 + 3920: -11,-23 + 3921: -10,-23 + 3942: -16,-20 + 3943: -15,-20 + 3944: -14,-20 + 3945: -13,-20 + 3946: -12,-20 + 3947: -10,-20 + 4033: -1,-27 + 4148: -1,-23 + 4188: -5,-21 + 4189: -5,-20 + 4190: -5,-19 + 4192: -5,-18 + 4195: -5,-17 + 8418: 41,-37 + 8419: 41,-38 + 8420: 41,-39 + 8421: 41,-40 + 8422: 41,-41 + - node: + color: '#52B4E91C' + id: QuarterTileOverlayGreyscale + decals: + 3991: 6,-25 + 3992: 5,-25 + 3993: 4,-26 + 3994: 4,-27 + 3995: 4,-28 + 4005: 4,-29 + 4008: 4,-25 + 4039: 3,-31 + 4040: 5,-31 + 4041: 7,-31 + 4042: 8,-31 + 4043: 9,-31 + 4217: -1,-17 + 4218: -1,-16 + 4219: -1,-15 + 4604: 3,-36 + 4605: 3,-37 + 4606: 3,-38 + 4607: 3,-39 + 4703: 3,-35 + 5835: 23,-19 + 5836: 23,-20 + 5837: 23,-21 + 5838: 23,-22 + 5839: 23,-23 + 5840: 22,-24 + 5841: 21,-25 + 5842: 21,-26 + 5843: 21,-27 + 5844: 22,-25 + 5845: 23,-24 + 5846: 21,-28 + 5970: -4,2 + 5974: -6,5 + 5975: -6,4 + 5976: -7,4 + 5978: -10,5 + 5979: -10,4 + 5990: -8,5 + 6957: 8,-36 + 6958: 8,-37 + 6959: 8,-38 + 6960: 8,-39 + 7001: 10,-31 + 7002: 10,-30 + 7003: 11,-30 + 7004: 12,-30 + 7005: 13,-30 + 7006: 14,-30 + 7007: 15,-30 + 7008: 17,-28 + 7009: 18,-28 + 7010: 19,-28 + 7011: 20,-28 + 7964: -17,-29 + 7965: -16,-29 + 7966: -15,-29 + 7967: -14,-29 + 7968: -13,-30 + 7969: -12,-30 + 7970: -11,-30 + 7971: -10,-30 + 7988: -11,-33 + 9171: 6,6 + 9174: 10,7 + - node: + color: '#52B4E91D' + id: QuarterTileOverlayGreyscale + decals: + 3821: -8,-27 + 3822: -7,-27 + 3823: -6,-27 + 3824: -5,-27 + 3825: -4,-27 + 3826: -3,-27 + 3827: -3,-26 + 3828: -3,-25 + 3829: -3,-24 + 3867: -7,-31 + 3868: -6,-31 + 3869: -5,-31 + 3870: -3,-31 + 3871: -2,-31 + 3872: 0,-31 + 3873: 2,-31 + 3874: -9,-31 + - node: + color: '#52B4E95B' + id: QuarterTileOverlayGreyscale + decals: + 2553: -44,-5 + 2554: -44,-4 + 7904: -25,4 + 7905: -25,3 + 7906: -26,3 + 7907: -26,-1 + 7908: -26,-2 + 7909: -26,-3 + - node: + color: '#52B4E960' + id: QuarterTileOverlayGreyscale + decals: + 960: -42,-8 + 961: -43,-8 + 962: -44,-8 + 963: -45,-8 + 964: -46,-8 + 965: -46,-9 + 979: -47,8 + 980: -46,8 + 981: -45,8 + 982: -44,8 + 986: -47,7 + 987: -47,6 + 988: -47,5 + 1009: -47,-4 + 1010: -48,-4 + 1011: -49,-4 + 1012: -49,-5 + 1379: -29,-1 + - node: + color: '#52B4E993' + id: QuarterTileOverlayGreyscale + decals: + 834: -32,6 + 836: -32,4 + 837: -32,3 + 838: -32,2 + 839: -32,1 + 840: -32,0 + 841: -32,-1 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 294: 27,-33 + 295: 27,-34 + 296: 27,-35 + 827: -28,2 + 829: -29,3 + 830: -30,3 + 831: -32,8 + 898: -39,-4 + 899: -39,-5 + 908: -40,3 + 909: -40,3 + 910: -40,2 + 911: -40,1 + 912: -40,0 + 913: -41,0 + 914: -42,0 + 940: -48,-1 + 941: -48,0 + 942: -48,1 + 943: -48,2 + 944: -47,2 + 945: -46,2 + 948: -45,0 + 949: -44,0 + 976: -38,-12 + 1277: -39,-12 + 1481: -39,-7 + 1482: -39,-8 + 1483: -39,-9 + 1484: -39,-10 + 2444: -31,4 + 2457: -30,8 + 2458: -31,8 + 2476: -39,4 + 2477: -38,4 + 2478: -37,4 + 2479: -36,4 + 2480: -35,4 + 2489: -33,8 + 2490: -34,8 + 2495: -34,7 + 2499: -40,-2 + 2501: -39,-3 + 2591: -40,7 + 2592: -40,8 + 2593: -40,9 + 2594: -39,9 + 2595: -38,9 + 2596: -38,10 + 2597: -37,10 + 2599: -36,9 + 2607: -40,6 + 2653: -41,12 + 2654: -41,13 + 2655: -41,14 + 2656: -40,14 + 2657: -40,15 + 2658: -39,15 + 2659: -38,15 + 2660: -37,15 + 2699: -40,4 + 4769: 27,-36 + 5144: 33,13 + 5145: 34,13 + 8245: 33,-32 + 8246: 33,-33 + 8247: 33,-35 + 8248: 33,-36 + - node: + color: '#80C71F72' + id: QuarterTileOverlayGreyscale + decals: + 11965: -12,-42 + - node: + color: '#9D9D975D' + id: QuarterTileOverlayGreyscale + decals: + 12183: -7,-21 + - node: + color: '#9FED5860' + id: QuarterTileOverlayGreyscale + decals: + 1244: -35,-14 + 1245: -36,-13 + 1246: -35,-13 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 1227: -34,-9 + 1228: -35,-9 + 1229: -35,-10 + 2909: 16,0 + 2910: 16,-1 + 2911: 16,-2 + 2912: 16,-3 + 2913: 16,-4 + 2914: 16,-5 + 2915: 16,-6 + 2916: 16,-7 + 2917: 16,-9 + 2927: 21,0 + 2928: 20,0 + 2929: 19,0 + 2930: 18,0 + 2931: 17,0 + 2982: 24,-1 + 2983: 24,-2 + 2984: 23,-3 + 2985: 23,-4 + 2986: 23,-5 + 2987: 23,-6 + 2988: 24,-3 + 2990: 24,-7 + 2991: 24,-8 + 2992: 24,-9 + 2993: 24,-10 + 2994: 24,-11 + 2995: 24,-12 + 2996: 24,-13 + 3573: 16,-8 + 4851: 24,0 + 8041: -21,4 + 8042: -20,4 + 8043: -19,4 + 8044: -18,4 + 8045: -17,4 + 8046: -16,4 + 8047: -15,4 + 11928: -14,-35 + 11929: -14,-36 + 11930: -14,-37 + 11931: -14,-38 + - node: + color: '#A461065B' + id: QuarterTileOverlayGreyscale + decals: + 4388: 1,-12 + 4389: 0,-12 + 4390: -1,-12 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 5389: 42,-10 + 5390: 43,-10 + 5391: 44,-10 + 5392: 45,-10 + 5613: 46,-10 + - node: + color: '#D381C95B' + id: QuarterTileOverlayGreyscale + decals: + 4309: 29,3 + 4427: 24,6 + 4428: 24,7 + 4498: 48,3 + 4499: 49,3 + 4511: 46,-3 + 4512: 46,-2 + 4513: 46,-1 + 4514: 46,0 + 4812: 29,-6 + 4813: 29,-5 + 4814: 29,-4 + 4815: 29,-3 + 4816: 29,-2 + 4817: 30,-1 + 4818: 31,-2 + 4819: 32,-2 + 4820: 33,-2 + 4993: 41,-1 + 5024: 50,-4 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale + decals: + 4285: 31,2 + 4286: 32,2 + 4287: 33,2 + 4288: 34,2 + 4289: 35,2 + 4290: 36,2 + 4296: 29,1 + 4297: 29,4 + 4298: 29,5 + 4299: 29,6 + 4300: 28,7 + 4301: 29,8 + 4414: 21,10 + 4415: 22,10 + 4416: 23,10 + 4417: 24,10 + 4418: 25,10 + 4422: 26,8 + 4442: 34,10 + 4443: 34,9 + 4444: 34,8 + 4445: 34,7 + 4454: 37,9 + 4455: 36,9 + 4456: 35,9 + 4479: 44,7 + 4486: 41,5 + 4487: 40,6 + 4869: 27,-1 + 4871: 26,3 + 4873: 25,4 + 4874: 24,4 + 4875: 23,4 + 4876: 22,4 + 4877: 21,4 + 4878: 20,4 + 4879: 19,4 + 4880: 18,4 + 4881: 14,4 + 5014: 46,3 + 5015: 46,2 + 5056: 40,7 + 5062: 43,7 + 5063: 42,7 + 5064: 41,7 + 5094: 29,10 + 5095: 29,11 + 5096: 29,12 + 5097: 27,14 + 5098: 28,14 + 5099: 29,14 + 5100: 30,14 + 5101: 30,15 + 5102: 31,15 + 5114: 29,13 + 10310: 32,32 + 10311: 29,32 + 10312: 28,32 + 10313: 28,31 + 10314: 28,30 + 10321: 29,28 + 10322: 29,29 + 10330: 29,21 + 10331: 29,22 + 10332: 29,23 + 10333: 29,24 + 10334: 29,25 + 10335: 29,26 + 10409: 31,32 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 196: 13,-24 + 204: -2,-39 + 338: 9,-54 + 407: 21,-54 + 441: 27,-50 + 755: -31,-55 + 808: -25,-35 + 1154: -29,-7 + 1304: -29,10 + 2049: -26,-40 + 2369: -16,-34 + 2677: -33,6 + 2784: -19,-47 + 2882: 9,-1 + 3022: -12,-3 + 4155: 33,-4 + 5249: 43,-28 + 5740: 34,-27 + 6511: 10,-62 + 9281: -15,-77 + 10283: 32,20 + 10305: 36,28 + 11012: -40,21 + 11391: -70,0 + 11779: -79,-18 + - node: + zIndex: 9 + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 7692: -47,-22 + - node: + color: '#DE3A3A5B' + id: QuarterTileOverlayGreyscale + decals: + 1592: -54,-35 + 1593: -55,-35 + 1594: -56,-35 + 1595: -57,-35 + 1596: -58,-35 + 1597: -59,-35 + 1598: -60,-35 + 1599: -61,-35 + 1945: -29,-52 + 1946: -28,-52 + 1947: -28,-51 + 1948: -28,-50 + 1949: -28,-49 + 1950: -29,-47 + 1951: -28,-47 + 1952: -27,-47 + 2025: -39,-42 + 2026: -38,-42 + 2027: -34,-42 + 2028: -33,-42 + 2041: -24,-46 + 2042: -24,-47 + 2043: -25,-42 + 2044: -24,-41 + 2045: -24,-40 + 2046: -24,-39 + 2061: -32,-40 + 2062: -32,-38 + 2097: -44,-43 + 2098: -43,-43 + 2099: -42,-43 + 2100: -41,-43 + 2214: -24,-42 + 2279: -46,-42 + 2280: -46,-43 + 2281: -47,-43 + 2282: -48,-43 + 2283: -49,-43 + 2284: -50,-43 + 2285: -49,-48 + 2286: -48,-48 + 2287: -47,-48 + 2288: -46,-48 + 2289: -45,-48 + 2290: -44,-48 + 2291: -43,-48 + 2292: -42,-48 + 2293: -42,-47 + 2294: -42,-46 + 2295: -42,-45 + 2337: -24,-38 + 2338: -23,-38 + 2339: -22,-38 + 2344: -21,-42 + 2345: -20,-42 + 2346: -18,-42 + 2347: -17,-42 + 2576: -34,1 + 2577: -35,1 + 2578: -35,0 + 2753: -22,-54 + 2754: -20,-54 + 2820: -24,-49 + 2821: -24,-48 + 3341: -27,-42 + 3342: -24,-51 + 3352: -30,-42 + 3353: -24,-45 + 3354: -32,-37 + 3355: -37,-42 + 4380: -5,-15 + 4381: -4,-15 + 4382: -3,-15 + 4383: -3,-14 + 4384: -3,-13 + 5446: 30,-20 + 5447: 30,-19 + 5448: 31,-19 + 8437: 39,-34 + 8438: 38,-34 + 8439: 37,-34 + 8496: 44,-35 + 8497: 45,-35 + 8498: 46,-35 + 8499: 47,-35 + 8500: 49,-35 + 8816: -10,-36 + 8817: -10,-37 + 8818: -10,-38 + 8819: -10,-39 + 8820: -10,-40 + 8821: -10,-41 + 8822: -10,-42 + 8823: -11,-42 + 8824: -15,-42 + 11971: -14,-42 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 719: -38,-37 + 727: -34,-50 + 728: -33,-50 + 1991: -32,-46 + 2134: -44,-34 + 2135: -41,-34 + 2136: -35,-34 + 2137: -32,-34 + 2242: -41,-37 + 2243: -43,-37 + 3329: -38,-34 + 4969: 36,-1 + 4973: 35,-2 + 6673: 13,-51 + 6674: 13,-52 + 6675: 13,-53 + 6676: 12,-53 + 6677: 11,-53 + 7812: -21,-26 + 7813: -20,-26 + 7814: -22,-24 + 8228: 27,-29 + 8229: 28,-29 + 8231: 29,-29 + 8232: 30,-29 + 8233: 31,-29 + 8234: 32,-29 + 8235: 33,-29 + 8392: 37,-38 + 8393: 38,-38 + 8440: 41,-34 + 8441: 41,-33 + 8442: 42,-33 + 8445: 43,-35 + 8447: 50,-37 + 8453: 42,-43 + 8454: 42,-44 + 8455: 41,-44 + 8456: 40,-44 + 8457: 39,-44 + 8491: 47,-39 + 8492: 46,-39 + 8493: 45,-39 + 8494: 44,-39 + 8495: 43,-39 + 8707: 37,-44 + - node: + zIndex: 9 + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 7409: -38,-19 + 7410: -39,-19 + 7411: -39,-20 + 7412: -40,-20 + 7413: -41,-20 + 7414: -42,-20 + 7415: -43,-20 + 7485: -28,-19 + 7486: -29,-19 + 7487: -30,-19 + 7488: -31,-19 + 7489: -32,-19 + 7490: -33,-19 + 7609: -46,-17 + 7610: -47,-17 + 7611: -48,-17 + 7612: -49,-17 + 7613: -50,-17 + 7614: -51,-17 + 7615: -51,-18 + 7616: -51,-20 + 7617: -51,-21 + 7618: -51,-23 + 7619: -51,-24 + 7620: -45,-20 + - node: + color: '#EFB3415B' + id: QuarterTileOverlayGreyscale + decals: + 4372: 5,-15 + 4373: 4,-15 + 6852: 11,-46 + 6853: 12,-45 + 6854: 12,-44 + 6855: 12,-42 + 6856: 11,-47 + 6858: 12,-46 + 6863: 15,-46 + 6871: 19,-39 + 6872: 17,-39 + 6873: 16,-39 + 6874: 15,-39 + 6875: 13,-39 + 6876: 12,-39 + 6877: 11,-39 + 6909: 11,-48 + 7889: -26,-5 + 7890: -26,-4 + 7891: -26,-6 + 7892: -27,-7 + 7893: -26,-7 + 7894: -27,-8 + 7895: -26,-10 + 7896: -26,-9 + - node: + color: '#EFB34160' + id: QuarterTileOverlayGreyscale + decals: + 882: -31,-6 + 1431: -53,3 + 1432: -54,3 + 1433: -55,3 + 1434: -56,3 + 1435: -57,3 + 1437: -58,4 + 1438: -59,4 + 1439: -60,4 + 1440: -61,4 + 1441: -62,4 + 1442: -63,4 + 1443: -64,4 + 1444: -65,4 + 1445: -65,3 + 1446: -65,2 + 1447: -65,1 + 1448: -65,0 + 1449: -65,-1 + 1450: -66,-1 + 1451: -66,-2 + 1452: -66,-3 + 1453: -66,-4 + 1454: -66,-5 + 1455: -66,-6 + 1520: -54,1 + 1521: -55,1 + 1522: -56,1 + 1523: -57,1 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 262: 21,-35 + 263: 22,-35 + 264: 22,-34 + 265: 23,-34 + 859: -32,-2 + 867: -35,-4 + 868: -34,-4 + 869: -33,-4 + 870: -32,-4 + 873: -31,-6 + 874: -30,-6 + 875: -35,-5 + 877: -34,-6 + 878: -34,-7 + 2513: -37,-4 + 5314: 32,-15 + 5317: 29,-16 + 5319: 29,-13 + 5320: 29,-12 + 5323: 34,-12 + 5349: 34,-15 + 5350: 35,-15 + 5351: 36,-15 + 5352: 38,-16 + 5353: 34,-17 + 5354: 34,-18 + 5355: 33,-19 + 5356: 33,-23 + 5370: 34,-24 + 5372: 39,-14 + 5373: 39,-13 + 5374: 40,-13 + 5375: 40,-12 + 5376: 40,-11 + 5377: 40,-10 + 5406: 38,-26 + 5407: 39,-26 + 5408: 40,-26 + 5409: 41,-26 + 5410: 42,-26 + 5411: 38,-27 + 5437: 27,-24 + 5438: 27,-23 + 5439: 28,-23 + 5440: 29,-23 + 5441: 30,-22 + 5473: 29,-15 + 5502: 27,-11 + 5551: 34,-22 + 5552: 34,-21 + 5685: 40,-16 + 5734: 39,-16 + 9314: -11,-66 + 9315: -12,-66 + 9436: -11,-65 + 9489: -17,-68 + 9490: -17,-67 + 9491: -16,-67 + 9492: -15,-67 + 9510: 18,27 + 9511: 19,27 + 9512: 19,26 + 9513: 19,25 + 9514: 19,24 + 9534: 21,26 + - node: + cleanable: True + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 5657: 34,-20 + 5676: 41,-21 + 5677: 42,-21 + 5678: 43,-21 + - node: + color: '#F9801D93' + id: QuarterTileOverlayGreyscale + decals: + 4710: 14,-34 + 4711: 14,-35 + 4712: 14,-36 + 4713: 14,-37 + 4714: 15,-35 + 4715: 16,-35 + 4716: 17,-35 + 5874: -3,2 + 5875: -2,2 + 5876: -1,2 + 5877: 1,2 + 5878: 2,2 + 5879: 3,2 + 5880: 4,2 + 5881: 5,2 + 5882: 5,3 + 6073: 18,-44 + 6074: 19,-44 + 6075: 18,-45 + 6076: 18,-46 + 6077: 18,-47 + 6078: 18,-48 + 6079: 17,-48 + 6080: 20,-44 + 6082: 21,-47 + 6141: 23,-44 + 6142: 24,-44 + 6143: 25,-44 + 6144: 26,-44 + 6161: 23,-48 + 6162: 24,-48 + 6163: 25,-48 + 6164: 26,-48 + 6202: 19,-51 + 6203: 19,-52 + 6204: 18,-52 + 6205: 17,-52 + 6206: 16,-52 + 6207: 16,-53 + 6263: 18,-54 + - node: + color: '#00000035' + id: QuarterTileOverlayGreyscale180 + decals: + 5731: 39,-16 + 11950: -14,-37 + 11951: -14,-36 + 11952: -14,-35 + 11953: -13,-36 + 11954: -13,-37 + - node: + color: '#00000042' + id: QuarterTileOverlayGreyscale180 + decals: + 3169: -45,-43 + 3217: -42,-44 + 3266: -24,-38 + 4071: -16,-20 + 4094: 4,-25 + 4831: 14,-37 + 4840: 22,-34 + 4943: 23,-3 + 5522: 23,-14 + 5585: 39,-13 + 5803: 22,-24 + 5804: 21,-25 + 5893: 5,3 + 5954: 6,4 + 5992: -10,5 + 6057: 38,-16 + 6098: 18,-44 + 6261: 16,-52 + 6435: 7,-44 + 6904: 11,-46 + 7044: 22,-31 + 7913: -27,-7 + 7914: -26,3 + 8606: 41,-33 + 8693: 42,-44 + 8711: 39,-45 + - node: + zIndex: 9 + color: '#00000042' + id: QuarterTileOverlayGreyscale180 + decals: + 7651: -51,-17 + 7781: -24,-25 + - node: + color: '#00000642' + id: QuarterTileOverlayGreyscale180 + decals: + 5623: 38,-26 + 5636: 27,-23 + - node: + color: '#169C9C93' + id: QuarterTileOverlayGreyscale180 + decals: + 6397: 8,-49 + 6398: 8,-48 + 6399: 8,-46 + 6400: 8,-45 + 6401: 8,-44 + 6403: 8,-51 + 6404: 8,-52 + 6405: 8,-53 + 6406: 7,-53 + 6407: 5,-53 + 6408: 4,-53 + 6475: 9,-56 + 6476: 9,-59 + 6477: 9,-60 + 6478: 9,-61 + 6479: 8,-61 + 6480: 7,-61 + 6481: 6,-61 + - node: + color: '#169C9CA1' + id: QuarterTileOverlayGreyscale180 + decals: + 12203: -8,-15 + 12204: -8,-16 + 12205: -8,-17 + 12206: -8,-18 + 12207: -8,-19 + 12208: -8,-20 + - node: + color: '#19191993' + id: QuarterTileOverlayGreyscale180 + decals: + 5819: 25,-25 + 5820: 24,-25 + 5821: 24,-26 + 5822: 24,-27 + 5823: 24,-28 + 5903: -9,2 + 5904: -10,2 + 5905: -11,2 + 5906: -13,2 + 5907: -14,2 + 5908: -15,2 + 5909: -16,2 + 5910: -18,2 + 5911: -19,2 + 5914: 13,2 + 5915: 12,2 + 5916: 10,2 + 5917: 9,2 + 5918: 8,2 + 5919: 7,2 + 5920: 7,1 + 5921: 6,1 + 5922: 6,0 + 5923: 5,0 + 5924: 5,-1 + 5925: 4,-1 + 5926: 3,-1 + 5927: 2,-1 + 7030: 21,-31 + 7032: 23,-32 + 7863: -24,-16 + 7864: -24,-15 + 7865: -24,-14 + 7866: -24,-13 + 7867: -24,-10 + 7868: -24,-9 + 7869: -24,-8 + 7870: -24,-7 + 7871: -24,-6 + 7872: -24,-5 + 7873: -24,-4 + 7932: -24,-19 + 7974: -17,-31 + 7975: -16,-31 + 8099: -28,16 + 8100: -27,16 + 8101: -26,16 + - node: + zIndex: 9 + color: '#19191993' + id: QuarterTileOverlayGreyscale180 + decals: + 7394: -17,2 + 7770: -19,-31 + 7772: -20,-27 + 7773: -20,-26 + - node: + color: '#28282893' + id: QuarterTileOverlayGreyscale180 + decals: + 5476: 26,-8 + 5477: 26,-9 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 3911: -15,-23 + 3912: -15,-24 + 3913: -15,-25 + 3948: -10,-20 + 4184: -3,-21 + 4185: -4,-21 + 4186: -5,-21 + 4187: -5,-21 + 4325: 3,-21 + 4326: 4,-21 + 4327: 5,-21 + 4328: 5,-20 + 4329: 5,-19 + 4330: 5,-18 + 4331: 5,-17 + 4567: 7,-17 + 4568: 8,-17 + 4569: 9,-17 + 4574: 9,-16 + 8423: 41,-41 + - node: + color: '#52B4E91C' + id: QuarterTileOverlayGreyscale180 + decals: + 3985: 5,-29 + 3986: 6,-29 + 3987: 6,-28 + 3988: 6,-27 + 3989: 6,-26 + 3990: 6,-25 + 4004: 4,-29 + 4212: -1,-17 + 4213: 0,-17 + 4214: 1,-17 + 4215: 1,-16 + 4216: 1,-15 + 4608: 3,-39 + 4609: 5,-39 + 4610: 5,-38 + 4611: 5,-36 + 4612: 5,-35 + 4613: 5,-37 + 4654: 7,-33 + 4655: 6,-33 + 4656: 4,-33 + 4657: 2,-33 + 4658: 1,-33 + 4659: 0,-33 + 4660: -1,-33 + 4661: -2,-33 + 4662: -3,-33 + 4663: -4,-33 + 4664: -5,-33 + 4665: -6,-33 + 4666: -7,-33 + 4667: -8,-33 + 5971: -5,3 + 5972: -5,4 + 5973: -5,5 + 5977: -8,5 + 7972: -14,-29 + 7973: -10,-30 + 7986: -12,-32 + 7987: -11,-33 + 8424: 37,-36 + 8425: 38,-36 + 8426: 39,-36 + 9172: 7,6 + 9173: 8,6 + 9175: 9,8 + 9176: 9,9 + 9177: 9,10 + - node: + color: '#52B4E95B' + id: QuarterTileOverlayGreyscale180 + decals: + 2548: -41,-4 + 2549: -41,-5 + 2550: -42,-5 + 2551: -43,-5 + 2552: -44,-5 + - node: + color: '#52B4E960' + id: QuarterTileOverlayGreyscale180 + decals: + 958: -42,-9 + 959: -42,-8 + 983: -44,8 + 984: -44,7 + 985: -44,6 + 1007: -47,-5 + 1008: -47,-4 + 1013: -49,-5 + 1014: -48,-5 + 1378: -29,-1 + 1380: -30,-1 + - node: + color: '#52B4E993' + id: QuarterTileOverlayGreyscale180 + decals: + 835: -32,6 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 298: 28,-35 + 299: 29,-35 + 825: -28,1 + 826: -28,2 + 828: -29,3 + 832: -29,1 + 833: -29,0 + 902: -38,2 + 903: -38,1 + 904: -38,3 + 905: -37,3 + 906: -36,3 + 907: -35,3 + 935: -44,-1 + 936: -45,-1 + 937: -46,-1 + 938: -47,-1 + 939: -48,-1 + 946: -46,2 + 947: -46,1 + 972: -38,-10 + 973: -38,-9 + 974: -38,-8 + 975: -38,-7 + 977: -38,-12 + 1142: -38,0 + 1487: -39,-10 + 2443: -31,4 + 2453: -31,6 + 2454: -30,6 + 2455: -30,7 + 2456: -30,8 + 2487: -33,7 + 2488: -34,7 + 2497: -42,-1 + 2498: -41,-1 + 2500: -40,-2 + 2518: -38,-3 + 2519: -38,-2 + 2520: -38,-1 + 2521: -38,-5 + 2598: -37,10 + 2600: -36,9 + 2601: -36,8 + 2602: -36,7 + 2603: -38,6 + 2604: -37,6 + 2605: -39,6 + 2606: -40,6 + 2645: -37,12 + 2646: -37,13 + 2647: -37,14 + 2648: -37,15 + 2649: -38,12 + 2650: -39,12 + 2651: -40,12 + 2652: -41,12 + 2709: -36,6 + 2728: -38,-13 + 4770: 28,-36 + 4773: 30,-35 + 5146: 34,13 + 5147: 34,12 + 7231: -26,10 + 7232: -26,11 + 7233: -26,12 + 8241: 27,-31 + 8242: 28,-31 + 8243: 31,-31 + 8244: 32,-31 + 8290: 30,-31 + - node: + color: '#9FED5893' + id: QuarterTileOverlayGreyscale180 + decals: + 1247: -34,-12 + 1248: -34,-14 + 1249: -34,-13 + 1250: -34,-15 + 1251: -35,-15 + 1252: -36,-15 + 1253: -35,-14 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 1225: -34,-10 + 1226: -34,-9 + 1230: -35,-10 + 2918: 16,-9 + 2919: 17,-9 + 2920: 20,-9 + 2921: 21,-8 + 2922: 21,-5 + 2923: 21,-3 + 2924: 21,-2 + 2925: 21,-1 + 2926: 21,0 + 2972: 14,2 + 2973: 15,2 + 2974: 16,2 + 2975: 17,2 + 2976: 18,2 + 2977: 19,2 + 2978: 20,2 + 2979: 21,2 + 2980: 22,2 + 2981: 23,2 + 2989: 23,-6 + 3572: 21,-9 + 3574: 21,-7 + 3575: 21,-6 + 3576: 21,-4 + 11932: -14,-38 + 11933: -12,-38 + 11934: -13,-38 + 11935: -13,-39 + 11936: -13,-40 + - node: + color: '#D381C95B' + id: QuarterTileOverlayGreyscale180 + decals: + 4425: 24,6 + 4426: 25,6 + 4429: 23,8 + 4430: 22,8 + 4431: 21,8 + 4432: 20,8 + 4500: 49,3 + 4501: 49,2 + 4502: 49,1 + 4503: 49,1 + 4504: 48,1 + 4505: 48,0 + 4506: 48,-1 + 4507: 48,-2 + 4508: 48,-3 + 4509: 47,-3 + 4510: 46,-3 + 4808: 29,-6 + 4809: 30,-6 + 4810: 31,-6 + 4811: 32,-6 + 4992: 43,1 + 5020: 50,-4 + 5021: 51,-4 + 5022: 52,-4 + 5023: 52,-3 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 4274: 30,6 + 4276: 30,5 + 4277: 30,7 + 4278: 30,8 + 4291: 36,1 + 4292: 35,1 + 4293: 34,1 + 4294: 31,1 + 4295: 29,1 + 4420: 25,10 + 4421: 25,9 + 4423: 26,8 + 4424: 26,7 + 4446: 34,7 + 4447: 35,7 + 4448: 36,7 + 4449: 37,6 + 4450: 38,6 + 4451: 37,7 + 4452: 37,8 + 4453: 37,9 + 4480: 44,7 + 4481: 44,6 + 4482: 43,6 + 4483: 43,5 + 4484: 42,5 + 4485: 41,5 + 4488: 40,6 + 4492: 30,4 + 4493: 30,3 + 4800: 32,-3 + 4801: 31,-3 + 4802: 30,-3 + 4803: 30,-4 + 4804: 30,-5 + 4860: 26,-7 + 4861: 26,-6 + 4862: 26,-5 + 4863: 26,-4 + 4864: 26,-3 + 4865: 27,-3 + 4866: 27,-2 + 4867: 27,-1 + 4868: 26,0 + 4870: 26,2 + 4872: 25,4 + 5103: 31,15 + 5104: 31,14 + 5105: 31,13 + 5106: 30,13 + 5107: 30,12 + 5108: 30,11 + 5109: 30,10 + 5110: 27,14 + 5115: 28,14 + 5186: 18,8 + 10245: 29,17 + 10246: 30,17 + 10247: 31,17 + 10315: 32,32 + 10316: 32,31 + 10317: 32,30 + 10318: 31,30 + 10319: 31,29 + 10320: 31,28 + 10323: 28,30 + 10324: 31,26 + 10325: 31,25 + 10326: 31,24 + 10327: 31,23 + 10328: 31,22 + 10329: 31,21 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 121: -10,-26 + 137: -2,-14 + 146: 2,-16 + 147: 1,-14 + 163: 1,-25 + 164: 1,-26 + 165: 1,-27 + 166: 1,-28 + 180: 3,-24 + 314: 6,-43 + 401: 15,-51 + 459: 17,-43 + 753: -36,-50 + 1146: -49,3 + 1301: -35,14 + 2047: -29,-38 + 2368: -18,-33 + 2633: -41,10 + 2785: -20,-46 + 3021: -14,0 + 3830: -8,-27 + 3831: -7,-27 + 3832: -6,-27 + 3833: -5,-27 + 3834: -4,-27 + 3835: -3,-27 + 3836: -3,-26 + 3837: -3,-25 + 3838: -3,-24 + 4104: 20,11 + 4146: 1,-23 + 4630: -6,-35 + 5217: 29,-18 + 5228: 34,-10 + 5267: 35,-25 + 8538: 45,-31 + 9140: -2,6 + 9410: 17,18 + 10289: 27,33 + 10303: 34,29 + 11014: -43,24 + 11134: -52,21 + 11280: -54,11 + 11781: -80,-16 + - node: + zIndex: 9 + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 7693: -50,-19 + 7747: -65,-18 + - node: + color: '#DE3A3A5B' + id: QuarterTileOverlayGreyscale180 + decals: + 1585: -54,-36 + 1586: -55,-36 + 1587: -57,-36 + 1588: -58,-36 + 1589: -59,-36 + 1590: -60,-36 + 1591: -61,-36 + 1953: -27,-47 + 1954: -27,-48 + 1955: -27,-49 + 1956: -29,-48 + 1957: -27,-50 + 1958: -27,-51 + 1959: -27,-52 + 1960: -27,-53 + 1961: -28,-53 + 1962: -29,-53 + 1993: -31,-46 + 1994: -31,-48 + 1995: -32,-48 + 1996: -35,-48 + 1997: -36,-48 + 1998: -37,-48 + 1999: -38,-48 + 2000: -38,-49 + 2022: -33,-44 + 2023: -34,-44 + 2024: -38,-44 + 2040: -25,-44 + 2059: -31,-38 + 2060: -31,-40 + 2083: -33,-35 + 2084: -34,-35 + 2085: -35,-35 + 2086: -36,-35 + 2087: -37,-35 + 2088: -41,-35 + 2089: -43,-35 + 2090: -44,-35 + 2091: -45,-36 + 2092: -45,-37 + 2093: -45,-38 + 2094: -45,-39 + 2095: -45,-40 + 2096: -45,-42 + 2296: -43,-44 + 2297: -44,-44 + 2298: -45,-44 + 2299: -46,-44 + 2300: -47,-44 + 2301: -48,-44 + 2302: -49,-44 + 2303: -50,-44 + 2304: -50,-45 + 2305: -50,-46 + 2306: -50,-47 + 2340: -22,-38 + 2341: -22,-39 + 2342: -22,-40 + 2343: -22,-41 + 2573: -35,0 + 2574: -34,0 + 2575: -34,1 + 2755: -20,-54 + 2756: -20,-55 + 2757: -20,-56 + 2758: -22,-57 + 2759: -23,-57 + 2809: -17,-44 + 2810: -18,-44 + 2811: -19,-44 + 2812: -20,-44 + 2813: -21,-44 + 2814: -22,-44 + 2815: -22,-45 + 2816: -22,-47 + 2817: -22,-48 + 2818: -22,-49 + 2819: -24,-49 + 3340: -27,-44 + 3343: -23,-51 + 3344: -21,-57 + 3345: -30,-44 + 3346: -35,-44 + 3347: -37,-44 + 3348: -31,-37 + 3349: -40,-35 + 3350: -38,-35 + 3351: -45,-35 + 3391: -20,-57 + 5449: 30,-20 + 5450: 31,-19 + 8398: 39,-41 + 8399: 39,-40 + 8501: 49,-35 + 8825: -15,-44 + 8826: -13,-44 + 8827: -12,-44 + 8828: -11,-44 + 8829: -10,-44 + 8830: -9,-44 + 8831: -8,-43 + 8832: -8,-42 + 8833: -8,-41 + 8834: -8,-40 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 713: -38,-40 + 714: -35,-40 + 715: -34,-39 + 730: -31,-52 + 2101: -41,-44 + 2116: -31,-34 + 2118: -31,-33 + 2125: -46,-33 + 2126: -43,-33 + 2127: -40,-33 + 2128: -37,-33 + 2129: -34,-33 + 2238: -41,-40 + 2239: -41,-39 + 2240: -41,-38 + 2241: -41,-37 + 7807: -23,-20 + 7808: -23,-22 + 7809: -23,-23 + 7810: -22,-24 + 7811: -22,-25 + 7944: -24,-12 + 7945: -24,-11 + 8236: 35,-30 + 8237: 35,-31 + 8238: 35,-32 + 8239: 35,-33 + 8294: 35,-36 + 8295: 35,-37 + 8296: 35,-38 + 8396: 38,-42 + 8443: 42,-33 + 8444: 42,-34 + 8446: 49,-36 + 8448: 50,-37 + 8449: 50,-38 + 8450: 50,-39 + 8451: 49,-39 + 8452: 49,-40 + 8486: 43,-37 + 8487: 44,-37 + 8488: 45,-37 + 8489: 46,-37 + 8490: 47,-37 + 8702: 44,-45 + 8703: 43,-45 + 8704: 42,-45 + 8705: 38,-45 + 8706: 37,-45 + - node: + zIndex: 9 + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 7416: -43,-22 + 7417: -42,-22 + 7418: -41,-22 + 7419: -40,-22 + 7420: -39,-22 + 7421: -39,-21 + 7422: -38,-21 + 7476: -36,-21 + 7477: -35,-21 + 7478: -34,-21 + 7479: -33,-21 + 7480: -32,-21 + 7481: -31,-21 + 7482: -30,-21 + 7483: -29,-21 + 7484: -28,-21 + 7599: -46,-17 + 7600: -46,-19 + 7601: -46,-22 + 7602: -46,-23 + 7603: -46,-24 + 7604: -45,-22 + 7605: -47,-24 + 7606: -48,-24 + 7607: -50,-24 + 7608: -51,-24 + 7710: -46,-18 + 7736: -64,-19 + 7737: -64,-20 + 7738: -64,-21 + 7739: -64,-22 + - node: + color: '#EFB3415B' + id: QuarterTileOverlayGreyscale180 + decals: + 4374: 3,-14 + 4375: 3,-13 + 6848: 8,-41 + 6849: 9,-41 + 6850: 10,-41 + 6851: 11,-41 + 6859: 14,-44 + 6860: 14,-45 + 6861: 15,-46 + 6862: 15,-47 + 6864: 14,-42 + 6865: 14,-41 + 6866: 15,-41 + 6867: 16,-41 + 6868: 17,-41 + 6869: 18,-41 + 6870: 19,-41 + 6878: 10,-38 + 6879: 10,-37 + 6880: 10,-36 + 6908: 15,-48 + 6982: 11,-33 + 6983: 11,-32 + 6984: 12,-32 + 6985: 13,-32 + 6986: 15,-32 + 6987: 17,-31 + 6988: 19,-31 + 6989: 20,-31 + 7016: 10,-33 + 7897: -27,-8 + - node: + color: '#EFB34160' + id: QuarterTileOverlayGreyscale180 + decals: + 1430: -53,3 + 1436: -58,4 + 1456: -66,-6 + 1457: -65,-6 + 1458: -64,-6 + 1459: -63,-6 + 1460: -62,-6 + 1461: -61,-6 + 1462: -60,-6 + 1463: -59,-6 + 1464: -58,-6 + 1465: -57,-6 + 1466: -57,-5 + 1467: -57,-4 + 1468: -57,-3 + 1469: -57,-2 + 1470: -57,-1 + 1471: -57,0 + 1472: -56,0 + 1473: -55,0 + 1474: -54,0 + 1475: -53,0 + 1476: -53,1 + 1477: -53,2 + 1516: -54,2 + 1517: -55,2 + 1518: -56,2 + 1519: -57,2 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 266: 23,-34 + 267: 23,-35 + 268: 23,-36 + 860: -32,-2 + 861: -31,-2 + 862: -30,-2 + 871: -32,-4 + 872: -32,-5 + 876: -35,-5 + 879: -34,-7 + 880: -33,-7 + 881: -32,-7 + 2514: -37,-4 + 2515: -37,-5 + 5310: 32,-12 + 5311: 31,-13 + 5312: 31,-14 + 5313: 32,-16 + 5315: 31,-16 + 5316: 30,-16 + 5318: 29,-16 + 5357: 40,-17 + 5358: 40,-18 + 5359: 40,-20 + 5360: 43,-23 + 5361: 42,-23 + 5362: 41,-23 + 5363: 39,-23 + 5364: 39,-24 + 5365: 38,-24 + 5366: 37,-24 + 5367: 36,-24 + 5368: 35,-24 + 5369: 34,-24 + 5371: 40,-14 + 5397: 42,-13 + 5398: 43,-13 + 5399: 44,-13 + 5400: 45,-13 + 5401: 42,-27 + 5402: 41,-27 + 5403: 40,-27 + 5404: 39,-27 + 5405: 38,-27 + 5433: 31,-23 + 5434: 30,-25 + 5435: 29,-25 + 5436: 28,-25 + 5493: 26,-16 + 5494: 26,-17 + 5495: 27,-16 + 5496: 27,-15 + 5497: 27,-14 + 5498: 27,-13 + 5499: 27,-12 + 5500: 27,-11 + 5501: 26,-10 + 5687: 40,-16 + 5689: 40,-19 + 5787: 25,-24 + 5788: 25,-23 + 5789: 25,-22 + 5790: 25,-21 + 5791: 25,-20 + 5792: 26,-20 + 5793: 26,-19 + 6782: 43,-22 + 8516: 44,-41 + 8517: 45,-41 + 8518: 46,-41 + 8519: 47,-41 + 8520: 49,-41 + 8521: 49,-44 + 8522: 48,-44 + 8523: 47,-44 + 8524: 46,-44 + 8525: 44,-43 + 9296: -18,-77 + 9297: -19,-77 + 9298: -17,-76 + 9299: -16,-76 + 9300: -16,-75 + 9301: -16,-74 + 9302: -16,-73 + 9303: -16,-72 + 9304: -16,-71 + 9305: -16,-70 + 9306: -16,-69 + 9307: -16,-68 + 9308: -10,-68 + 9309: -9,-68 + 9310: -9,-67 + 9311: -9,-66 + 9445: -15,-68 + 9446: -14,-68 + 9447: -13,-68 + 9448: -12,-68 + 9449: -11,-68 + 9515: 18,22 + 9516: 19,22 + 9535: 21,26 + 9536: 21,25 + 9537: 21,24 + 9538: 21,23 + 9539: 21,22 + - node: + cleanable: True + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 5680: 43,-21 + 5682: 40,-23 + - node: + color: '#F9801D93' + id: QuarterTileOverlayGreyscale180 + decals: + 4717: 15,-36 + 4718: 16,-36 + 4719: 17,-36 + 4720: 18,-37 + 4721: 18,-36 + 4722: 18,-34 + 4723: 18,-33 + 4833: 18,-35 + 6081: 20,-46 + 6083: 21,-47 + 6084: 21,-49 + 6145: 26,-44 + 6146: 26,-45 + 6165: 26,-48 + 6166: 26,-49 + 6177: 25,-49 + 6178: 24,-49 + 6179: 24,-50 + 6208: 16,-53 + 6209: 17,-53 + 6210: 20,-53 + 6211: 20,-52 + 6212: 20,-51 + 6213: 19,-53 + 6262: 19,-54 + 7930: -24,-18 + 7980: -15,-32 + 7981: -14,-32 + 7982: -13,-32 + 8796: -8,-36 + 8797: -8,-38 + 8798: -8,-39 + - node: + color: '#00000035' + id: QuarterTileOverlayGreyscale270 + decals: + 5732: 39,-16 + 11948: -13.487579,-37.52273 + 11966: -13,-38 + 11967: -13,-39 + 11968: -13,-40 + - node: + color: '#00000042' + id: QuarterTileOverlayGreyscale270 + decals: + 3170: -41,-44 + 3267: -22,-38 + 3318: -20,-54 + 4070: -10,-20 + 4093: 6,-25 + 4832: 18,-37 + 4841: 23,-34 + 4903: 25,4 + 4904: 27,-1 + 5503: 27,-11 + 5560: 39,-23 + 5584: 40,-13 + 5991: -8,5 + 6100: 21,-47 + 6147: 26,-44 + 6189: 26,-48 + 6434: 8,-44 + 6905: 15,-46 + 7043: 23,-31 + 8000: -14,-29 + 8003: -10,-30 + 8139: -23,18 + 8605: 42,-33 + 8607: 49,-35 + 8610: 50,-37 + 8615: 42,-44 + 8710: 42,-45 + - node: + zIndex: 9 + color: '#00000042' + id: QuarterTileOverlayGreyscale270 + decals: + 7650: -46,-17 + 7795: -19,-28 + 7796: -20,-26 + 7797: -22,-24 + 7803: -23,-20 + - node: + color: '#00000642' + id: QuarterTileOverlayGreyscale270 + decals: + 5705: 40,-16 + 5706: 43,-21 + 9547: 21,26 + - node: + color: '#169C9C7F' + id: QuarterTileOverlayGreyscale270 + decals: + 12195: -11,-15 + - node: + color: '#169C9CA1' + id: QuarterTileOverlayGreyscale270 + decals: + 12198: -11,-17 + - node: + color: '#19191993' + id: QuarterTileOverlayGreyscale270 + decals: + 5894: -2,-1 + 5895: -3,-1 + 5896: -4,-1 + 5897: -5,-1 + 5898: -5,0 + 5899: -6,0 + 5900: -6,1 + 5901: -7,1 + 5902: -8,1 + 7031: 22,-32 + 7033: 24,-31 + 8066: -23,2 + 8067: -22,2 + 8068: -21,2 + 8896: -24,-26 + 8897: -24,-27 + - node: + zIndex: 9 + color: '#19191993' + id: QuarterTileOverlayGreyscale270 + decals: + 7755: -26,-18 + 7756: -26,-20 + 7757: -25,-22 + 7758: -25,-23 + 7759: -25,-24 + 7760: -25,-25 + 7761: -24,-25 + 7762: -23,-27 + 7763: -23,-28 + 7764: -22,-28 + 7765: -22,-29 + 7766: -21,-29 + 7767: -21,-30 + 7768: -20,-30 + 7769: -20,-31 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 3818: -3,-26 + 3819: -3,-25 + 3820: -3,-24 + 3980: 6,-29 + 3981: 5,-29 + 3982: 4,-28 + 3983: 4,-27 + 3984: 4,-26 + 4003: 4,-29 + 4007: 4,-25 + 4220: -1,-15 + 4221: -1,-16 + 4222: -1,-17 + 4223: 0,-17 + 4224: 1,-17 + 4599: 5,-39 + 4600: 3,-39 + 4601: 3,-38 + 4602: 3,-37 + 4603: 3,-36 + 4640: 2,-33 + 4641: 4,-33 + 4642: 1,-33 + 4643: 0,-33 + 4644: -1,-33 + 4645: -2,-33 + 4646: -3,-33 + 4647: -4,-33 + 4648: -5,-33 + 4649: -6,-33 + 4650: -7,-33 + 4651: 6,-33 + 4652: 7,-33 + 4653: 8,-33 + 4704: 3,-35 + 5824: 23,-19 + 5825: 23,-20 + 5826: 23,-21 + 5827: 23,-22 + 5828: 23,-23 + 5829: 22,-24 + 5830: 21,-25 + 5831: 21,-26 + 5832: 21,-27 + 5963: -6,5 + 5968: -10,5 + 6954: 8,-36 + 6955: 8,-37 + 6956: 8,-38 + 6990: 10,-30 + 7983: -11,-32 + 7984: -11,-33 + 7985: -10,-33 + 8415: 37,-36 + 8416: 38,-36 + 8417: 39,-36 + 9162: 6,6 + 9163: 6,7 + 9164: 8,6 + 9165: 9,6 + - node: + color: '#52B4E91C' + id: QuarterTileOverlayGreyscale270 + decals: + 4199: -3,-21 + 4200: -4,-21 + 4201: -5,-21 + 4202: -5,-20 + 4203: -5,-19 + 4204: -5,-18 + 4205: -5,-17 + 4332: 3,-21 + 4333: 4,-21 + 4334: 5,-21 + 4570: 7,-17 + 4571: 8,-17 + 4572: 9,-17 + 8427: 41,-36 + 8428: 41,-37 + 8429: 41,-38 + 8430: 41,-39 + 8431: 41,-40 + 8432: 41,-41 + 8433: 42,-41 + - node: + color: '#52B4E91D' + id: QuarterTileOverlayGreyscale270 + decals: + 3930: -11,-25 + 3931: -11,-24 + 3932: -11,-23 + 3941: -16,-20 + - node: + color: '#52B4E947' + id: QuarterTileOverlayGreyscale270 + decals: + 842: -32,-1 + 843: -32,0 + 844: -32,1 + 845: -32,2 + 846: -32,3 + 847: -32,4 + 848: -32,6 + 849: -32,7 + 857: -28,1 + - node: + color: '#52B4E95B' + id: QuarterTileOverlayGreyscale270 + decals: + 2447: -31,6 + 2448: -30,6 + 2493: -33,7 + 2494: -34,7 + 2496: -34,8 + 2502: -42,-1 + 2503: -41,-1 + 2504: -40,-1 + 2505: -40,-2 + 2506: -39,-2 + 2507: -39,-3 + 2608: -40,7 + 2609: -40,8 + 2610: -40,9 + 2611: -40,6 + 2612: -39,6 + 2613: -38,6 + 2614: -37,6 + 2621: -38,10 + 2669: -40,15 + 2670: -41,14 + 2671: -41,13 + 2672: -41,12 + 2673: -40,12 + 2674: -39,12 + 2675: -38,12 + 2676: -37,12 + 2700: -40,4 + 2711: -36,6 + - node: + color: '#52B4E960' + id: QuarterTileOverlayGreyscale270 + decals: + 900: -39,-5 + 901: -39,-4 + 917: -40,1 + 918: -40,2 + 919: -40,3 + 927: -48,2 + 928: -48,1 + 929: -48,0 + 930: -48,-1 + 931: -47,-1 + 932: -46,-1 + 933: -45,-1 + 934: -44,-1 + 966: -38,-10 + 1017: -35,3 + 1018: -36,3 + 1019: -37,3 + 1492: -39,-10 + 1494: -39,-9 + 1496: -39,-8 + 1498: -39,-7 + - node: + color: '#52B4E993' + id: QuarterTileOverlayGreyscale270 + decals: + 989: -47,5 + 990: -47,6 + 991: -47,7 + 992: -47,8 + 1002: -49,-4 + 1003: -49,-5 + 1004: -48,-5 + 1005: -47,-5 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 950: -46,-9 + 951: -46,-8 + 971: -38,-10 + 2543: -41,-5 + 2544: -42,-5 + 2545: -43,-5 + 2546: -44,-5 + 2547: -44,-4 + 2943: 20,-9 + 2944: 17,-9 + 2945: 16,-9 + 2946: 16,-7 + 2947: 16,-6 + 2948: 16,-5 + 2949: 16,-4 + 2950: 16,-3 + 2951: 16,-2 + 2952: 16,-1 + 2953: 16,0 + 2954: 23,-6 + 2955: 23,-5 + 2956: 23,-4 + 2957: 23,-3 + 2959: 24,-2 + 2960: 24,-1 + 2961: 24,2 + 2962: 23,2 + 2963: 22,2 + 2964: 21,2 + 2965: 20,2 + 2966: 19,2 + 2967: 18,2 + 2968: 17,2 + 2969: 16,2 + 2970: 15,2 + 2971: 14,2 + 2997: 24,-12 + 2998: 24,-11 + 2999: 24,-10 + 3000: 24,-9 + 3001: 24,-8 + 3002: 24,-7 + 3003: 24,-6 + 3596: 16,-8 + 3597: 21,-9 + 4850: 24,0 + 7898: -26,-3 + 7899: -26,-2 + 7900: -26,-1 + 7901: -26,3 + 7903: -25,4 + 8458: 41,-33 + 8471: 50,-39 + 8472: 42,-43 + 8481: 43,-37 + 8482: 44,-37 + 8483: 45,-37 + 8484: 46,-37 + 8485: 47,-37 + 8696: 37,-44 + 8697: 37,-45 + 8698: 38,-45 + 8699: 39,-45 + 8700: 43,-45 + 8701: 44,-45 + - node: + zIndex: 9 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 7397: -39,-19 + 7402: -43,-22 + 7403: -42,-22 + 7404: -41,-22 + 7405: -40,-22 + 7406: -39,-22 + 7407: -38,-21 + 7467: -28,-21 + 7468: -29,-21 + 7469: -30,-21 + 7470: -31,-21 + 7471: -32,-21 + 7472: -33,-21 + 7473: -34,-21 + 7474: -35,-21 + 7475: -36,-21 + 7586: -51,-17 + 7587: -51,-18 + 7588: -51,-20 + 7589: -51,-21 + 7590: -51,-23 + 7591: -51,-24 + 7592: -50,-24 + 7593: -48,-24 + 7594: -47,-24 + 7595: -46,-24 + 7598: -45,-22 + - node: + color: '#80C71F72' + id: QuarterTileOverlayGreyscale270 + decals: + 11937: -14,-35 + 11938: -14,-36 + 11939: -14,-37 + 11940: -14,-38 + 11941: -12,-38 + - node: + color: '#9FED5860' + id: QuarterTileOverlayGreyscale270 + decals: + 1231: -34,-10 + 1232: -35,-10 + 1233: -35,-9 + 1241: -34,-15 + 1242: -35,-15 + 1243: -36,-15 + - node: + color: '#9FED5893' + id: QuarterTileOverlayGreyscale270 + decals: + 1254: -36,-13 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 274: 22,-34 + 5305: 29,-12 + 5306: 29,-13 + 5307: 30,-16 + 5308: 31,-16 + 5309: 32,-16 + 5321: 29,-16 + 5324: 34,-12 + 5335: 43,-23 + 5336: 42,-23 + 5337: 41,-23 + 5338: 39,-24 + 5339: 38,-24 + 5340: 37,-24 + 5341: 36,-24 + 5342: 35,-24 + 5343: 34,-24 + 5344: 33,-23 + 5345: 33,-19 + 5346: 34,-18 + 5347: 34,-17 + 5348: 34,-16 + 5379: 39,-14 + 5380: 39,-13 + 5381: 40,-12 + 5382: 40,-11 + 5383: 40,-10 + 5385: 42,-13 + 5386: 43,-13 + 5387: 44,-13 + 5388: 45,-13 + 5412: 42,-27 + 5413: 41,-27 + 5414: 40,-27 + 5415: 39,-27 + 5416: 38,-27 + 5417: 38,-26 + 5425: 30,-25 + 5426: 29,-25 + 5427: 28,-25 + 5428: 27,-24 + 5429: 27,-23 + 5474: 29,-15 + 5492: 27,-16 + 5553: 34,-21 + 5554: 34,-22 + 5782: 26,-20 + 8507: 45,-41 + 8508: 46,-41 + 8509: 47,-41 + 8510: 49,-41 + 8511: 49,-44 + 8512: 48,-44 + 8513: 47,-44 + 8514: 46,-44 + 9503: 19,26 + 9504: 19,25 + 9505: 19,24 + 9506: 18,22 + 9507: 19,22 + 9545: 21,22 + - node: + cleanable: True + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 5658: 34,-20 + 5683: 40,-23 + - node: + color: '#D381C95B' + id: QuarterTileOverlayGreyscale270 + decals: + 4302: 29,8 + 4303: 28,7 + 4304: 29,6 + 4305: 29,5 + 4306: 29,4 + 4307: 29,2 + 4308: 29,1 + 4310: 31,1 + 4311: 34,1 + 4312: 35,1 + 4313: 36,1 + 4457: 34,10 + 4458: 34,9 + 4459: 34,8 + 4460: 34,7 + 4461: 35,7 + 4462: 36,7 + 4463: 37,6 + 4464: 38,6 + 4470: 41,5 + 4471: 42,5 + 4472: 43,5 + 4474: 44,6 + 4477: 40,6 + 4478: 41,6 + 4496: 46,3 + 4821: 31,-3 + 4822: 32,-3 + 4902: 27,-3 + 4978: 41,1 + 5057: 40,7 + 5083: 31,13 + 5084: 30,15 + 5088: 27,14 + 5089: 28,14 + 5090: 29,13 + 5091: 29,12 + 5092: 29,11 + 5093: 29,10 + 5116: 29,14 + 10248: 29,17 + 10249: 30,17 + 10250: 31,17 + 10349: 29,21 + 10350: 29,22 + 10351: 29,23 + 10352: 29,24 + 10353: 29,25 + 10354: 29,26 + 10355: 29,28 + 10356: 29,29 + 10357: 29,30 + 10358: 28,30 + 10359: 28,31 + 10360: 28,32 + 10361: 32,30 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 291: 27,-33 + 292: 27,-34 + 293: 27,-35 + 297: 29,-35 + 4407: 24,6 + 4408: 24,7 + 4409: 24,8 + 4410: 23,8 + 4411: 22,8 + 4412: 21,8 + 4413: 20,8 + 4419: 25,6 + 4768: 27,-36 + 4772: 30,-35 + 4791: 29,-6 + 4792: 29,-5 + 4793: 29,-4 + 4794: 29,-3 + 4795: 29,-2 + 4805: 30,-6 + 4806: 32,-6 + 4807: 31,-6 + 4998: 46,-3 + 4999: 47,-3 + 5000: 48,-3 + 5001: 50,-3 + 5002: 50,-4 + 5003: 51,-4 + 5004: 52,-4 + 5016: 46,1 + 5017: 46,0 + 5018: 46,-1 + 5019: 46,-2 + 8249: 33,-36 + 8250: 33,-35 + 8251: 33,-33 + 8252: 33,-32 + 8253: 33,-31 + 8254: 32,-31 + 8255: 31,-31 + 8256: 28,-31 + 8257: 27,-31 + 8260: 29,-31 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 120: -16,-26 + 138: -1,-14 + 148: 2,-14 + 160: -1,-28 + 161: -1,-26 + 162: -1,-25 + 206: -2,-35 + 315: 9,-43 + 442: 27,-47 + 476: 27,-43 + 723: -34,-37 + 752: -31,-50 + 767: -26,-46 + 1053: -45,3 + 1065: -43,9 + 1145: -45,3 + 1166: -28,4 + 1302: -30,14 + 1305: -29,12 + 1620: -54,-38 + 2048: -26,-38 + 2307: -39,-51 + 2786: -19,-46 + 3020: -12,0 + 3049: -7,-12 + 4032: -1,-27 + 4113: 26,11 + 4147: -1,-23 + 4154: 33,-5 + 8644: 43,-32 + 9409: 19,18 + 10288: 33,33 + 10304: 36,29 + 10848: -13,20 + 11013: -40,24 + 11161: -45,18 + 11923: -12,-35 + - node: + zIndex: 9 + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 7691: -47,-19 + - node: + color: '#DE3A3A5B' + id: QuarterTileOverlayGreyscale270 + decals: + 2235: -41,-40 + 2236: -43,-37 + 4974: 35,-2 + 6680: 13,-52 + 6681: 13,-51 + 8397: 38,-42 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 717: -35,-40 + 718: -38,-40 + 1608: -54,-36 + 1609: -55,-36 + 1610: -57,-36 + 1611: -58,-36 + 1612: -59,-36 + 1613: -60,-36 + 1614: -61,-36 + 1963: -29,-53 + 1964: -28,-53 + 1965: -27,-53 + 1966: -28,-51 + 1967: -28,-50 + 1968: -28,-49 + 1969: -28,-48 + 1970: -29,-48 + 1990: -40,-46 + 1992: -40,-49 + 2001: -31,-48 + 2002: -32,-48 + 2003: -35,-48 + 2004: -36,-48 + 2005: -37,-48 + 2019: -33,-44 + 2020: -34,-44 + 2021: -38,-44 + 2033: -24,-41 + 2034: -24,-40 + 2035: -24,-39 + 2036: -25,-44 + 2037: -24,-44 + 2038: -24,-46 + 2039: -24,-47 + 2057: -32,-40 + 2058: -32,-38 + 2078: -33,-35 + 2079: -34,-35 + 2080: -35,-35 + 2081: -36,-35 + 2082: -37,-35 + 2113: -44,-35 + 2114: -43,-35 + 2115: -41,-35 + 2252: -46,-42 + 2268: -42,-47 + 2269: -42,-46 + 2270: -42,-45 + 2271: -42,-44 + 2272: -43,-44 + 2273: -44,-44 + 2274: -45,-44 + 2275: -46,-44 + 2276: -47,-44 + 2277: -48,-44 + 2278: -49,-44 + 2325: -24,-38 + 2569: -34,0 + 2570: -35,0 + 2571: -35,1 + 2751: -22,-57 + 2752: -23,-57 + 2797: -24,-48 + 2798: -24,-49 + 2799: -22,-49 + 2804: -21,-44 + 2805: -20,-44 + 2806: -19,-44 + 2807: -17,-44 + 2808: -18,-44 + 3326: -40,-35 + 3327: -38,-35 + 3330: -32,-37 + 3333: -37,-44 + 3334: -35,-44 + 3335: -30,-44 + 3337: -27,-44 + 3338: -24,-51 + 3357: -21,-57 + 3358: -24,-45 + 3389: -20,-57 + 4376: -3,-13 + 4377: -3,-14 + 5444: 30,-19 + 5445: 30,-20 + 8799: -10,-36 + 8800: -10,-37 + 8801: -10,-38 + 8802: -10,-39 + 8803: -10,-40 + 8804: -10,-41 + 8807: -15,-44 + 8808: -13,-44 + 8809: -12,-44 + 8810: -11,-44 + 8811: -10,-44 + 8812: -9,-44 + - node: + color: '#EFB3245B' + id: QuarterTileOverlayGreyscale270 + decals: + 2511: -37,-5 + - node: + color: '#EFB34160' + id: QuarterTileOverlayGreyscale270 + decals: + 863: -32,-2 + 864: -31,-2 + 865: -30,-2 + 891: -35,-4 + 892: -35,-5 + 893: -34,-5 + 894: -34,-6 + 895: -34,-7 + 896: -33,-7 + 897: -32,-7 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 1396: -65,4 + 1397: -65,3 + 1398: -65,2 + 1399: -65,1 + 1400: -65,0 + 1402: -66,-1 + 1403: -66,-2 + 1404: -66,-3 + 1405: -66,-4 + 1406: -66,-5 + 1407: -66,-6 + 1408: -65,-6 + 1409: -64,-6 + 1410: -63,-6 + 1411: -62,-6 + 1412: -61,-6 + 1413: -60,-6 + 1414: -59,-6 + 1415: -58,-6 + 1416: -57,-6 + 1423: -56,0 + 1424: -55,0 + 1425: -54,0 + 1426: -53,0 + 4724: 14,-34 + 4725: 14,-35 + 4726: 14,-36 + 4727: 14,-37 + 4728: 15,-36 + 4729: 16,-36 + 4730: 17,-36 + 5866: 5,3 + 6092: 21,-49 + 6093: 18,-47 + 6094: 18,-46 + 6095: 18,-45 + 6096: 18,-44 + 6172: 26,-49 + 6173: 25,-49 + 6217: 19,-51 + 6218: 16,-53 + 6219: 17,-53 + 6220: 18,-53 + 6221: 20,-53 + 6222: 16,-52 + 6265: 18,-54 + 6348: 15,-41 + 6349: 16,-41 + 6350: 17,-41 + 6351: 18,-41 + 6352: 19,-41 + 6386: 7,-49 + 6387: 7,-48 + 6388: 7,-47 + 6389: 7,-46 + 6390: 7,-44 + 6420: 8,-53 + 6421: 7,-53 + 6422: 5,-53 + 6423: 4,-53 + 6437: 7,-45 + 6471: 9,-61 + 6472: 8,-61 + 6473: 7,-61 + 6474: 6,-61 + 6838: 11,-47 + 6839: 11,-46 + 6840: 12,-45 + 6841: 12,-44 + 6842: 12,-42 + 6843: 12,-41 + 6844: 11,-41 + 6845: 10,-41 + 6846: 9,-41 + 6847: 8,-41 + 6906: 11,-48 + 6973: 11,-33 + 6975: 12,-32 + 6976: 13,-32 + 6977: 15,-32 + 6979: 17,-31 + 6980: 19,-31 + 6981: 20,-31 + 7881: -26,-9 + 7882: -26,-8 + 7883: -27,-8 + 7884: -27,-7 + 7886: -26,-6 + 7887: -26,-5 + 7888: -26,-4 + 7977: -14,-32 + 7978: -13,-32 + 7979: -12,-32 + - node: + color: '#F9801D8E' + id: QuarterTileOverlayGreyscale270 + decals: + 9325: -19,-77 + 9326: -18,-77 + 9327: -17,-76 + 9328: -16,-76 + 9335: -10,-68 + 9336: -9,-68 + - node: + color: '#F9801D93' + id: QuarterTileOverlayGreyscale270 + decals: + 9437: -11,-65 + 9440: -11,-68 + 9441: -12,-68 + 9442: -13,-68 + 9443: -14,-68 + 9444: -15,-68 + 9493: -17,-67 + - node: + color: '#00000035' + id: QuarterTileOverlayGreyscale90 + decals: + 5730: 36,-16 + 11949: -14,-37 + 11956: -13,-37 + 11957: -13,-36 + 11958: -14,-36 + 11963: -13,-38 + 11964: -12,-38 + - node: + color: '#00000042' + id: QuarterTileOverlayGreyscale90 + decals: + 3219: -50,-44 + 3268: -24,-49 + 4092: 4,-29 + 4242: -5,-21 + 4690: 3,-39 + 4830: 14,-34 + 4944: 23,-6 + 5469: 29,-16 + 5561: 34,-24 + 5998: -5,-1 + 5999: -6,0 + 6000: -8,1 + 6260: 16,-53 + 7041: 22,-32 + 7912: -27,-8 + 8001: -15,-32 + 8002: -11,-33 + 8611: 41,-41 + 8616: 42,-44 + 8894: -24,-27 + - node: + zIndex: 9 + color: '#00000042' + id: QuarterTileOverlayGreyscale90 + decals: + 7649: -51,-24 + 7780: -25,-25 + 7782: -23,-28 + 7783: -22,-29 + 7784: -21,-30 + 7785: -20,-31 + - node: + color: '#00000642' + id: QuarterTileOverlayGreyscale90 + decals: + 5622: 38,-27 + - node: + color: '#169C9C7F' + id: QuarterTileOverlayGreyscale90 + decals: + 12186: -8,-20 + 12187: -8,-19 + 12188: -8,-18 + 12189: -8,-17 + 12190: -8,-16 + 12191: -8,-15 + 12192: -9,-15 + 12193: -10,-15 + 12194: -11,-15 + - node: + color: '#19191993' + id: QuarterTileOverlayGreyscale90 + decals: + 7874: -24,-2 + 7875: -24,-1 + 8037: -13,4 + 8038: -14,4 + 8039: -22,4 + 8040: -23,4 + 8065: -24,1 + 8082: -23,6 + 8083: -23,7 + 8084: -23,8 + 8085: -23,9 + 8086: -23,10 + 8087: -23,11 + 8088: -23,12 + 8089: -23,14 + 8090: -23,15 + 8091: -23,16 + 8092: -23,17 + 8093: -23,18 + 8094: -24,18 + 8095: -25,18 + 8096: -26,18 + 8097: -27,18 + 8098: -28,18 + - node: + zIndex: 9 + color: '#19191993' + id: QuarterTileOverlayGreyscale90 + decals: + 7771: -19,-28 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 156: 1,-25 + 157: 1,-26 + 158: 1,-27 + 159: 1,-28 + 3813: -8,-27 + 3814: -7,-27 + 3815: -6,-27 + 3816: -5,-27 + 3817: -4,-27 + 3859: -7,-31 + 3860: -6,-31 + 3861: -5,-31 + 3862: -9,-31 + 3863: -3,-31 + 3864: -2,-31 + 3865: 0,-31 + 3866: 2,-31 + 3974: 5,-25 + 3975: 6,-25 + 3976: 6,-26 + 3977: 6,-27 + 3978: 6,-28 + 3979: 6,-29 + 4006: 4,-25 + 4034: 3,-31 + 4035: 5,-31 + 4036: 7,-31 + 4037: 8,-31 + 4038: 9,-31 + 4150: 1,-23 + 4225: 1,-17 + 4226: 1,-16 + 4227: 1,-15 + 4595: 5,-35 + 4596: 5,-36 + 4597: 5,-38 + 4598: 5,-39 + 4614: 5,-37 + 5833: 21,-25 + 5834: 22,-24 + 5959: -5,2 + 5960: -5,3 + 5961: -5,4 + 5962: -5,5 + 5964: -7,4 + 5965: -8,4 + 5966: -8,5 + 5967: -10,5 + 5969: -11,4 + 6991: 10,-30 + 6992: 11,-30 + 6993: 12,-30 + 6994: 13,-30 + 6995: 14,-30 + 6996: 15,-30 + 6997: 20,-28 + 6998: 19,-28 + 6999: 18,-28 + 7000: 17,-28 + 7954: -17,-29 + 7955: -16,-29 + 7956: -15,-29 + 7957: -14,-29 + 7958: -14,-30 + 7959: -13,-30 + 7960: -12,-30 + 7961: -11,-30 + 7962: -10,-30 + 7963: -10,-31 + 9166: 10,7 + 9167: 9,7 + 9168: 9,8 + 9169: 9,9 + 9170: 9,10 + - node: + color: '#52B4E91C' + id: QuarterTileOverlayGreyscale90 + decals: + 4335: 5,-21 + 4336: 5,-20 + 4337: 5,-19 + 4338: 5,-18 + 4573: 9,-17 + 4575: 9,-16 + - node: + color: '#52B4E91D' + id: QuarterTileOverlayGreyscale90 + decals: + 3922: -16,-23 + 3923: -15,-23 + 3924: -15,-24 + 3925: -15,-25 + 3926: -15,-26 + 3927: -14,-26 + 3928: -13,-26 + 3929: -12,-26 + 3933: -11,-23 + 3934: -10,-23 + 3935: -10,-20 + 3936: -12,-20 + 3937: -13,-20 + 3938: -14,-20 + 3939: -15,-20 + 3940: -16,-20 + - node: + color: '#52B4E947' + id: QuarterTileOverlayGreyscale90 + decals: + 850: -32,8 + 851: -31,3 + 852: -30,3 + 853: -29,3 + 854: -29,2 + 855: -28,2 + 856: -28,1 + 858: -29,0 + 1143: -38,0 + - node: + color: '#52B4E95B' + id: QuarterTileOverlayGreyscale90 + decals: + 2445: -31,4 + 2446: -32,4 + 2449: -30,6 + 2450: -30,7 + 2451: -30,8 + 2452: -31,8 + 2481: -39,4 + 2482: -38,4 + 2483: -37,4 + 2484: -36,4 + 2485: -35,4 + 2486: -33,5 + 2491: -34,8 + 2492: -33,8 + 2508: -38,-1 + 2509: -38,-2 + 2510: -38,-3 + 2517: -38,-4 + 2615: -36,7 + 2616: -36,8 + 2617: -36,9 + 2618: -37,9 + 2619: -37,10 + 2620: -38,10 + 2622: -39,9 + 2623: -40,9 + 2661: -37,15 + 2662: -38,15 + 2663: -39,15 + 2664: -40,15 + 2665: -37,14 + 2666: -37,13 + 2667: -37,12 + 2668: -41,14 + 2701: -40,4 + 2710: -36,6 + 2729: -38,-13 + 5148: 33,13 + 5149: 34,13 + 5150: 34,12 + 7234: -26,10 + 7235: -26,11 + 7236: -26,12 + - node: + color: '#52B4E960' + id: QuarterTileOverlayGreyscale90 + decals: + 915: -42,0 + 916: -41,0 + 920: -44,0 + 921: -45,0 + 922: -46,0 + 923: -46,1 + 924: -46,2 + 925: -47,2 + 926: -48,2 + 967: -38,-10 + 968: -38,-9 + 969: -38,-8 + 970: -38,-7 + 978: -38,-12 + 1015: -38,1 + 1016: -38,2 + 1278: -39,-12 + - node: + color: '#52B4E993' + id: QuarterTileOverlayGreyscale90 + decals: + 993: -47,8 + 994: -46,8 + 995: -45,8 + 996: -44,8 + 997: -44,7 + 998: -44,6 + 999: -47,-4 + 1000: -48,-4 + 1001: -49,-4 + 1006: -47,-5 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 952: -46,-8 + 953: -45,-8 + 954: -44,-8 + 955: -43,-8 + 956: -42,-8 + 957: -42,-9 + 2541: -41,-4 + 2542: -41,-5 + 2932: 21,0 + 2933: 20,0 + 2934: 19,0 + 2935: 18,0 + 2936: 17,0 + 2937: 16,0 + 2938: 21,-1 + 2939: 21,-2 + 2940: 21,-3 + 2941: 21,-5 + 2942: 21,-8 + 2958: 23,-3 + 3592: 21,-6 + 3593: 21,-7 + 3594: 21,-9 + 3595: 21,-4 + 7902: -26,3 + 7942: -24,-13 + 7943: -24,-12 + 8214: 27,-29 + 8215: 28,-29 + 8216: 29,-29 + 8217: 30,-29 + 8218: 31,-29 + 8219: 32,-29 + 8220: 33,-29 + 8221: 35,-30 + 8222: 35,-31 + 8223: 35,-32 + 8224: 35,-33 + 8225: 35,-34 + 8297: 35,-38 + 8298: 35,-37 + 8459: 41,-33 + 8460: 42,-33 + 8461: 42,-34 + 8462: 42,-35 + 8463: 43,-35 + 8464: 49,-36 + 8465: 49,-37 + 8466: 50,-37 + 8467: 50,-38 + 8468: 50,-39 + 8469: 49,-40 + 8470: 49,-41 + 8473: 39,-44 + 8474: 40,-44 + 8475: 41,-44 + 8476: 43,-39 + 8477: 44,-39 + 8478: 45,-39 + 8479: 46,-39 + 8480: 47,-39 + 8695: 37,-44 + - node: + zIndex: 9 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 7395: -38,-19 + 7396: -39,-19 + 7398: -40,-20 + 7399: -41,-20 + 7400: -42,-20 + 7401: -43,-20 + 7408: -39,-22 + 7460: -34,-19 + 7461: -32,-19 + 7462: -33,-19 + 7463: -31,-19 + 7464: -30,-19 + 7465: -29,-19 + 7466: -28,-19 + 7577: -46,-17 + 7578: -46,-19 + 7579: -46,-20 + 7580: -45,-20 + 7581: -47,-17 + 7582: -48,-17 + 7583: -49,-17 + 7584: -50,-17 + 7585: -51,-17 + 7596: -46,-24 + 7597: -46,-23 + 7709: -46,-18 + 7732: -64,-19 + 7733: -64,-20 + 7734: -64,-21 + 7735: -64,-22 + - node: + color: '#80C71F72' + id: QuarterTileOverlayGreyscale90 + decals: + 11942: -13,-39 + 11943: -13,-40 + 11969: -14,-42 + - node: + color: '#9FED585B' + id: QuarterTileOverlayGreyscale90 + decals: + 8048: -21,4 + 8049: -20,4 + 8050: -19,4 + 8051: -18,4 + 8052: -17,4 + 8053: -16,4 + 8054: -15,4 + - node: + color: '#9FED5860' + id: QuarterTileOverlayGreyscale90 + decals: + 1234: -34,-9 + 1235: -34,-10 + 1236: -35,-9 + 1237: -34,-12 + 1238: -34,-13 + 1239: -34,-14 + 1240: -34,-15 + - node: + color: '#9FED5893' + id: QuarterTileOverlayGreyscale90 + decals: + 1255: -36,-13 + 1256: -35,-13 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 269: 21,-35 + 270: 22,-34 + 271: 23,-34 + 272: 23,-35 + 273: 23,-36 + 4385: -1,-12 + 4386: 0,-12 + 4387: 1,-12 + 5300: 32,-12 + 5301: 32,-15 + 5302: 31,-15 + 5303: 31,-14 + 5304: 31,-13 + 5325: 34,-15 + 5326: 35,-15 + 5327: 36,-15 + 5328: 38,-16 + 5329: 40,-17 + 5330: 40,-18 + 5331: 40,-20 + 5332: 40,-21 + 5333: 43,-23 + 5334: 39,-24 + 5378: 40,-14 + 5384: 39,-13 + 5418: 38,-26 + 5419: 39,-26 + 5420: 40,-26 + 5421: 41,-26 + 5422: 42,-26 + 5423: 30,-22 + 5424: 31,-23 + 5430: 27,-23 + 5431: 28,-23 + 5432: 29,-23 + 5483: 26,-10 + 5484: 26,-11 + 5485: 27,-11 + 5486: 27,-12 + 5487: 27,-13 + 5488: 27,-14 + 5489: 27,-15 + 5490: 27,-16 + 5491: 26,-17 + 5684: 40,-16 + 5691: 40,-19 + 5733: 39,-16 + 5780: 26,-19 + 5781: 26,-20 + 5783: 25,-21 + 5784: 25,-22 + 5785: 25,-23 + 5786: 25,-24 + 5812: 25,-25 + 6781: 43,-22 + 8515: 44,-43 + 9508: 19,27 + 9509: 18,27 + 9540: 21,26 + 9541: 21,25 + 9542: 21,24 + 9543: 21,23 + 9544: 21,22 + - node: + cleanable: True + color: '#A4610696' + id: QuarterTileOverlayGreyscale90 + decals: + 5686: 42,-21 + 5688: 43,-21 + 5690: 41,-21 + - node: + color: '#D381C95B' + id: QuarterTileOverlayGreyscale90 + decals: + 4275: 30,5 + 4281: 30,6 + 4282: 30,7 + 4283: 30,8 + 4284: 30,2 + 4318: 36,2 + 4319: 35,2 + 4320: 34,2 + 4321: 33,2 + 4322: 32,2 + 4323: 31,2 + 4433: 21,10 + 4434: 22,10 + 4435: 23,10 + 4436: 24,10 + 4437: 25,10 + 4438: 25,9 + 4439: 25,8 + 4440: 26,8 + 4441: 26,7 + 4465: 37,7 + 4466: 37,8 + 4467: 37,9 + 4468: 36,9 + 4469: 35,9 + 4473: 43,5 + 4475: 44,6 + 4476: 44,7 + 4494: 30,3 + 4495: 30,4 + 4497: 46,3 + 4823: 30,-4 + 4824: 30,-5 + 4882: 14,4 + 4883: 18,4 + 4884: 19,4 + 4885: 20,4 + 4886: 21,4 + 4887: 22,4 + 4888: 23,4 + 4889: 24,4 + 4890: 25,4 + 4891: 26,3 + 4892: 25,3 + 4893: 26,0 + 4894: 26,-1 + 4895: 27,-1 + 4896: 27,-2 + 4897: 27,-3 + 4898: 26,-4 + 4899: 26,-5 + 4900: 26,-6 + 4901: 26,-7 + 4991: 43,-1 + 5058: 43,7 + 5059: 40,7 + 5060: 41,7 + 5061: 42,7 + 5076: 30,10 + 5077: 30,11 + 5078: 30,12 + 5079: 31,13 + 5080: 31,14 + 5081: 31,15 + 5082: 30,15 + 5085: 29,14 + 5086: 28,14 + 5087: 27,14 + 5187: 18,8 + 5933: 13,4 + 10336: 28,32 + 10337: 29,32 + 10338: 32,32 + 10339: 32,31 + 10340: 32,30 + 10341: 31,29 + 10342: 31,28 + 10343: 31,26 + 10344: 31,25 + 10345: 31,24 + 10346: 31,23 + 10347: 31,22 + 10348: 31,21 + 10410: 31,32 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 4771: 28,-36 + 4796: 30,-1 + 4797: 31,-2 + 4798: 32,-2 + 4799: 33,-2 + 4844: 29,-2 + 5005: 52,-4 + 5006: 52,-3 + 5007: 48,-2 + 5008: 48,-1 + 5009: 48,0 + 5010: 49,1 + 5011: 49,2 + 5012: 49,3 + 5013: 48,3 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 139: -2,-16 + 290: 26,-37 + 402: 15,-54 + 609: -20,-40 + 754: -36,-55 + 809: -29,-35 + 1052: -49,-2 + 1300: -35,11 + 1303: -31,10 + 2050: -29,-40 + 2367: -18,-34 + 2564: -36,-1 + 2783: -20,-47 + 3019: -14,-3 + 4141: 31,3 + 5739: 32,-27 + 5741: 34,-26 + 6631: -11,-62 + 6810: 37,-28 + 10282: 28,20 + 10302: 34,28 + 11011: -43,21 + 11392: -77,0 + 11780: -80,-18 + - node: + zIndex: 9 + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 7690: -50,-22 + 7746: -65,-23 + - node: + color: '#DE3A3A5B' + id: QuarterTileOverlayGreyscale90 + decals: + 2231: -41,-37 + 2232: -41,-38 + 2233: -41,-39 + 2234: -41,-40 + 2237: -43,-37 + 4970: 36,-1 + 6678: 11,-53 + 6679: 12,-53 + 7816: -23,-20 + 7817: -23,-22 + 7818: -23,-23 + 7819: -23,-24 + 7820: -22,-24 + 7821: -22,-25 + 7822: -22,-26 + 7823: -21,-26 + 7824: -20,-26 + 8400: 38,-38 + 8401: 37,-38 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 716: -34,-39 + 720: -38,-37 + 725: -33,-50 + 726: -34,-50 + 729: -31,-52 + 1600: -54,-35 + 1601: -55,-35 + 1602: -56,-35 + 1603: -57,-35 + 1604: -58,-35 + 1605: -59,-35 + 1606: -60,-35 + 1607: -61,-35 + 1944: -29,-52 + 1971: -29,-47 + 1972: -28,-47 + 1973: -27,-47 + 1974: -27,-48 + 1975: -27,-49 + 1976: -27,-50 + 1977: -27,-51 + 1978: -27,-52 + 1979: -27,-53 + 1980: -31,-46 + 1981: -31,-47 + 1982: -33,-46 + 1983: -34,-46 + 1984: -35,-46 + 1985: -36,-46 + 1986: -37,-46 + 1987: -38,-46 + 1988: -39,-46 + 1989: -40,-46 + 2006: -38,-49 + 2015: -33,-42 + 2016: -34,-42 + 2017: -38,-42 + 2018: -39,-42 + 2032: -25,-42 + 2055: -31,-38 + 2056: -31,-40 + 2102: -41,-43 + 2103: -42,-43 + 2104: -43,-43 + 2105: -44,-43 + 2106: -45,-43 + 2107: -45,-42 + 2108: -45,-40 + 2109: -45,-39 + 2110: -45,-38 + 2111: -45,-37 + 2112: -45,-36 + 2117: -31,-34 + 2130: -34,-34 + 2131: -37,-34 + 2132: -43,-34 + 2133: -46,-34 + 2253: -47,-43 + 2254: -48,-43 + 2255: -49,-43 + 2256: -50,-43 + 2257: -50,-45 + 2258: -50,-46 + 2259: -50,-47 + 2260: -50,-48 + 2261: -49,-48 + 2262: -48,-48 + 2263: -47,-48 + 2264: -46,-48 + 2265: -45,-48 + 2266: -44,-48 + 2267: -43,-48 + 2326: -24,-38 + 2327: -23,-38 + 2328: -22,-38 + 2329: -22,-39 + 2330: -22,-40 + 2331: -22,-41 + 2332: -22,-42 + 2333: -21,-42 + 2334: -20,-42 + 2335: -18,-42 + 2336: -17,-42 + 2567: -34,1 + 2568: -34,0 + 2572: -35,1 + 2746: -22,-54 + 2747: -20,-54 + 2748: -20,-54 + 2749: -20,-55 + 2750: -20,-56 + 2800: -22,-49 + 2801: -22,-48 + 2802: -22,-47 + 2803: -22,-45 + 3328: -40,-34 + 3331: -31,-37 + 3332: -37,-42 + 3336: -27,-42 + 3339: -23,-51 + 3356: -30,-42 + 3390: -20,-57 + 4378: -4,-15 + 4379: -5,-15 + 5442: 31,-19 + 5443: 30,-19 + 8394: 39,-40 + 8395: 39,-41 + 8434: 37,-34 + 8435: 38,-34 + 8436: 39,-34 + 8502: 44,-35 + 8503: 45,-35 + 8504: 46,-35 + 8505: 47,-35 + 8506: 49,-35 + 8805: -11,-42 + 8806: -15,-42 + 8813: -8,-43 + 8814: -8,-42 + 8815: -8,-41 + 11970: -12,-42 + - node: + color: '#EFB3245B' + id: QuarterTileOverlayGreyscale90 + decals: + 2512: -37,-5 + - node: + color: '#EFB3415B' + id: QuarterTileOverlayGreyscale90 + decals: + 2516: -37,-4 + - node: + color: '#EFB34160' + id: QuarterTileOverlayGreyscale90 + decals: + 866: -30,-2 + 883: -30,-6 + 884: -31,-6 + 885: -32,-6 + 886: -32,-5 + 887: -32,-4 + 888: -33,-4 + 889: -34,-4 + 890: -35,-4 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 1381: -53,3 + 1382: -54,3 + 1383: -55,3 + 1385: -56,3 + 1386: -57,3 + 1387: -58,3 + 1388: -58,4 + 1389: -59,4 + 1390: -60,4 + 1391: -61,4 + 1392: -62,4 + 1393: -63,4 + 1394: -64,4 + 1395: -65,4 + 1401: -66,-1 + 1417: -57,-6 + 1418: -57,-5 + 1419: -57,-4 + 1420: -57,-3 + 1421: -57,-2 + 1422: -57,-1 + 1427: -53,0 + 1428: -53,1 + 1429: -53,2 + 4367: 3,-13 + 4368: 3,-14 + 4369: 3,-15 + 4370: 4,-15 + 4371: 5,-15 + 4731: 15,-35 + 4732: 16,-35 + 4733: 17,-35 + 4734: 18,-37 + 4735: 18,-36 + 4736: 18,-34 + 4737: 18,-33 + 4834: 18,-35 + 5393: 45,-10 + 5394: 44,-10 + 5395: 43,-10 + 5396: 42,-10 + 5612: 46,-10 + 5867: 4,2 + 5868: 3,2 + 5869: 1,2 + 5870: -1,2 + 5871: -2,2 + 5872: -3,2 + 5873: -4,2 + 5883: 2,2 + 6085: 18,-44 + 6086: 19,-44 + 6087: 20,-44 + 6088: 20,-46 + 6089: 20,-47 + 6090: 21,-47 + 6091: 21,-49 + 6097: 17,-48 + 6136: 23,-44 + 6137: 24,-44 + 6138: 25,-44 + 6139: 26,-44 + 6140: 26,-45 + 6167: 26,-48 + 6168: 26,-49 + 6169: 25,-48 + 6170: 24,-48 + 6171: 23,-48 + 6174: 24,-50 + 6214: 20,-51 + 6215: 20,-52 + 6216: 20,-53 + 6223: 16,-52 + 6224: 17,-52 + 6225: 18,-52 + 6264: 19,-54 + 6342: 15,-47 + 6343: 15,-46 + 6344: 14,-46 + 6345: 14,-45 + 6346: 14,-44 + 6347: 14,-42 + 6353: 19,-39 + 6354: 17,-39 + 6355: 16,-39 + 6356: 15,-39 + 6357: 13,-39 + 6358: 12,-39 + 6359: 11,-39 + 6360: 10,-39 + 6361: 10,-38 + 6362: 10,-37 + 6363: 10,-36 + 6378: 7,-44 + 6379: 8,-44 + 6380: 8,-45 + 6381: 8,-46 + 6382: 8,-47 + 6383: 9,-47 + 6384: 8,-48 + 6385: 8,-49 + 6413: 4,-52 + 6414: 5,-52 + 6415: 6,-52 + 6416: 7,-52 + 6417: 8,-51 + 6418: 8,-52 + 6419: 8,-53 + 6467: 9,-56 + 6468: 9,-59 + 6469: 9,-60 + 6470: 9,-61 + 6857: 11,-46 + 6907: 15,-48 + 6974: 11,-33 + 6978: 15,-32 + 7885: -27,-7 + 7931: -24,-18 + 7933: -24,-19 + 8792: -8,-36 + 8793: -8,-38 + 8794: -8,-39 + 8795: -8,-40 + - node: + color: '#F9801D8E' + id: QuarterTileOverlayGreyscale90 + decals: + 9316: -16,-72 + 9317: -16,-71 + 9318: -16,-70 + 9319: -16,-69 + 9320: -16,-73 + 9321: -16,-74 + 9322: -16,-75 + 9323: -16,-76 + 9324: -18,-77 + 9333: -12,-66 + 9338: -9,-68 + 9339: -9,-67 + 9340: -9,-66 + - node: + color: '#F9801D93' + id: QuarterTileOverlayGreyscale90 + decals: + 9494: -17,-67 + 9495: -16,-67 + - node: + color: '#FFFFFFFF' + id: Remains + decals: + 11250: -47,21 + 11805: -79,-18 + - node: + angle: 0.3665191429188092 rad + color: '#FFFFFFFF' + id: Remains + decals: + 11119: -40,24 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 1030: -46,14 + 7141: -60,55 + 7142: -59,54 + 11831: -54,-14 + - node: + color: '#FFFFFFFF' + id: Rock02 + decals: + 5129: 23,15 + 7190: -16,7 + 7191: -17,11 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 2425: -53,-31 + 2722: -44,12 + 7145: -59,53 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 7144: -61,54 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 7143: -60,53 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 1319: -42,-15 + 1894: -82,-44 + 1895: -92,-43 + 1896: -95,-37 + 1897: -100,-24 + 1898: -89,-23 + 2197: -42,-26 + 2198: -39,-27 + 2199: -31,-27 + 2423: -55,-31 + 2424: -61,-31 + 2430: -58,-32 + 3708: 18.192305,-16.065342 + 3741: 15.938036,-26.092567 + 4515: -4,-10 + 7423: -88,57 + 7424: -87,63 + 7425: -90,65 + 7542: -74.00219,67.05408 + 7543: -70.45345,69.03845 + 7544: -83.584076,66.18136 + 7545: -80.19345,70.90011 + 7546: -88.865326,67.69698 + 7547: -84.06845,69.58761 + 7548: -92.40874,49.193916 + 7549: -94.04936,51.006416 + 8739: 40,-48 + 8983: -60.657516,29.949873 + 8985: -75.236885,-3.945303 + 9080: -12,24 + 9081: -13,27 + 9135: -6,15 + 10561: 21,35 + 10562: 23,37 + 10563: 17,37 + 10564: 17,34 + 11359: -75,12 + 11360: -66,9 + 11361: -71,9 + 11362: -59,21 + 11363: -58,19 + 11826: -56,-55 + 11827: -47,-56 + 11828: -59,-61 + 11829: -72,-45 + 11830: -86,-50 + 11840: -55,-12 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 7540: -79.86916,63.429893 + 7541: -76.45639,66.36658 + 7550: -88.26811,48.14704 + 7551: -84.98686,47.131416 + 8984: -58.45439,31.012373 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 93: -3,1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 94: -2,1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 95: -1,1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 96: 0,1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 97: 1,1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 98: 2,1 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 99: 3,1 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 92: -5,6 + 149: -1,-20 + 150: 1,-20 + 151: 2,-21 + 152: -2,-21 + 464: 21,-43 + 465: 21,-44 + 466: 21,-45 + 573: 29,-63 + 585: 32,-64 + 586: 32,-63 + 587: 32,-62 + 704: -48,-35 + 705: -48,-36 + 706: -39,-35 + 707: -39,-34 + 708: -32,-36 + 709: -31,-36 + 710: -36,-42 + 711: -36,-43 + 712: -36,-44 + 1122: -33,4 + 1123: -33,3 + 1169: -38,-6 + 1170: -39,-6 + 1651: -53,-35 + 1652: -53,-36 + 2029: -28,-42 + 2030: -28,-43 + 2031: -28,-44 + 2587: -43,-1 + 2588: -43,0 + 2589: -37,5 + 2590: -38,5 + 2744: -24,-52 + 2745: -23,-52 + 2780: -25,-59 + 2781: -21,-59 + 3746: 22,-22 + 4020: -1,-30 + 4021: 0,-30 + 4022: 1,-30 + 4852: 24,1 + 4853: 26,1 + 4854: 27,2 + 4855: 27,3 + 4994: 45,1 + 4995: 45,2 + 4996: 39,2 + 4997: 39,1 + 5177: 16,5 + 5670: 45,-21 + 5671: 45,-23 + 5679: 40,-15 + 5681: 39,-15 + 5856: 23,-18 + 5857: 26,-18 + 5864: 11,4 + 5865: 11,2 + 6006: -12,4 + 6007: -12,2 + 6340: 18,-67 + 6341: 26,-67 + 6962: 8,-35 + 6963: 9,-35 + 6964: 10,-35 + 7045: 16,-28 + 7046: 16,-31 + 7829: -26,-17 + 7830: -24,-17 + 7831: -18,-29 + 7832: -18,-31 + 7919: -26,0 + 7920: -25,0 + 7921: -24,0 + 8148: -25,13 + 8149: -24,13 + 8150: -23,13 + 8206: 26,-29 + 8207: 26,-30 + 8208: 26,-31 + 8556: 52,-33 + 8557: 52,-35 + 8558: 52,-41 + 8559: 52,-43 + 8789: -10,-35 + 8790: -9,-35 + 8791: -8,-35 + 8875: -16,-42 + 8876: -16,-43 + 8877: -16,-44 + 10256: 29,18 + 10257: 30,18 + 10258: 31,18 + 10362: 29,27 + 10363: 30,27 + 10364: 31,27 + 10558: 29,35 + 10559: 30,35 + 10560: 31,35 + 10797: -5,19 + 11767: -74,-30 + - node: + color: '#00000042' + id: ThreeQuarterTileOverlayGreyscale + decals: + 3152: -45,-35 + 3176: -46,-33 + 3192: -43,-33 + 3194: -40,-33 + 3248: -37,-33 + 3249: -34,-33 + 3250: -31,-33 + 3265: -22,-44 + 3325: -23,-55 + 4082: -14,-23 + 4262: 5,-17 + 4265: 2,-17 + 4678: -8,-33 + 4777: 28,-35 + 4906: 26,-3 + 4928: 26,2 + 5505: 26,-16 + 5800: 25,-20 + 5814: 24,-25 + 5956: 7,2 + 5957: 6,1 + 5958: 5,0 + 6175: 10,-33 + 6176: 11,-32 + 6192: 24,-49 + 6256: 19,-53 + 6493: 6,-56 + 6922: 14,-41 + 8064: -24,2 + 8287: 30,-31 + 8288: 35,-36 + 8623: 44,-41 + 8630: 49,-39 + 9184: 7,6 + 9522: 18,23 + - node: + zIndex: 9 + color: '#00000042' + id: ThreeQuarterTileOverlayGreyscale + decals: + 7654: -46,-22 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 202: -2,-38 + 203: -3,-39 + 232: 15,-37 + 337: 7,-54 + 403: 20,-54 + 432: 25,-50 + 684: -49,-45 + 1153: -29,-6 + 1155: -31,-7 + 1161: -29,-2 + 1162: -28,0 + 2065: -37,-40 + 2071: -34,-40 + 2840: -4,-7 + 2841: 2,-7 + 2880: 9,0 + 2881: 8,-1 + 2898: 13,-4 + 2899: 10,-4 + 2906: 16,-11 + 3051: -8,-10 + 4149: 33,-3 + 4153: 31,-4 + 4279: 18,7 + 4364: -3,-12 + 4490: 44,5 + 4548: -20,-18 + 4748: 31,-35 + 4849: 26,6 + 5201: 31,-24 + 5212: 31,-20 + 5220: 32,-13 + 5239: 40,-24 + 6060: 46,-13 + 6308: 38,-61 + 6365: 9,-48 + 6369: 15,-42 + 7052: 24,-32 + 8391: 39,-42 + 8909: -3,42 + 8917: -9,42 + 9138: -7,8 + 9153: 6,10 + 9272: -15,-69 + 9280: -17,-77 + 10284: 31,20 + 10286: 32,29 + 10733: 5,23 + 10986: -37,19 + 11390: -71,0 + 11778: -75,-19 + 11924: -12,-39 + - node: + zIndex: 9 + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 7569: -45,-23 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale + decals: + 1760: -73,-38 + 2159: -47,-30 + 2160: -44,-30 + 2161: -41,-30 + 2162: -38,-30 + 2163: -35,-30 + 2164: -32,-30 + 8530: 46,-32 + - node: + color: '#00000042' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 3177: -44,-34 + 3191: -41,-34 + 3212: -46,-43 + 3213: -42,-48 + 3251: -32,-34 + 3252: -35,-34 + 3262: -24,-42 + 3309: -38,-34 + 4080: -12,-25 + 4839: 22,-35 + 4946: 24,-3 + 5523: 24,-14 + 5801: 23,-24 + 5802: 22,-25 + 5847: 21,-28 + 5892: 5,2 + 5955: 6,3 + 5981: -10,4 + 5983: -6,4 + 6101: 18,-48 + 6258: 19,-52 + 6686: 13,-53 + 6903: 12,-46 + 6950: 8,-39 + 7910: -26,-7 + 7915: -25,3 + 8614: 41,-34 + 8640: 49,-43 + 8785: 10,-31 + 8859: -10,-42 + - node: + color: '#9D9D975D' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 12185: -12,-15 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 6639: 8,-62 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 230: 13,-37 + 231: 3,-30 + 235: 17,-34 + 313: 6,-45 + 335: 7,-51 + 385: 12,-52 + 395: 18,-51 + 451: 17,-47 + 687: -43,-47 + 688: -47,-42 + 692: -29,-51 + 1151: -29,-5 + 1159: -35,-7 + 1168: -26,4 + 1615: -57,-38 + 1631: -54,-34 + 2634: -39,10 + 2696: -41,4 + 2836: -2,-4 + 2837: 4,-4 + 2878: 13,-2 + 3011: 15,0 + 3053: -10,-12 + 3065: -22,-11 + 3072: -10,-2 + 3778: 7,-20 + 4103: 20,9 + 4119: 28,8 + 4145: 29,-1 + 4165: 35,-1 + 4255: 29,15 + 4546: -22,-16 + 4629: -6,-36 + 4740: 21,-34 + 5209: 33,-22 + 5218: 33,-18 + 5254: 39,-12 + 5265: 35,-27 + 5272: 29,-22 + 5293: 34,-11 + 6122: 20,-43 + 6307: 40,-63 + 6366: 11,-45 + 7047: 15,-29 + 8649: 41,-43 + 9019: -8,57 + 9151: 8,8 + 9277: -13,-66 + 9502: 18,24 + 9689: 1,-42 + 9893: 39,26 + 10736: 1,22 + 11882: 22,-38 + - node: + zIndex: 9 + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 7571: -52,-21 + 7573: -52,-18 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 1716: -71,-34 + 1719: -67,-34 + 1758: -68,-43 + 2154: -31,-31 + 2155: -34,-31 + 2156: -37,-31 + 2157: -43,-31 + 2158: -46,-31 + 2349: -40,-31 + - node: + color: '#00000042' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 3175: -46,-34 + 3193: -43,-34 + 3218: -50,-48 + 3253: -37,-34 + 3254: -34,-34 + 3263: -22,-42 + 3308: -40,-34 + 4083: -14,-25 + 4907: 26,-1 + 4908: 25,3 + 5468: 31,-15 + 5506: 26,-11 + 5982: -8,4 + 5984: -5,2 + 6102: 20,-47 + 6436: 8,-47 + 6902: 14,-46 + 6951: 10,-39 + 8004: -14,-30 + 8007: -10,-31 + 8018: -23,4 + 8289: 35,-34 + 8629: 42,-35 + 8631: 49,-37 + 8639: 46,-43 + 9185: 9,7 + - node: + zIndex: 9 + color: '#00000042' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 7491: -34,-19 + 7653: -46,-20 + 7791: -23,-24 + 7792: -22,-26 + 7793: -20,-28 + 7794: -19,-29 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 6638: 6,-62 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 205: -2,-36 + 234: 15,-34 + 289: 28,-33 + 316: 9,-46 + 458: 15,-45 + 683: -44,-42 + 686: -49,-47 + 690: -32,-50 + 1150: -31,-5 + 1156: -31,-8 + 1164: -30,4 + 1165: -28,3 + 1289: -30,12 + 1621: -55,-38 + 2063: -34,-38 + 2064: -37,-37 + 2525: -37,-3 + 2838: -4,-4 + 2839: 2,-4 + 2891: 8,-2 + 3050: -8,-12 + 4102: 18,9 + 4112: 26,9 + 4140: 32,4 + 4144: 31,-1 + 4151: 33,-6 + 4152: 31,-5 + 4228: 35,10 + 4547: -20,-16 + 4856: 26,4 + 4857: 27,0 + 4972: 37,-2 + 5170: 38,7 + 5219: 32,-14 + 5233: 41,-20 + 5243: 37,-15 + 5273: 31,-22 + 6017: -4,3 + 6302: 38,-63 + 7825: -19,-27 + 8261: 34,-29 + 8390: 39,-39 + 8643: 43,-34 + 9018: -2,57 + 9139: -7,10 + 9154: 6,8 + 10734: 5,22 + 10985: -37,26 + 11125: -45,17 + 11926: -12,-37 + 11927: -13,-35 + 11977: 44,4 + - node: + zIndex: 9 + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 7568: -45,-19 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 1718: -68,-34 + 1757: -73,-43 + 2165: -47,-31 + 2166: -44,-31 + 2167: -41,-31 + 2168: -38,-31 + 2169: -35,-31 + 2170: -32,-31 + - node: + color: '#00000042' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 3264: -24,-44 + 4081: -12,-23 + 4243: -2,-17 + 4684: 8,-33 + 4939: 24,2 + 4945: 24,-6 + 6001: -8,2 + 6002: -6,1 + 6003: -5,0 + 6257: 18,-53 + 6579: 1,-52 + 6923: 12,-41 + 7911: -26,-8 + 8005: -15,-31 + 8006: -11,-32 + 8008: -10,-33 + 8140: -25,16 + 8286: 29,-31 + 8291: 33,-31 + 8612: 42,-41 + 8613: 41,-36 + 9179: 6,7 + 9183: 9,6 + 9523: 19,23 + - node: + zIndex: 9 + color: '#00000042' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 7786: -23,-27 + 7787: -22,-28 + 7788: -21,-29 + 7789: -20,-30 + - node: + color: '#9D9D975D' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 12184: -12,-17 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 200: -5,-39 + 229: 13,-34 + 233: 17,-37 + 255: 22,-36 + 336: 5,-54 + 394: 17,-54 + 440: 23,-49 + 452: 18,-49 + 467: 25,-45 + 611: -47,-37 + 685: -43,-45 + 689: -47,-49 + 691: -29,-49 + 1160: -35,-6 + 1288: -31,11 + 1616: -57,-41 + 2070: -36,-40 + 2246: -43,-38 + 2760: -24,-55 + 2834: -2,-7 + 2835: 4,-7 + 2879: 13,0 + 2905: 21,-11 + 3010: 15,-3 + 3052: -10,-9 + 3066: -22,-13 + 3071: -10,-4 + 4099: 14,7 + 4114: 23,7 + 4120: 28,6 + 4208: 36,6 + 4363: 3,-12 + 4489: 40,5 + 4549: -22,-18 + 5111: 28,13 + 5206: 27,-25 + 5207: 33,-24 + 5210: 33,-20 + 5269: 32,-26 + 5292: 34,-13 + 6309: 40,-61 + 6368: 11,-42 + 7051: 21,-32 + 8299: 33,-37 + 8389: 37,-40 + 8908: -7,42 + 9152: 8,10 + 9501: 18,26 + 10285: 29,20 + 10287: 28,29 + 10735: 1,23 + 11925: -14,-39 + - node: + zIndex: 9 + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 7567: -26,-22 + 7570: -52,-23 + 7572: -52,-20 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 1717: -71,-36 + 1759: -68,-38 + 2148: -46,-30 + 2149: -43,-30 + 2150: -40,-30 + 2151: -37,-30 + 2152: -34,-30 + 2153: -31,-30 + - node: + color: '#FFFFFFFF' + id: VentSmall + decals: + 11288: -54,10 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 479: 19,-47 + 580: 29,-58 + 581: 29,-57 + 582: 29,-56 + 702: -48,-49 + 1128: -45,1 + 3151: 14,-8 + 4749: 30,-36 + 5454: 28,-15 + 5736: 31,-25 + 11768: -75,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 84: -5,9 + 421: 27,-53 + 504: 28,-56 + 561: 21,-65 + 591: 35,-62 + 738: -32,-51 + 1638: -55,-41 + 3716: 19,-20 + 4179: 1,-21 + 5153: 34,13 + 5728: 43,-21 + 7936: -24,-18 + 8332: -4,47 + 9260: -23,-70 + 9778: -55,-51 + 10306: 26,29 + 10386: 38,-68 + 10968: -40,24 + 11174: -53,18 + 11285: -52,10 + 11382: -71,-4 + 11600: -77,-24 + 12161: 2,-51 + 12172: 4,-56 + 12330: 27,-75 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 5693: 43,-21 + 9738: 43,15 + 9758: 51,16 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 7674: -47,-19 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 417: 23,-53 + 496: 16,-56 + 560: 23,-65 + 590: 34,-62 + 737: -35,-51 + 1639: -56,-41 + 1653: -60,-39 + 3717: 15,-20 + 4010: 4,-25 + 4178: -1,-21 + 6507: 6,-56 + 8331: -6,47 + 9779: -57,-51 + 10308: 25,29 + 10387: 36,-68 + 10969: -43,24 + 11185: -55,18 + 11284: -53,10 + 11381: -72,-4 + 11601: -78,-24 + 12309: 19,-75 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 9737: 42,15 + 9757: 49,16 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 7675: -50,-19 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 423: 24,-54 + 562: 21,-66 + 734: -31,-53 + 735: -32,-54 + 3711: 19,-23 + 3780: 7,-20 + 4960: 26,2 + 6288: 41,-64 + 6500: 9,-61 + 6915: 15,-48 + 7072: -77,51 + 7084: -71,63 + 8186: -4,39 + 8326: -3,45 + 8341: -4,49 + 8901: -4,38 + 9777: -55,-53 + 10309: 26,28 + 10385: 38,-70 + 10971: -40,21 + 11176: -53,16 + 11286: -52,9 + 11383: -71,-5 + 11599: -77,-25 + 12169: 4,-60 + 12329: 27,-79 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 5673: 43,-23 + 9740: 43,14 + 9759: 51,14 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 7676: -47,-22 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 563: 23,-66 + 736: -35,-54 + 1654: -60,-41 + 3715: 15,-23 + 4009: 4,-29 + 4961: 27,0 + 6287: 37,-64 + 8322: -7,45 + 8339: -6,49 + 8729: 37,-45 + 8900: -6,38 + 9253: -27,-74 + 9676: -29,-28 + 9776: -57,-53 + 10307: 25,28 + 10384: 36,-70 + 10970: -43,21 + 11175: -55,16 + 11287: -53,9 + 11380: -72,-5 + 11602: -78,-25 + 12116: -9,-60 + 12308: 19,-79 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 9739: 42,14 + 9760: 49,14 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 7677: -50,-22 + - node: + color: '#E6D4D4FF' + id: WarnCornerSmallGreyscaleNE + decals: + 1342: -34,12 + 1349: -31,12 + - node: + color: '#E6D4D4FF' + id: WarnCornerSmallGreyscaleNW + decals: + 1334: -34,12 + 1343: -31,12 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 4: 0,5 + 62: 0,11 + 67: 1,9 + 77: -10,8 + 526: 28,-64 + 743: -33,-51 + 744: -32,-52 + 1186: -32,-6 + 1201: -37,-10 + 1276: -33,-13 + 1371: -51,0 + 1374: -52,-2 + 1575: -53,0 + 1777: -71,-38 + 2309: -38,-54 + 2324: -23,-37 + 2528: -37,-5 + 2537: -40,-7 + 2583: -39,4 + 2772: -24,-54 + 2773: -22,-54 + 3886: -5,-31 + 3887: -9,-31 + 4031: -2,-31 + 4053: 3,-31 + 4166: 1,-22 + 4397: -3,-22 + 4639: 2,-35 + 4739: 18,-37 + 4742: 21,-34 + 4767: 28,-33 + 4977: 37,-4 + 5143: 31,12 + 5154: 34,12 + 5156: 32,13 + 5185: 14,4 + 5645: 29,-11 + 5652: 49,-12 + 5727: 43,-21 + 5744: 42,-28 + 6009: -6,5 + 6015: -10,5 + 6064: 55,-5 + 6117: 20,-46 + 6121: 21,-49 + 6268: 12,-51 + 6269: 13,-54 + 6274: 23,-56 + 6277: 27,-56 + 6278: 19,-56 + 6281: 17,-65 + 6284: 35,-63 + 6299: 37,-64 + 6326: 28,-61 + 6328: 25,-68 + 6443: 9,-48 + 6513: 10,-62 + 6610: -7,-56 + 6614: 4,-57 + 6616: -8,-51 + 7028: 19,-41 + 7061: 15,-32 + 7088: -68,62 + 7237: -26,12 + 7937: -24,-19 + 8081: -26,4 + 8213: 24,-32 + 8230: -4,42 + 8335: -5,47 + 8371: -8,50 + 8378: -8,53 + 8380: -3,56 + 8383: -6,57 + 8572: 49,-36 + 8642: 49,-44 + 8891: -8,-38 + 8905: -9,45 + 8931: -9,42 + 8961: -4,46 + 9263: -27,-70 + 9291: -15,-70 + 9373: 12,8 + 9403: 10,13 + 9609: 23,28 + 9632: -31,-15 + 9714: -64,-52 + 9715: -64,-53 + 9816: -55,-52 + 9863: 52,7 + 10111: 39,19 + 10162: 52,3 + 10240: 32,-9 + 10254: 28,17 + 10381: 34,-70 + 10391: 38,-69 + 10398: 30,-66 + 10408: 29,32 + 10426: 26,26 + 10427: 26,22 + 10428: 36,22 + 10429: 36,26 + 10430: 37,33 + 10431: 33,38 + 10433: 25,33 + 10454: 26,-39 + 10785: 3,19 + 10800: -11,19 + 10802: -9,18 + 10838: -16,16 + 10907: -18,18 + 10909: -20,20 + 10956: -41,17 + 10957: -39,17 + 10979: -41,24 + 11170: -51,17 + 11172: -53,17 + 11256: -48,12 + 11486: -63,-8 + 11514: -48,-9 + 11576: -70,-19 + 11739: -68,-25 + 11760: -70,-31 + 11783: -79,-18 + 11788: -72,-18 + 11789: -75,-19 + 11868: -1,-45 + 12098: 46,7 + 12102: 46,5 + 12142: -5,-60 + 12143: -1,-60 + 12166: 2,-56 + 12168: 2,-52 + 12173: 2,11 + 12272: 18,-73 + 12273: 20,-73 + 12274: 22,-73 + 12275: 24,-73 + 12276: 22,-71 + 12277: 20,-71 + 12278: 18,-71 + 12289: 24,-71 + 12290: 23,-71 + 12295: 17,-68 + 12334: 24,-75 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 5698: 39,-24 + 5700: 40,-21 + 9406: 17,15 + 9730: 41,29 + 9742: 42,12 + 9752: 47,14 + 9765: 51,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 7699: -50,-17 + 7751: -64,-23 + 7752: -64,-20 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 53: 1,9 + 54: 0,11 + 55: 2,11 + 80: -8,8 + 277: 24,-34 + 460: 17,-49 + 524: 16,-66 + 703: -47,-37 + 747: -34,-51 + 1126: -32,2 + 1136: -49,0 + 1370: -51,0 + 1665: -51,-37 + 2010: -29,-54 + 2213: -27,-43 + 2230: -38,-36 + 2538: -37,-7 + 2584: -36,4 + 2693: -46,-9 + 2774: -22,-54 + 2775: -20,-54 + 3383: -47,-37 + 3884: -7,-31 + 3885: -3,-31 + 4012: 6,-25 + 4030: 2,-31 + 4054: 5,-31 + 4167: -1,-22 + 4398: 3,-22 + 4577: 8,-16 + 4709: 4,-35 + 4766: 31,-33 + 4828: 29,1 + 5184: 18,4 + 5644: 31,-11 + 6014: -8,5 + 6020: -4,5 + 6270: 11,-54 + 6275: 23,-56 + 6276: 27,-56 + 6279: 18,-56 + 6280: 27,-65 + 6282: 16,-61 + 6283: 34,-63 + 6298: 41,-64 + 6301: 37,-63 + 6329: 27,-68 + 6508: 7,-56 + 6509: 6,-58 + 6611: 1,-56 + 6615: -8,-49 + 6918: 11,-48 + 7015: 11,-36 + 7068: -80,48 + 7928: -26,-16 + 8080: -22,4 + 8154: -22,12 + 8307: 27,-32 + 8334: -5,47 + 8372: -2,50 + 8377: -2,53 + 8379: -7,56 + 8384: -4,57 + 8666: 16,-63 + 8907: -6,46 + 8950: -1,42 + 8951: 1,46 + 8953: -1,45 + 9196: 9,7 + 9205: -16,-75 + 9400: 15,16 + 9404: 12,13 + 9631: -29,-15 + 9808: -57,-52 + 10255: 32,17 + 10392: 36,-69 + 10406: 29,27 + 10411: 31,32 + 10434: 23,33 + 10435: 27,38 + 10436: 35,33 + 10437: 34,26 + 10438: 34,22 + 10439: 24,22 + 10440: 24,26 + 10453: 28,-39 + 10786: 3,19 + 10794: -1,18 + 10801: -9,19 + 10839: -13,16 + 10908: -18,20 + 10916: -20,22 + 10958: -39,17 + 10959: -37,17 + 10980: -41,24 + 11030: -38,19 + 11169: -49,17 + 11171: -51,16 + 11178: -55,17 + 11300: -50,8 + 11326: -68,4 + 11378: -71,-2 + 11386: -69,-6 + 11388: -73,1 + 11560: -66,-12 + 11577: -70,-18 + 11591: -66,-25 + 11603: -72,-31 + 11869: 1,-45 + 12097: 48,7 + 12103: 48,5 + 12140: 4,-60 + 12141: -1,-60 + 12279: 18,-71 + 12280: 22,-71 + 12281: 24,-73 + 12282: 22,-73 + 12283: 20,-73 + 12284: 18,-73 + 12291: 20,-71 + 12292: 24,-71 + 12293: 26,-73 + 12296: 19,-68 + 12333: 24,-75 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 9407: 19,15 + 9731: 43,29 + 9734: 33,16 + 9743: 44,12 + 9766: 49,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 7566: -30,-18 + 7696: -52,-23 + 7697: -52,-20 + 7698: -48,-17 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 56: 0,9 + 58: 2,9 + 61: 1,11 + 63: 0,14 + 64: 2,14 + 76: -10,10 + 89: -10,7 + 105: 4,3 + 222: -5,-39 + 350: 5,-54 + 408: 17,-54 + 424: 24,-53 + 429: 23,-54 + 527: 28,-62 + 535: 17,-57 + 538: 19,-57 + 539: 26,-57 + 601: 10,-60 + 746: -31,-52 + 751: -32,-53 + 1187: -32,-6 + 1200: -37,-8 + 1203: -40,-10 + 1259: -35,-10 + 1369: -51,2 + 1376: -52,5 + 1574: -53,2 + 1658: -54,-34 + 1666: -50,-34 + 1673: -57,-36 + 1734: -71,-36 + 2008: -35,-48 + 2227: -33,-35 + 2229: -40,-33 + 2310: -38,-52 + 2527: -37,-3 + 2530: -35,-7 + 2540: -40,-10 + 2637: -39,6 + 2770: -22,-57 + 2771: -26,-57 + 3150: 8,-8 + 3892: -5,-29 + 3999: 6,-26 + 4026: 0,-28 + 4346: -3,-20 + 4347: -2,-19 + 4688: 2,-33 + 4776: 29,-35 + 4835: 18,-35 + 4964: 23,2 + 4966: 26,4 + 4976: 37,-2 + 5055: 40,4 + 5142: 31,14 + 5179: 14,6 + 5651: 49,-10 + 6058: 39,-24 + 6063: 55,-3 + 6120: 21,-47 + 6444: 9,-46 + 6609: -7,-52 + 6613: 4,-57 + 6617: -5,-58 + 6618: -1,-58 + 6635: -11,-62 + 6690: 13,-52 + 6917: 13,-48 + 6921: 15,-47 + 6968: 11,-42 + 7021: 7,-33 + 7029: 19,-39 + 7953: -27,1 + 8015: -19,-28 + 8073: -13,5 + 8147: -26,6 + 8190: -4,43 + 8201: -9,44 + 8212: 24,-28 + 8227: -4,42 + 8311: 28,-31 + 8314: 33,-38 + 8320: -9,46 + 8324: -5,45 + 8327: -3,46 + 8343: -5,49 + 8374: -8,53 + 8375: -8,56 + 8571: 49,-32 + 8573: 49,-40 + 8728: 43,-45 + 8744: 21,-32 + 8869: -11,-33 + 8885: -15,-44 + 8888: -8,-43 + 8890: -8,-36 + 8967: -4,50 + 8970: -5,56 + 9372: 12,10 + 9418: 17,18 + 9454: -15,-68 + 9552: 19,24 + 9613: 27,18 + 9716: -64,-52 + 9717: -64,-51 + 9814: -55,-52 + 9862: 52,9 + 9918: -9,-47 + 10110: 39,22 + 10161: 52,5 + 10382: 34,-68 + 10390: 38,-69 + 10396: 31,-70 + 10414: 26,20 + 10415: 36,20 + 10416: 36,24 + 10417: 37,31 + 10418: 33,36 + 10432: 25,31 + 10853: -16,18 + 10906: -18,20 + 10950: -34,21 + 10966: -41,26 + 10977: -41,21 + 11173: -53,17 + 11255: -48,14 + 11323: -64,6 + 11578: -70,-17 + 11590: -68,-23 + 11756: -68,-28 + 11759: -70,-29 + 11785: -75,-16 + 11817: -51,-52 + 11873: -1,-47 + 11914: 34,-74 + 12099: 46,5 + 12167: 2,-52 + 12285: 18,-71 + 12286: 20,-71 + 12287: 22,-71 + 12288: 24,-71 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 5672: 42,-23 + 5699: 40,-20 + 5703: 39,-23 + 5714: 40,-15 + 9736: 40,16 + 9750: 43,10 + 9753: 47,16 + 9764: 51,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 7695: -50,-24 + 7753: -64,-18 + 7754: -64,-21 + - node: + color: '#E6D4D4FF' + id: WarnCornerSmallSW + decals: + 1360: -31,-2 + 1365: -31,-2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 57: 2,9 + 59: 0,9 + 60: 1,11 + 65: 2,14 + 66: 0,14 + 75: -8,10 + 86: -5,9 + 88: -8,7 + 221: -3,-39 + 349: 7,-54 + 409: 20,-54 + 425: 27,-53 + 461: 17,-47 + 523: 16,-61 + 525: 28,-66 + 537: 18,-57 + 540: 25,-57 + 564: 27,-57 + 748: -35,-53 + 1135: -49,2 + 1202: -38,-10 + 1368: -51,2 + 1672: -55,-36 + 1733: -67,-36 + 2007: -32,-48 + 2009: -29,-52 + 2212: -27,-43 + 2228: -30,-35 + 2523: -37,-5 + 2531: -33,-7 + 2534: -33,-10 + 2585: -42,1 + 2692: -46,-7 + 2713: -36,6 + 2769: -24,-57 + 2790: -19,-47 + 3379: -38,-33 + 3382: -47,-34 + 3394: -20,-57 + 3744: 21,-21 + 3890: -3,-29 + 3891: -7,-29 + 4013: 5,-29 + 4025: 0,-28 + 4348: 2,-19 + 4349: 3,-20 + 4687: 4,-33 + 4775: 31,-35 + 4827: 29,4 + 5180: 18,6 + 5863: 12,5 + 6271: 11,-52 + 6300: 37,-63 + 6449: 7,-45 + 6612: 1,-52 + 6619: -1,-58 + 6636: -9,-62 + 6637: -11,-61 + 6916: 13,-48 + 6919: 11,-46 + 6969: 15,-42 + 7020: 11,-33 + 7027: 8,-40 + 7929: -26,-14 + 8076: -12,6 + 8146: -22,6 + 8310: 31,-31 + 8313: 35,-38 + 8321: -7,46 + 8325: -5,45 + 8328: -1,46 + 8342: -5,49 + 8373: -2,53 + 8376: -2,56 + 8665: 16,-63 + 8727: 38,-45 + 8730: 37,-44 + 8745: 24,-32 + 8868: -7,-33 + 8886: -13,-44 + 8893: -13,-33 + 8899: -24,-26 + 8932: -9,42 + 8959: -1,44 + 8968: -6,50 + 8969: -5,56 + 9204: -16,-69 + 9401: 15,18 + 9417: 19,18 + 9455: -10,-68 + 9553: 21,24 + 9800: -57,-52 + 9914: -7,-47 + 9987: -55,-44 + 10393: 36,-69 + 10395: 33,-70 + 10405: 29,30 + 10419: 27,36 + 10420: 23,31 + 10421: 35,31 + 10422: 34,24 + 10423: 24,24 + 10424: 24,20 + 10425: 34,20 + 10854: -13,18 + 10915: -20,24 + 10963: -38,26 + 10978: -41,21 + 11033: -39,19 + 11179: -55,17 + 11299: -50,10 + 11317: -50,5 + 11322: -62,6 + 11325: -68,6 + 11379: -71,-2 + 11385: -69,-4 + 11389: -73,3 + 11512: -54,-6 + 11559: -66,-10 + 11579: -70,-16 + 11604: -72,-29 + 11757: -66,-28 + 11782: -77,-16 + 11786: -73,-16 + 11790: -75,-19 + 11818: -49,-52 + 11978: 44,4 + 12100: 48,5 + 12267: 18,-71 + 12268: 20,-71 + 12269: 22,-71 + 12270: 24,-71 + 12271: 26,-71 + 12307: 26,-69 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 9725: 38,29 + 9733: 33,18 + 9763: 49,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 7694: -48,-24 + 7700: -52,-18 + 7701: -52,-21 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 0: 4,5 + 1190: -30,-6 + 8930: -11,44 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 583: 14,-57 + 6285: 37,-62 + 6286: 41,-62 + 11870: 0,-43 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 584: 14,-58 + 2412: -47,-28 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 739: -36,-53 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 3745: 20,-22 + 6323: 23,-62 + 6324: 22,-62 + 6325: 21,-62 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnFull + decals: + 10147: 30,-77 + 10148: 30,-76 + 10149: 30,-75 + 10150: 30,-74 + 10151: 30,-73 + 10152: 30,-72 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 41: 2,12 + 42: 2,13 + 43: 0,12 + 44: 0,13 + 45: 1,10 + 74: -10,9 + 85: -5,8 + 102: 10,3 + 103: 10,3 + 422: 27,-54 + 505: 28,-57 + 506: 28,-58 + 507: 28,-59 + 508: 28,-60 + 509: 28,-63 + 528: 17,-64 + 529: 17,-63 + 530: 17,-62 + 531: 17,-61 + 532: 17,-60 + 533: 17,-59 + 534: 17,-59 + 536: 17,-58 + 600: 10,-61 + 742: -33,-50 + 811: -37,-43 + 812: -6,12 + 813: -6,13 + 814: -6,14 + 815: -6,15 + 816: -6,16 + 817: -6,17 + 1040: -42,12 + 1127: -35,3 + 1137: -44,0 + 1138: -44,-1 + 1183: -32,-7 + 1184: -32,-5 + 1185: -32,-4 + 1199: -37,-9 + 1262: -33,-12 + 1366: -51,1 + 1573: -53,1 + 1640: -55,-42 + 1659: -54,-35 + 1660: -54,-36 + 1661: -50,-35 + 1662: -50,-36 + 2308: -38,-53 + 2413: -47,-27 + 2524: -37,-4 + 2580: -35,4 + 3362: -37,-44 + 3363: -37,-42 + 3366: -30,-42 + 3367: -30,-43 + 3368: -30,-44 + 3375: -40,-34 + 3376: -40,-35 + 3702: 16,-16 + 3718: 19,-21 + 3719: 19,-22 + 3735: 16,-26 + 3783: 7,-19 + 3996: 6,-29 + 3997: 6,-28 + 3998: 6,-27 + 4345: -3,-21 + 4738: 18,-36 + 4965: 26,3 + 4975: 37,-3 + 5050: 44,2 + 5051: 44,1 + 5141: 31,13 + 5639: 30,-25 + 5650: 49,-11 + 5716: 40,-20 + 5717: 40,-19 + 5718: 40,-19 + 5719: 40,-17 + 5720: 40,-17 + 5721: 40,-16 + 5722: 40,-16 + 5742: 42,-26 + 5743: 42,-27 + 6026: 10,4 + 6027: 10,2 + 6062: 55,-4 + 6115: 20,-44 + 6116: 20,-45 + 6119: 21,-48 + 6126: 20,-43 + 6295: 41,-63 + 6297: 37,-63 + 6319: 23,-61 + 6320: 23,-63 + 6442: 9,-47 + 6501: 9,-60 + 6502: 9,-59 + 6503: 9,-58 + 6504: 9,-57 + 6505: 9,-56 + 6580: -7,-55 + 6581: -7,-54 + 6582: -7,-53 + 6583: -8,-50 + 6584: -8,-49 + 6628: -4,-50 + 6689: 13,-53 + 6784: 43,-22 + 6911: 13,-49 + 7026: 19,-40 + 7053: 15,-31 + 7054: 15,-30 + 7055: 15,-29 + 7056: 15,-28 + 7085: -71,64 + 7086: -68,63 + 7087: -68,64 + 7117: -54,53 + 7118: -54,54 + 7119: -54,55 + 8009: -19,-31 + 8010: -19,-30 + 8011: -19,-29 + 8070: -13,2 + 8071: -13,3 + 8072: -13,4 + 8187: -4,40 + 8188: -4,41 + 8200: -9,43 + 8209: 24,-31 + 8210: 24,-30 + 8211: 24,-29 + 8337: -5,48 + 8353: -8,51 + 8354: -8,52 + 8361: -8,54 + 8362: -8,55 + 8370: -3,57 + 8382: -6,58 + 8561: 53,-33 + 8562: 53,-35 + 8563: 53,-41 + 8564: 53,-43 + 8568: 49,-35 + 8569: 49,-41 + 8570: 49,-33 + 8641: 49,-43 + 8878: -17,-44 + 8879: -17,-43 + 8880: -17,-42 + 8887: -8,-44 + 8889: -8,-37 + 8974: -4,53 + 9064: -10,36 + 9065: -10,35 + 9066: -10,33 + 9067: -10,32 + 9068: -10,30 + 9069: -10,29 + 9070: -10,27 + 9071: -10,26 + 9257: -23,-73 + 9258: -23,-72 + 9259: -23,-71 + 9290: -15,-69 + 9313: -11,-64 + 9371: 12,9 + 9415: 17,17 + 9438: -11,-65 + 9550: 19,23 + 9551: 19,22 + 9608: 23,29 + 9612: 27,17 + 9861: 52,8 + 10108: 39,20 + 10109: 39,21 + 10157: 52,4 + 10158: 54,4 + 10159: 54,5 + 10160: 54,3 + 10239: 32,-8 + 10380: 34,-69 + 10399: 28,25 + 10400: 28,21 + 10798: -9,19 + 10804: -11,21 + 10904: -18,19 + 10949: -34,20 + 10972: -40,22 + 10973: -40,23 + 11032: -40,19 + 11254: -48,13 + 11513: -48,-8 + 11575: -70,-18 + 11758: -70,-30 + 11784: -75,-17 + 11787: -72,-17 + 11822: -48,-58 + 11823: -48,-59 + 11846: 44,37 + 11847: 44,36 + 11848: 44,35 + 11872: -1,-48 + 11915: 35,-76 + 12144: -5,-59 + 12145: -1,-59 + 12162: 2,-53 + 12163: 2,-54 + 12164: 2,-55 + 12170: 4,-59 + 12171: 4,-58 + 12226: 19,-63 + 12227: 19,-62 + 12228: 19,-61 + 12229: 25,-63 + 12230: 25,-62 + 12231: 25,-61 + 12252: 18,-70 + 12253: 18,-72 + 12254: 20,-72 + 12255: 20,-70 + 12256: 22,-70 + 12257: 22,-72 + 12258: 24,-72 + 12259: 24,-70 + 12310: 27,-76 + 12311: 27,-77 + 12312: 27,-78 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineE + decals: + 5708: 40,-20 + 5709: 40,-19 + 5710: 40,-18 + 5712: 40,-17 + 5713: 40,-16 + 9735: 40,15 + 9744: 47,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnLineE + decals: + 7672: -47,-20 + 7673: -47,-21 + 7724: -63,-22 + 7725: -63,-19 + 7749: -64,-19 + 7750: -64,-22 + - node: + color: '#E6D4D4FF' + id: WarnLineGreyscaleE + decals: + 1340: -34,13 + 1341: -34,14 + 1345: -31,14 + 1346: -31,13 + - node: + color: '#D4D4D496' + id: WarnLineGreyscaleN + decals: + 1323: -35,12 + - node: + color: '#D4D4D4FF' + id: WarnLineGreyscaleN + decals: + 1330: -35,12 + - node: + color: '#E6D4D4FF' + id: WarnLineGreyscaleN + decals: + 1332: -35,12 + 1336: -33,12 + 1337: -32,12 + 1347: -30,12 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 1727: -70.00016,-35.780647 + 1728: -69.00093,-35.780647 + 1729: -68.00375,-35.780647 + - node: + color: '#D4D4D496' + id: WarnLineGreyscaleW + decals: + 1324: -34,13 + 1325: -34,14 + 1326: -34,14 + - node: + color: '#D4D4D4FF' + id: WarnLineGreyscaleW + decals: + 1327: -34,14 + 1328: -34,13 + - node: + color: '#E6D4D4FF' + id: WarnLineGreyscaleW + decals: + 1338: -31,13 + 1339: -31,14 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 1872: -90,-34 + 1873: -90,-35 + 1874: -90,-36 + 7073: -74,51 + 7074: -74,50 + 7075: -74,49 + 7076: -74,48 + 8158: -27,10 + 8159: -27,11 + 8160: -27,12 + - node: + color: '#E6D4D4FF' + id: WarnLineN + decals: + 1359: -32,-2 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1: 3,5 + 25: -2,9 + 26: -1,9 + 27: 1,9 + 28: 3,9 + 29: 4,9 + 30: 4,14 + 31: 3,14 + 32: -1,14 + 33: -2,14 + 34: 1,14 + 46: -2,11 + 47: -1,11 + 48: -1,11 + 49: 0,11 + 50: 2,11 + 51: 3,11 + 52: 4,11 + 72: -9,10 + 90: -9,7 + 217: -5,-41 + 218: -4,-41 + 219: -3,-41 + 220: -4,-39 + 224: 0,-37 + 225: -1,-37 + 228: 1,-37 + 254: 19,-35 + 426: 25,-53 + 427: 26,-53 + 489: 15,-61 + 510: 27,-66 + 511: 26,-66 + 512: 25,-66 + 513: 24,-66 + 514: 20,-66 + 515: 19,-66 + 516: 17,-66 + 517: 18,-66 + 518: 16,-66 + 519: 15,-66 + 541: 24,-57 + 542: 23,-57 + 543: 22,-57 + 544: 21,-57 + 545: 20,-57 + 588: 34,-63 + 589: 35,-63 + 592: 14,-61 + 593: 13,-61 + 594: 12,-61 + 595: 11,-61 + 731: -34,-48 + 732: -33,-48 + 749: -34,-54 + 750: -33,-54 + 1144: -39,-5 + 1188: -31,-6 + 1257: -34,-10 + 1363: -51,0 + 1375: -51,5 + 1657: -59,-41 + 1671: -56,-36 + 1730: -70,-36 + 1731: -69,-36 + 1732: -68,-36 + 2411: -47,-26 + 2522: -38,-5 + 2529: -34,-7 + 2539: -39,-10 + 2635: -38,6 + 2636: -37,6 + 2727: -39,-13 + 2730: -38,-13 + 2768: -25,-57 + 2778: -21,-59 + 2779: -25,-59 + 2789: -20,-47 + 3149: 9,-8 + 3373: -32,-35 + 3374: -31,-35 + 3384: -23,-51 + 3385: -24,-51 + 3388: -21,-57 + 3712: 18,-23 + 3713: 17,-23 + 3714: 16,-23 + 3888: -8,-29 + 3889: -4,-29 + 4017: 7,-26 + 4023: -1,-28 + 4024: 1,-28 + 4341: -1,-19 + 4342: 0,-19 + 4343: 1,-19 + 4686: 3,-33 + 4774: 30,-35 + 4962: 25,2 + 4963: 24,2 + 5052: 41,4 + 5053: 42,4 + 5054: 43,4 + 5159: 37,13 + 5160: 36,13 + 5198: 15,6 + 5199: 16,6 + 5200: 17,6 + 5640: 30,-25 + 5641: 29,-25 + 5642: 28,-25 + 5666: 45,-23 + 5667: 45,-21 + 5852: 26,-17 + 5853: 25,-17 + 5854: 24,-17 + 5855: 23,-17 + 6266: 18,-54 + 6267: 19,-54 + 6292: 38,-64 + 6293: 39,-64 + 6294: 40,-64 + 6496: 6,-54 + 6497: 6,-61 + 6498: 7,-61 + 6499: 8,-61 + 6595: -4,-58 + 6596: -3,-58 + 6597: -2,-58 + 6598: 0,-58 + 6599: 1,-58 + 6600: 2,-58 + 6601: 3,-58 + 6602: -6,-52 + 6603: -5,-52 + 6604: -4,-52 + 6605: -3,-52 + 6606: -2,-52 + 6607: -1,-52 + 6608: 0,-52 + 6634: -10,-62 + 6912: 11,-48 + 6913: 12,-48 + 6914: 14,-48 + 6965: 13,-42 + 6966: 12,-42 + 6967: 14,-42 + 7017: 8,-33 + 7018: 9,-33 + 7019: 10,-33 + 7081: -76,44 + 7082: -75,44 + 7083: -72,63 + 7353: -77,43 + 7354: -76,43 + 7355: -75,43 + 7924: -24,-16 + 7925: -25,-16 + 7926: -26,-16 + 7951: -26,1 + 7952: -25,1 + 8069: -24,1 + 8074: -13,6 + 8143: -25,6 + 8144: -24,6 + 8145: -23,6 + 8155: -25,14 + 8156: -24,14 + 8157: -23,14 + 8184: -6,39 + 8185: -5,39 + 8189: -3,43 + 8196: -2,43 + 8197: -10,42 + 8199: -10,40 + 8308: 29,-31 + 8309: 30,-31 + 8312: 34,-38 + 8319: -8,46 + 8323: -6,45 + 8329: -2,46 + 8333: -4,45 + 8344: -7,50 + 8345: -8,50 + 8346: -3,50 + 8347: -2,50 + 8355: -7,53 + 8356: -3,53 + 8363: -7,56 + 8364: -6,56 + 8365: -4,56 + 8366: -3,56 + 8664: 15,-63 + 8723: 37,-47 + 8724: 44,-47 + 8725: 37,-45 + 8726: 44,-45 + 8731: 39,-48 + 8732: 40,-48 + 8733: 41,-48 + 8734: 42,-48 + 8742: 22,-32 + 8743: 23,-32 + 8865: -10,-33 + 8866: -9,-33 + 8867: -8,-33 + 8884: -14,-44 + 8892: -14,-33 + 8902: -5,38 + 9254: -26,-74 + 9255: -25,-74 + 9256: -23,-74 + 9414: 18,18 + 9450: -14,-68 + 9451: -13,-68 + 9452: -12,-68 + 9453: -11,-68 + 9705: -63,-51 + 9706: -62,-51 + 9707: -61,-51 + 9708: -61,-52 + 9709: -62,-52 + 9710: -63,-52 + 9781: -56,-53 + 9907: -8,-47 + 9986: -56,-44 + 10011: -50,-54 + 10012: -51,-54 + 10013: -49,-54 + 10388: 37,-70 + 10394: 32,-70 + 10404: 28,30 + 10806: -10,21 + 10840: -15,18 + 10841: -14,18 + 10964: -39,26 + 10965: -40,26 + 10976: -42,21 + 10981: -41,20 + 11181: -57,17 + 11184: -54,16 + 11190: -59,18 + 11191: -60,18 + 11192: -61,18 + 11193: -62,18 + 11321: -63,6 + 11377: -72,-2 + 11511: -55,-6 + 11589: -67,-23 + 11735: -73,-13 + 11736: -74,-13 + 11755: -67,-28 + 11766: -74,-30 + 11811: -59,-52 + 11816: -50,-52 + 11852: -29,-27 + 11902: 40,-69 + 11913: 35,-74 + 12094: 47,5 + 12095: 46,8 + 12096: 48,8 + 12117: -8,-60 + 12118: -7,-60 + 12119: -6,-60 + 12120: -5,-60 + 12121: -4,-60 + 12122: -3,-60 + 12123: -3,-60 + 12124: -2,-60 + 12125: -1,-60 + 12126: 1,-60 + 12127: 0,-60 + 12128: 2,-60 + 12129: 4,-60 + 12130: 3,-60 + 12261: 17,-71 + 12262: 19,-71 + 12263: 21,-71 + 12264: 23,-71 + 12265: 25,-71 + 12297: 17,-69 + 12298: 18,-69 + 12299: 19,-69 + 12300: 20,-69 + 12301: 21,-69 + 12302: 22,-69 + 12303: 22,-69 + 12304: 23,-69 + 12305: 25,-69 + 12306: 24,-69 + 12313: 20,-79 + 12314: 21,-79 + 12315: 22,-79 + 12316: 23,-79 + 12317: 24,-79 + 12318: 25,-79 + 12319: 26,-79 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineN + decals: + 5674: 42,-23 + 5675: 41,-23 + 5692: 40,-23 + 9408: 18,17 + 9751: 44,10 + 9762: 50,14 + 9770: 52,15 + 9771: 53,15 + 9772: 54,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnLineN + decals: + 7358: -77,44 + 7662: -49,-24 + 7663: -49,-22 + 7664: -48,-22 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 36: 2,12 + 37: 2,13 + 38: 0,12 + 39: 0,13 + 40: 1,10 + 73: -8,9 + 87: -5,8 + 104: -11,3 + 416: 23,-54 + 428: 27,-54 + 491: 16,-62 + 492: 16,-60 + 493: 16,-59 + 494: 16,-58 + 495: 16,-57 + 521: 16,-65 + 522: 16,-64 + 546: 27,-58 + 547: 27,-59 + 548: 27,-60 + 549: 27,-61 + 550: 27,-62 + 551: 27,-63 + 552: 27,-64 + 740: -35,-52 + 741: -34,-50 + 810: -35,-43 + 818: -4,17 + 819: -4,16 + 820: -4,15 + 821: -4,14 + 822: -4,13 + 823: -4,12 + 824: -4,11 + 1124: -32,4 + 1125: -32,3 + 1134: -49,1 + 1139: -42,0 + 1264: -36,-16 + 1265: -36,-15 + 1268: -36,-14 + 1269: -36,-13 + 1270: -36,-12 + 1367: -51,1 + 1641: -56,-42 + 1656: -60,-40 + 1663: -51,-35 + 1664: -51,-36 + 2011: -29,-53 + 2414: -47,-27 + 2586: -42,-1 + 2691: -46,-8 + 3364: -35,-42 + 3365: -35,-44 + 3369: -27,-44 + 3370: -27,-42 + 3377: -38,-34 + 3378: -38,-35 + 3380: -47,-36 + 3381: -47,-35 + 3707: 18,-16 + 3723: 15,-21 + 3724: 15,-22 + 3736: 18,-26 + 3743: 21,-22 + 4000: 4,-28 + 4001: 4,-27 + 4002: 4,-26 + 4344: 3,-21 + 4825: 29,2 + 4826: 29,3 + 5862: 12,3 + 6004: -11,4 + 6005: -11,2 + 6028: 12,4 + 6029: 12,2 + 6066: 52,-7 + 6118: 17,-48 + 6296: 41,-63 + 6321: 21,-61 + 6322: 21,-63 + 6445: 7,-49 + 6446: 7,-48 + 6447: 7,-47 + 6448: 7,-46 + 6506: 6,-57 + 6510: 9,-62 + 6585: 1,-53 + 6586: 1,-54 + 6587: 1,-55 + 6629: -2,-50 + 6633: -11,-62 + 6688: 11,-53 + 6910: 13,-49 + 6920: 11,-47 + 7025: 8,-41 + 7057: 17,-28 + 7058: 17,-29 + 7059: 17,-30 + 7060: 17,-31 + 7065: -80,49 + 7066: -80,50 + 7067: -80,51 + 7927: -26,-15 + 8012: -17,-29 + 8013: -17,-30 + 8014: -17,-31 + 8283: -9,40 + 8304: 27,-31 + 8305: 27,-30 + 8306: 27,-29 + 8336: -5,48 + 8351: -2,51 + 8352: -2,52 + 8359: -2,54 + 8360: -2,55 + 8367: -7,57 + 8381: -4,58 + 8560: 51,-33 + 8565: 51,-41 + 8566: 51,-43 + 8567: 51,-35 + 8881: -15,-42 + 8882: -15,-43 + 8883: -15,-44 + 8898: -24,-27 + 8941: -1,43 + 8973: -6,53 + 9072: -10,26 + 9073: -10,27 + 9074: -10,29 + 9075: -10,30 + 9076: -10,32 + 9077: -10,33 + 9078: -10,35 + 9079: -10,36 + 9193: 9,8 + 9194: 9,9 + 9195: 9,10 + 9199: -16,-74 + 9200: -16,-73 + 9201: -16,-72 + 9202: -16,-70 + 9203: -16,-71 + 9250: -27,-73 + 9251: -27,-72 + 9252: -27,-71 + 9312: -11,-64 + 9399: 15,17 + 9416: 19,17 + 9439: -11,-65 + 9548: 21,23 + 9549: 21,22 + 10238: 34,-8 + 10402: 29,29 + 10403: 29,28 + 10412: 32,21 + 10413: 32,25 + 10793: -1,19 + 10914: -20,23 + 10948: -28,20 + 10960: -38,20 + 10961: -38,24 + 10962: -38,25 + 10974: -43,23 + 10975: -43,22 + 10982: -38,21 + 10983: -38,22 + 10984: -38,23 + 11168: -51,17 + 11298: -50,9 + 11324: -68,5 + 11384: -69,-5 + 11387: -73,2 + 11558: -66,-11 + 11561: -68,-12 + 11562: -68,-11 + 11563: -68,-10 + 11574: -70,-17 + 11722: -72,-30 + 11824: -52,-58 + 11825: -52,-59 + 11843: 40,35 + 11844: 40,36 + 11845: 40,37 + 11916: 35,-76 + 12105: -9,-49 + 12106: -9,-50 + 12107: -9,-51 + 12108: -9,-52 + 12109: -9,-53 + 12110: -9,-54 + 12111: -9,-55 + 12112: -9,-56 + 12113: -9,-57 + 12114: -9,-58 + 12115: -9,-59 + 12131: 4,-59 + 12132: -1,-59 + 12223: 19,-63 + 12224: 19,-62 + 12225: 19,-61 + 12232: 25,-63 + 12233: 25,-62 + 12234: 25,-61 + 12245: 18,-72 + 12246: 18,-70 + 12247: 20,-70 + 12248: 22,-70 + 12249: 24,-70 + 12250: 24,-72 + 12251: 26,-72 + 12260: 22,-72 + 12266: 20,-72 + 12320: 19,-78 + 12321: 19,-77 + 12322: 19,-76 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineS + decals: + 9724: 38,28 + 9732: 33,17 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnLineS + decals: + 7668: -52,-19 + 7669: -52,-22 + 7670: -50,-20 + 7671: -50,-21 + 7726: -53,-22 + 7727: -53,-19 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 2: 3,5 + 3: 1,5 + 5: -2,9 + 6: -1,9 + 7: 0,9 + 8: -2,11 + 9: -1,11 + 10: -1,14 + 11: -1,14 + 12: -2,14 + 13: 0,14 + 14: 1,14 + 15: 1,14 + 16: 2,14 + 17: 3,14 + 18: 3,14 + 19: 4,14 + 20: 4,11 + 21: 3,11 + 22: 2,9 + 23: 4,9 + 24: 3,9 + 35: 1,11 + 91: -9,8 + 223: 0,-37 + 226: -1,-37 + 227: 1,-37 + 253: 19,-37 + 275: 22,-34 + 276: 23,-34 + 418: 24,-53 + 419: 25,-53 + 420: 26,-53 + 490: 15,-61 + 497: 17,-56 + 498: 20,-56 + 499: 21,-56 + 500: 22,-56 + 501: 24,-56 + 502: 25,-56 + 503: 26,-56 + 520: 15,-66 + 553: 18,-65 + 554: 19,-65 + 555: 20,-65 + 556: 25,-65 + 557: 24,-65 + 558: 25,-65 + 559: 26,-65 + 565: 29,-60 + 596: 11,-61 + 597: 12,-61 + 598: 13,-61 + 599: 14,-61 + 745: -31,-52 + 1189: -31,-6 + 1261: -39,-15 + 1364: -51,3 + 1373: -51,-2 + 1655: -59,-39 + 1774: -68,-38 + 1775: -69,-38 + 1776: -70,-38 + 1891: -83,-40 + 1892: -82,-40 + 1893: -81,-40 + 2215: -31,-30 + 2216: -32,-30 + 2217: -34,-30 + 2218: -35,-30 + 2219: -37,-30 + 2220: -38,-30 + 2221: -40,-30 + 2222: -41,-30 + 2223: -43,-30 + 2224: -44,-30 + 2225: -46,-30 + 2226: -47,-30 + 2323: -22,-37 + 2535: -38,-7 + 2536: -39,-7 + 2581: -37,4 + 2582: -38,4 + 2724: -38,-15 + 2776: -21,-59 + 2777: -25,-59 + 3148: 11,-10 + 3371: -32,-37 + 3372: -31,-37 + 3386: -23,-54 + 3387: -21,-54 + 3720: 18,-20 + 3721: 17,-20 + 3722: 16,-20 + 3725: 21,-21 + 3882: -4,-31 + 3883: -8,-31 + 4011: 5,-25 + 4027: -1,-31 + 4028: 0,-31 + 4029: 1,-31 + 4052: 4,-31 + 4180: 0,-21 + 4576: 7,-16 + 4708: 3,-35 + 4750: 30,-37 + 4751: 31,-37 + 4752: 29,-37 + 4753: 28,-37 + 4754: 27,-37 + 4756: 26,-37 + 4764: 29,-33 + 4765: 30,-33 + 4957: 24,0 + 4958: 25,0 + 4959: 26,0 + 5155: 33,13 + 5157: 36,13 + 5158: 37,13 + 5181: 15,4 + 5182: 16,4 + 5183: 17,4 + 5643: 30,-11 + 5668: 45,-23 + 5669: 45,-21 + 5723: 41,-21 + 5724: 42,-21 + 5725: 42,-21 + 5726: 43,-21 + 5848: 26,-19 + 5849: 25,-19 + 5850: 24,-19 + 5851: 23,-19 + 6008: -5,5 + 6013: -9,5 + 6065: 55,-3 + 6289: 38,-64 + 6290: 39,-64 + 6291: 40,-64 + 6327: 26,-68 + 6588: -6,-56 + 6589: -5,-56 + 6590: -4,-56 + 6591: -3,-56 + 6592: -2,-56 + 6593: -1,-56 + 6594: 0,-56 + 6687: 13,-51 + 6970: 9,-36 + 6971: 8,-36 + 6972: 10,-36 + 7350: -77,43 + 7351: -76,43 + 7352: -75,43 + 7922: -26,-18 + 7923: -25,-18 + 7948: -26,-1 + 7949: -25,-1 + 7950: -24,-1 + 8077: -25,4 + 8078: -24,4 + 8079: -23,4 + 8151: -25,12 + 8152: -24,12 + 8153: -23,12 + 8191: -2,43 + 8192: -3,43 + 8193: -4,43 + 8194: -7,43 + 8195: -8,43 + 8198: -10,40 + 8258: -1,46 + 8259: 0,46 + 8315: -10,46 + 8316: -9,46 + 8317: -8,46 + 8318: -7,46 + 8330: -3,46 + 8348: -7,50 + 8349: -5,50 + 8350: -3,50 + 8357: -7,53 + 8358: -3,53 + 8368: -8,56 + 8369: -2,56 + 8385: -5,57 + 8663: 15,-63 + 8862: -8,-36 + 8863: -9,-36 + 8864: -10,-36 + 8957: -6,43 + 8958: -5,43 + 8965: -4,50 + 8966: -6,50 + 9190: 6,7 + 9191: 7,7 + 9192: 8,7 + 9261: -26,-70 + 9262: -25,-70 + 9402: 11,13 + 9616: 21,30 + 9617: 21,32 + 9630: -30,-15 + 9702: -62,-53 + 9703: -63,-53 + 9704: -61,-53 + 9711: -63,-52 + 9712: -62,-52 + 9713: -61,-52 + 9780: -56,-51 + 10251: 29,17 + 10252: 30,17 + 10253: 31,17 + 10389: 37,-68 + 10397: 31,-66 + 10401: 30,34 + 10407: 30,32 + 10451: 27,-39 + 10452: 20,-39 + 10783: 2,19 + 10784: 4,19 + 10799: -10,19 + 10805: -10,21 + 10857: -14,16 + 10858: -15,16 + 10905: -19,20 + 10954: -38,17 + 10955: -40,17 + 10967: -41,25 + 11015: -42,24 + 11031: -39,19 + 11155: -45,18 + 11156: -46,18 + 11157: -47,18 + 11158: -48,18 + 11167: -50,17 + 11177: -54,18 + 11180: -57,17 + 11186: -59,16 + 11187: -60,16 + 11188: -61,16 + 11189: -62,16 + 11376: -72,-2 + 11485: -62,-8 + 11654: -67,-25 + 11733: -74,-9 + 11734: -73,-9 + 11752: -68,-31 + 11753: -67,-31 + 11754: -66,-31 + 11765: -74,-30 + 11810: -59,-52 + 11849: -29,-30 + 11867: 0,-45 + 11901: 40,-69 + 12091: 46,-4 + 12092: 48,-4 + 12093: 47,7 + 12101: 47,5 + 12133: -4,-60 + 12134: -3,-60 + 12135: -2,-60 + 12136: 0,-60 + 12137: 1,-60 + 12138: 2,-60 + 12139: 3,-60 + 12152: -7,-51 + 12153: -6,-51 + 12154: -5,-51 + 12155: -4,-51 + 12156: -3,-51 + 12157: -2,-51 + 12158: -1,-51 + 12159: 0,-51 + 12160: 1,-51 + 12165: 3,-56 + 12235: 17,-71 + 12236: 19,-71 + 12237: 21,-71 + 12238: 23,-71 + 12239: 25,-71 + 12240: 25,-73 + 12241: 23,-73 + 12242: 21,-73 + 12243: 19,-73 + 12244: 17,-73 + 12294: 18,-68 + 12323: 20,-75 + 12324: 21,-75 + 12325: 22,-75 + 12326: 23,-75 + 12327: 25,-75 + 12328: 26,-75 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnLineW + decals: + 5695: 41,-21 + 5696: 42,-21 + 9405: 18,15 + 9726: 42,29 + 9727: 42,31 + 9728: 41,31 + 9729: 43,31 + 9741: 43,12 + 9761: 50,16 + 9767: 53,15 + 9768: 52,15 + 9769: 54,15 + - node: + zIndex: 9 + color: '#FFFFFFFF' + id: WarnLineW + decals: + 7565: -31,-18 + 7665: -49,-17 + 7666: -49,-19 + 7667: -48,-19 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinCornerNe + decals: + 3665: 1,-7 + 3793: 10,-26 + 5286: 37,-11 + 7248: -74,55 + 10093: 50,19 + 10101: 50,24 + 11020: -37,25 + 11021: -38,26 + 11221: -45,21 + 11444: -71,3 + 11445: -71,3 + 11454: -75,3 + - node: + zIndex: 9 + color: '#E3D9D9FF' + id: WoodTrimThinCornerNe + decals: + 7515: -27,-24 + 7521: -36,-24 + 7522: -33,-24 + 7523: -30,-24 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 3067: -20,-2 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinCornerNw + decals: + 3668: -1,-7 + 4562: -17,-11 + 5294: 35,-11 + 7249: -78,55 + 10102: 47,24 + 11027: -41,26 + 11223: -48,21 + 11232: -51,20 + 11446: -73,3 + 11455: -76,3 + - node: + zIndex: 9 + color: '#E3D9D9FF' + id: WoodTrimThinCornerNw + decals: + 7516: -28,-24 + 7524: -37,-24 + 7525: -34,-24 + 7526: -31,-24 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 3068: -21,-2 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinCornerSe + decals: + 3650: 12,-21 + 3803: -4,-26 + 5287: 37,-13 + 7246: -74,53 + 10092: 50,22 + 10094: 50,18 + 11022: -37,20 + 11222: -45,20 + 11451: -71,1 + 11457: -75,1 + - node: + zIndex: 9 + color: '#E3D9D9FF' + id: WoodTrimThinCornerSe + decals: + 7527: -36,-25 + 7528: -33,-25 + 7529: -30,-25 + 7530: -27,-25 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 3070: -20,-3 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinCornerSw + decals: + 3787: 10,-28 + 5295: 35,-13 + 7247: -78,53 + 11231: -51,19 + 11447: -73,2 + 11456: -76,1 + - node: + zIndex: 9 + color: '#E3D9D9FF' + id: WoodTrimThinCornerSw + decals: + 7517: -28,-25 + 7518: -31,-25 + 7519: -34,-25 + 7520: -37,-25 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 3069: -21,-3 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinEndE + decals: + 3784: 12,-28 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinEndN + decals: + 3645: 12,-16 + 3681: -13,-1 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinEndS + decals: + 3655: 8,-23 + 3682: -13,-2 + 3972: -21,-22 + 11448: -72,0 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinInnerNe + decals: + 3776: 8,-21 + 3789: 10,-28 + 3795: 9,-26 + 7253: -74,54 + 7263: -74,57 + 10105: 48,24 + 10115: 39,19 + 11023: -38,25 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinInnerNw + decals: + 3660: 12,-21 + 3806: -6,-26 + 7266: -77,58 + 10103: 47,23 + 10106: 48,24 + 11229: -48,20 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinInnerSe + decals: + 3680: -8,-2 + 3686: -19,-1 + 3775: 8,-21 + 3785: 11,-28 + 3968: -21,-21 + 7252: -74,54 + 7259: -77,57 + 7260: -74,60 + 10114: 39,22 + 11024: -38,20 + 11235: -50,20 + 11453: -72,1 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinInnerSw + decals: + 3777: 8,-21 + 3786: 11,-28 + 3792: 10,-26 + 3973: -21,-21 + 7258: -75,57 + 7264: -77,60 + 11233: -50,19 + 11450: -72,2 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinLineE + decals: + 3646: 12,-17 + 3647: 12,-18 + 3648: 12,-19 + 3649: 12,-20 + 3654: 8,-22 + 3666: 1,-8 + 3670: -5,-3 + 3671: -5,-4 + 3672: -5,-5 + 3673: -5,-6 + 3674: -5,-7 + 3675: -5,-8 + 3676: -8,-3 + 3677: -8,-4 + 3678: -8,-5 + 3679: -8,-6 + 3687: -19,-2 + 3688: -19,-3 + 3689: -19,-4 + 3772: 8,-20 + 3773: 8,-19 + 3790: 10,-27 + 3796: 9,-25 + 3801: -4,-24 + 3802: -4,-25 + 5288: 37,-12 + 7239: -68,46 + 7240: -68,45 + 7241: -68,44 + 7261: -74,59 + 7262: -74,58 + 10085: 45,23 + 10086: 45,22 + 10087: 47,19 + 10088: 47,18 + 10100: 50,23 + 10112: 39,20 + 10113: 39,21 + 11016: -37,21 + 11017: -37,22 + 11018: -37,23 + 11019: -37,24 + 11034: -38,19 + 11234: -50,19 + 11452: -71,2 + 11458: -75,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 9626: 50,24 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinLineN + decals: + 3657: 9,-21 + 3658: 10,-21 + 3659: 11,-21 + 3669: 0,-7 + 3690: -20,-5 + 3691: -21,-5 + 3692: -22,-5 + 3788: 11,-28 + 3807: -7,-26 + 3812: -8,-26 + 3964: -18,-21 + 3965: -19,-21 + 3966: -20,-21 + 3967: -21,-21 + 4563: -16,-11 + 5289: 36,-11 + 7250: -77,55 + 7251: -75,55 + 10089: 48,19 + 10090: 49,19 + 10104: 49,24 + 10107: 46,23 + 11025: -39,26 + 11026: -40,26 + 11227: -46,21 + 11228: -47,21 + 11230: -50,20 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 9623: 47,24 + 9624: 50,24 + 9627: 50,24 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinLineS + decals: + 3651: 11,-21 + 3652: 10,-21 + 3653: 9,-21 + 3683: -16,-1 + 3684: -17,-1 + 3685: -18,-1 + 3774: 7,-21 + 3794: 9,-26 + 3808: -8,-26 + 3809: -7,-26 + 3810: -6,-26 + 3811: -5,-26 + 3969: -20,-21 + 3970: -19,-21 + 3971: -18,-21 + 5291: 36,-13 + 7254: -75,53 + 7255: -76,53 + 7256: -77,53 + 7257: -76,57 + 10091: 49,22 + 10095: 49,18 + 10096: 48,18 + 10097: 46,22 + 10098: 47,22 + 10099: 48,22 + 11224: -48,20 + 11225: -47,20 + 11226: -46,20 + - node: + color: '#E3D9D9FF' + id: WoodTrimThinLineW + decals: + 3656: 8,-22 + 3661: 12,-20 + 3662: 12,-19 + 3663: 12,-18 + 3664: 12,-17 + 3667: -1,-8 + 3791: 10,-27 + 3797: 9,-25 + 3804: -6,-24 + 3805: -6,-25 + 4561: -17,-14 + 5290: 35,-12 + 7245: -78,54 + 7265: -77,59 + 11449: -72,1 + 11459: -76,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 9625: 47,24 + - node: + color: '#DE3A3A96' + id: beepsky + decals: + 8955: -4.9757624,46.001656 + - node: + color: '#DE3A3AFF' + id: beepsky + decals: + 8956: -4.9820666,46.001656 + - node: + color: '#FFFFFFFF' + id: beepsky + decals: + 8954: -5,46 + - node: + angle: -2.356194490192345 rad + color: '#EDD83FC6' + id: chevron + decals: + 3954: -11.6942835,-25.33976 + 3955: -9.673007,-22.33976 + - node: + angle: -0.8377580409572782 rad + color: '#EDD83FC6' + id: chevron + decals: + 3950: -9.6942835,-19.680185 + 3951: -11.6942835,-22.680183 + - node: + angle: 0.8377580409572782 rad + color: '#EDD83FC6' + id: chevron + decals: + 3949: -16.247475,-19.701462 + 3952: -14.332581,-22.63763 + - node: + angle: 2.356194490192345 rad + color: '#EDD83FC6' + id: chevron + decals: + 3953: -14.353857,-25.297207 + 3956: -16.33258,-22.33976 + - node: + cleanable: True + color: '#000000FF' + id: dot + decals: + 11980: 2.7905197,-70.74029 + 11981: 2.8686447,-70.63091 + 11982: 2.9467697,-70.55279 + 11983: 3.1811447,-70.50591 + 11984: 3.2436447,-70.50591 + 11985: 3.2748947,-70.50591 + 11986: 3.3373947,-70.50591 + 11987: 3.3373947,-70.52154 + 11988: 3.2280197,-70.50591 + 11989: 3.0248947,-70.52154 + 11990: 3.0092697,-70.52154 + 11991: 2.9311447,-70.58404 + 11992: 2.8686447,-70.63091 + 11993: 2.9623947,-70.61529 + 11994: 3.0873947,-70.53716 + 11995: 3.1811447,-70.50591 + 11996: 2.8373947,-70.70904 + 11997: 3.8686447,-70.61529 + 11998: 3.8686447,-70.59966 + 11999: 3.9467697,-70.55279 + 12000: 3.9780197,-70.55279 + 12001: 4.0092697,-70.56841 + 12002: 4.0561447,-70.56841 + 12003: 4.0717697,-70.56841 + 12004: 4.1342697,-70.56841 + 12005: 4.1811447,-70.56841 + 12006: 4.1967697,-70.58404 + 12007: 4.2280197,-70.59966 + 12008: 4.2436447,-70.63091 + 12009: 4.2436447,-70.64654 + 12010: 4.2592697,-70.69341 + 12011: 4.2592697,-70.69341 + 12012: 4.3686447,-70.75591 + 12013: 4.3373947,-70.74029 + 12014: 4.3061447,-70.72466 + 12015: 4.2748947,-70.67779 + 12016: 3.1655197,-70.61529 + 12017: 3.1967697,-70.58404 + 12018: 3.1967697,-70.58404 + 12019: 3.1811447,-70.63091 + 12020: 3.1811447,-70.67779 + 12021: 3.2123947,-70.75591 + 12022: 3.2123947,-70.83404 + 12023: 3.2123947,-70.91216 + 12024: 3.2123947,-70.94341 + 12025: 3.2280197,-70.88091 + 12026: 3.2280197,-70.80279 + 12027: 3.2436447,-70.67779 + 12028: 3.2905197,-70.55279 + 12029: 3.2905197,-70.53716 + 12030: 3.2748947,-70.55279 + 12031: 3.2436447,-70.66216 + 12032: 3.2280197,-70.75591 + 12033: 3.1967697,-70.84966 + 12034: 3.2123947,-70.77154 + 12035: 3.8998947,-70.64654 + 12036: 3.8686447,-70.70904 + 12037: 3.8530197,-70.88091 + 12038: 3.8686447,-70.89654 + 12039: 3.8686447,-70.92779 + 12040: 3.9467697,-70.80279 + 12041: 3.9311447,-70.63091 + 12042: 3.9155197,-70.77154 + 12043: 3.8998947,-70.91216 + 12044: 3.8998947,-70.75591 + 12045: 3.8842697,-70.55279 + 12046: 3.9155197,-70.83404 + 12047: 3.9155197,-70.99029 + 12048: 3.8842697,-71.03716 + 12049: 3.8686447,-70.92779 + 12050: 3.8842697,-70.77154 + 12051: 3.9155197,-70.64654 + 12052: 3.8842697,-70.91216 + 12053: 3.8842697,-70.97466 + 12054: 3.9311447,-70.75591 + 12055: 3.5248947,-71.14654 + 12056: 3.5248947,-71.14654 + 12057: 3.4936447,-71.08404 + 12058: 3.5873947,-71.08404 + 12059: 3.6342697,-71.09966 + 12060: 3.6342697,-71.11529 + 12061: 3.5717697,-71.13091 + 12062: 3.5561447,-71.13091 + 12063: 3.1498947,-71.53716 + 12064: 3.1967697,-71.53716 + 12065: 3.2280197,-71.53716 + 12066: 3.3217697,-71.53716 + 12067: 3.3530197,-71.52154 + 12068: 3.4311447,-71.47466 + 12069: 3.4311447,-71.47466 + 12070: 3.4623947,-71.49029 + 12071: 3.5092697,-71.52154 + 12072: 3.5873947,-71.58404 + 12073: 3.6030197,-71.59966 + 12074: 3.6811447,-71.63091 + 12075: 3.7123947,-71.63091 + 12076: 3.7748947,-71.64654 + 12077: 3.7905197,-71.64654 + 12078: 3.2280197,-71.05279 + 12079: 3.2280197,-71.05279 + 12080: 3.2280197,-71.03716 + 12081: 3.2280197,-70.97466 + 12082: 3.9623947,-70.95904 + 12083: 3.8998947,-70.81841 + 12084: 3.8998947,-70.74029 + - node: + cleanable: True + color: '#79150096' + id: dot + decals: + 1886: -82.76391,-34.741096 + 1887: -83.1989,-35.220215 + 1888: -83.1989,-35.220215 + - node: + color: '#791500FF' + id: e + decals: + 7536: -86.969666,49.32222 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#79150096' + id: footprint + decals: + 1889: -81.8372,-33.817207 + 1890: -81.59764,-34.1072 + - node: + color: '#FFFFFFFF' + id: ghost + decals: + 9456: 10,18 + - node: + color: '#791500FF' + id: h + decals: + 7531: -87.032166,49.94722 + 7534: -88.11029,49.400345 + - node: + cleanable: True + color: '#D4D4D428' + id: matt + decals: + 11403: -71,1 + - node: + color: '#791500FF' + id: o + decals: + 7532: -86.64154,49.931595 + 7537: -86.094666,49.369095 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#9A6C007C' + id: pawprint + decals: + 1812: -68,-43 + 1813: -68,-43 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#9A6C007C' + id: pawprint + decals: + 1814: -68,-43 + 1815: -68,-43 + - node: + color: '#791500FF' + id: s + decals: + 7533: -86.188416,49.88472 + 7538: -86.438416,49.35347 + 7539: -85.61029,49.29097 + - node: + cleanable: True + color: '#00000042' + id: splatter + decals: + 6834: 15,6 + - node: + cleanable: True + angle: 0.4014257279586958 rad + color: '#00000042' + id: splatter + decals: + 6835: 15,6 + 6836: 15,6 + - node: + cleanable: True + angle: -1.710422666954443 rad + color: '#00000074' + id: splatter + decals: + 6837: 15,6 + - node: + cleanable: True + color: '#2E0000FF' + id: splatter + decals: + 11723: -72,-30 + 11724: -71,-32 + 11725: -68,-30 + 11726: -67,-30 + - node: + cleanable: True + color: '#4A0600FF' + id: splatter + decals: + 9643: -29,-15 + 9644: -28,-15 + 9675: -26,-28 + - node: + cleanable: True + color: '#65150093' + id: splatter + decals: + 11761: -70,-30 + - node: + cleanable: True + color: '#7915003A' + id: splatter + decals: + 6833: 21,6 + - node: + angle: -0.6283185307179586 rad + color: '#7915004D' + id: splatter + decals: + 1937: -88,-47 + - node: + cleanable: True + angle: -4.869468613064179 rad + color: '#79150096' + id: splatter + decals: + 1708: -56,-39 + - node: + cleanable: True + angle: -3.3335788713091694 rad + color: '#79150096' + id: splatter + decals: + 3642: 16,-14 + - node: + cleanable: True + angle: -3.3161255787892263 rad + color: '#79150096' + id: splatter + decals: + 2732: -38,-15 + - node: + cleanable: True + angle: -3.1764992386296798 rad + color: '#79150096' + id: splatter + decals: + 3570: 12,-10 + 7244: -79,51 + - node: + cleanable: True + angle: -2.9670597283903604 rad + color: '#79150096' + id: splatter + decals: + 2251: -41,-38 + - node: + cleanable: True + angle: -1.7453292519943295 rad + color: '#79150096' + id: splatter + decals: + 2733: -39,-13 + - node: + cleanable: True + angle: -1.6231562043547265 rad + color: '#79150096' + id: splatter + decals: + 3908: -5,-29 + - node: + cleanable: True + angle: -1.5882496193148399 rad + color: '#79150096' + id: splatter + decals: + 4588: -10,-13 + 10946: -19,23 + - node: + cleanable: True + zIndex: 9 + angle: -1.5882496193148399 rad + color: '#79150096' + id: splatter + decals: + 7705: -48,-20 + 7706: -48,-22 + 7707: -50,-19 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#79150096' + id: splatter + decals: + 2419: -56,-35 + 2736: -38,-16 + 2737: -39,-16 + - node: + cleanable: True + angle: -1.3962634015954636 rad + color: '#79150096' + id: splatter + decals: + 3569: 12,-4 + - node: + angle: -1.0471975511965976 rad + color: '#79150096' + id: splatter + decals: + 1715: -97,-21 + - node: + cleanable: True + angle: -0.8552113334772214 rad + color: '#79150096' + id: splatter + decals: + 6816: 40,-12 + - node: + cleanable: True + angle: -0.5061454830783556 rad + color: '#79150096' + id: splatter + decals: + 2314: -29,-35 + - node: + cleanable: True + angle: -0.4014257279586958 rad + color: '#79150096' + id: splatter + decals: + 11804: -73,-18 + - node: + cleanable: True + angle: -0.3665191429188092 rad + color: '#79150096' + id: splatter + decals: + 10941: -22,24 + 10942: -19,23 + 10943: -20,22 + - node: + cleanable: True + angle: -0.20943951023931956 rad + color: '#79150096' + id: splatter + decals: + 3571: 12,-10 + - node: + cleanable: True + color: '#79150096' + id: splatter + decals: + 1707: -56,-35 + 2250: -41,-38 + 2311: -26,-34 + 2350: -40,-31 + 2373: -17,-34 + 2420: -56,-39 + 2731: -38,-15 + 2738: -39,-16 + 3568: 12,-4 + 3641: 16,-14 + 3907: -5,-29 + 3957: -13,-24 + 4566: -17,-12 + 6813: 39,-14 + 6832: 21,6 + 7243: -79,51 + 9235: 9,8 + 10772: 2,24 + 10938: -22,23 + 11112: -40,22 + 11249: -47,21 + 11794: -77,-17 + 11795: -76,-18 + 11854: -20,-50 + - node: + cleanable: True + zIndex: 9 + color: '#79150096' + id: splatter + decals: + 7702: -49,-21 + - node: + cleanable: True + angle: 0.17453292519943295 rad + color: '#79150096' + id: splatter + decals: + 2421: -59,-36 + 2422: -59,-40 + - node: + cleanable: True + angle: 0.20943951023931956 rad + color: '#79150096' + id: splatter + decals: + 10775: 3,23 + 10776: 5,21 + 10939: -22,24 + - node: + cleanable: True + angle: 0.22689280275926285 rad + color: '#79150096' + id: splatter + decals: + 4589: -10,-13 + - node: + cleanable: True + angle: 0.3665191429188092 rad + color: '#79150096' + id: splatter + decals: + 11113: -43,21 + 11114: -41,24 + - node: + cleanable: True + angle: 0.4014257279586958 rad + color: '#79150096' + id: splatter + decals: + 11798: -79,-17 + 11802: -73,-18 + 11803: -73,-17 + 11855: -21,-52 + - node: + cleanable: True + angle: 0.7504915783575618 rad + color: '#79150096' + id: splatter + decals: + 11799: -79,-18 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#79150096' + id: splatter + decals: + 9236: 9,8 + 9237: 7,6 + - node: + cleanable: True + angle: 1.2217304763960306 rad + color: '#79150096' + id: splatter + decals: + 2351: -40,-31 + 2734: -39,-13 + 2735: -38,-16 + - node: + cleanable: True + angle: 1.239183768915974 rad + color: '#79150096' + id: splatter + decals: + 6814: 39,-14 + - node: + cleanable: True + angle: 1.3089969389957472 rad + color: '#79150096' + id: splatter + decals: + 11800: -79,-18 + 11801: -73,-17 + - node: + angle: 1.3962634015954636 rad + color: '#79150096' + id: splatter + decals: + 1714: -97,-21 + - node: + cleanable: True + angle: 1.3962634015954636 rad + color: '#79150096' + id: splatter + decals: + 1713: -59,-36 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#79150096' + id: splatter + decals: + 2377: -18,-33 + 11796: -75,-18 + 11797: -79,-17 + - node: + cleanable: True + angle: 1.5882496193148399 rad + color: '#79150096' + id: splatter + decals: + 9238: 7,6 + 9239: 6,7 + 10773: 2,24 + - node: + cleanable: True + angle: 1.7453292519943295 rad + color: '#79150096' + id: splatter + decals: + 2376: -17,-33 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#79150096' + id: splatter + decals: + 2312: -26,-34 + 2313: -29,-35 + - node: + cleanable: True + zIndex: 9 + angle: 2.1467549799530254 rad + color: '#79150096' + id: splatter + decals: + 7703: -49,-21 + 7704: -48,-20 + - node: + cleanable: True + angle: 2.199114857512855 rad + color: '#79150096' + id: splatter + decals: + 10777: 5,21 + 10778: 1,21 + - node: + cleanable: True + zIndex: 9 + angle: 2.4958208303518914 rad + color: '#79150096' + id: splatter + decals: + 7708: -50,-19 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#79150096' + id: splatter + decals: + 2374: -17,-34 + 2375: -17,-33 + - node: + cleanable: True + angle: 3.193952531149623 rad + color: '#79150096' + id: splatter + decals: + 9240: 6,7 + - node: + cleanable: True + angle: 3.246312408709453 rad + color: '#79150096' + id: splatter + decals: + 3958: -13,-24 + - node: + cleanable: True + angle: 3.3161255787892263 rad + color: '#79150096' + id: splatter + decals: + 2378: -18,-33 + - node: + cleanable: True + angle: 3.7699111843077517 rad + color: '#79150096' + id: splatter + decals: + 10779: 1,21 + - node: + cleanable: True + angle: 3.8920842319473548 rad + color: '#79150096' + id: splatter + decals: + 10774: 3,23 + - node: + cleanable: True + angle: 4.031710572106901 rad + color: '#79150096' + id: splatter + decals: + 6815: 40,-12 + - node: + cleanable: True + angle: 4.869468613064179 rad + color: '#79150096' + id: splatter + decals: + 1709: -59,-40 + - node: + cleanable: True + angle: 5.602506898901797 rad + color: '#79150096' + id: splatter + decals: + 10940: -22,23 + - node: + cleanable: True + angle: 14.172073526193955 rad + color: '#79150096' + id: splatter + decals: + 10944: -20,22 + 10945: -18,22 + - node: + color: '#7915009F' + id: splatter + decals: + 1936: -88,-47 + - node: + cleanable: True + angle: 0.3665191429188092 rad + color: '#791500A0' + id: splatter + decals: + 11115: -41,24 + 11116: -40,22 + - node: + cleanable: True + angle: 0.017453292519943295 rad + color: '#791500CE' + id: splatter + decals: + 11122: -39,19 + - node: + cleanable: True + angle: 0.3665191429188092 rad + color: '#791500CE' + id: splatter + decals: + 11117: -43,24 + 11118: -42,23 + - node: + cleanable: True + angle: 1.5882496193148399 rad + color: '#791500CE' + id: splatter + decals: + 11123: -40,26 + 11124: -38,22 + - node: + cleanable: True + angle: 2.111848394913139 rad + color: '#791500CE' + id: splatter + decals: + 11120: -43,21 + 11121: -37,24 + - node: + cleanable: True + angle: -2.0943951023931953 rad + color: '#9A6C007C' + id: splatter + decals: + 1811: -68,-43 + - node: + cleanable: True + color: '#9F98007D' + id: splatter + decals: + 1810: -68,-43 + - node: + cleanable: True + color: '#9FED5843' + id: splatter + decals: + 9246: 6,9 + - node: + cleanable: True + angle: 1.5882496193148399 rad + color: '#9FED5843' + id: splatter + decals: + 9245: 6,9 + - node: + cleanable: True + angle: 2.478367537831948 rad + color: '#9FED5843' + id: splatter + decals: + 9244: 7,8 + - node: + cleanable: True + angle: 2.792526803190927 rad + color: '#9FED5843' + id: splatter + decals: + 9243: 7,8 + - node: + cleanable: True + angle: 2.9670597283903604 rad + color: '#9FED5843' + id: splatter + decals: + 9242: 8,9 + - node: + cleanable: True + angle: 3.193952531149623 rad + color: '#9FED5843' + id: splatter + decals: + 9241: 8,9 + - node: + cleanable: True + angle: -3.3335788713091694 rad + color: '#9FED5848' + id: splatter + decals: + 3643: 19,-14 + - node: + cleanable: True + angle: -0.017453292519943295 rad + color: '#9FED5848' + id: splatter + decals: + 3644: 19,-14 + - node: + cleanable: True + angle: 1.3962634015954636 rad + color: '#DE3A3A22' + id: splatter + decals: + 1711: -59,-39 + 1712: -59,-39 + - node: + cleanable: True + angle: 4.869468613064179 rad + color: '#DE3A3A22' + id: splatter + decals: + 1710: -59,-39 + - node: + color: '#EFCF4322' + id: splatter + decals: + 1735: -76,-34 + - node: + cleanable: True + color: '#FFFFFF6F' + id: splatter + decals: + 10918: -14,19 + - node: + cleanable: True + angle: 1.2217304763960306 rad + color: '#FFFFFF93' + id: splatter + decals: + 2364: -43,-31 + - node: + color: '#791500FF' + id: u + decals: + 7535: -87.500916,49.306595 + - node: + cleanable: True + color: '#FF0000FF' + id: z + decals: + 12085: 4.1498947,-71.41216 + 12086: 2.8530197,-71.34966 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65535 + -1,0: + 0: 65535 + -1,-1: + 0: 65535 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 1,0: + 0: 65535 + 1,1: + 0: 65535 + 1,2: + 0: 65535 + 1,3: + 0: 65535 + 2,0: + 0: 65535 + 2,1: + 0: 65535 + 2,2: + 0: 65535 + 2,3: + 0: 65535 + 3,0: + 0: 65535 + 3,1: + 0: 65535 + 3,2: + 0: 65535 + 3,3: + 0: 65535 + 0,-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: 30719 + 1: 34816 + 2,-2: + 0: 65527 + 1: 8 + 2,-1: + 0: 65535 + 3,-4: + 0: 65535 + 3,-3: + 0: 35071 + 1: 30464 + 3,-2: + 1: 887 + 0: 64648 + 3,-1: + 0: 65535 + -4,0: + 0: 65535 + -4,1: + 0: 65535 + -4,2: + 0: 65535 + -4,3: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -3,3: + 0: 30591 + 2: 34944 + -2,0: + 0: 65535 + -2,1: + 0: 65535 + -2,2: + 0: 32767 + 2: 32768 + -2,3: + 0: 3 + 2: 65532 + -1,1: + 0: 65535 + -1,2: + 0: 61439 + 2: 4096 + -1,3: + 2: 4369 + 0: 61166 + -4,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65533 + 3: 2 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + 5,-4: + 0: 65535 + 5,-3: + 0: 65535 + 5,-2: + 0: 65535 + 5,-1: + 0: 65535 + 6,-4: + 0: 65535 + 6,-3: + 0: 65535 + 6,-2: + 0: 65535 + 6,-1: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + 7,-2: + 0: 65535 + 7,-1: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 4,3: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65535 + 5,3: + 0: 65535 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 0,-8: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-8: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-8: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-8: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -4,-8: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-8: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-8: + 0: 65535 + -2,-7: + 0: 65535 + -2,-6: + 0: 65535 + -2,-5: + 0: 65535 + -1,-8: + 0: 65535 + -1,-7: + 0: 65535 + -1,-6: + 0: 65535 + -1,-5: + 0: 65535 + 4,-8: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-8: + 0: 65535 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-8: + 0: 65535 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + -8,-8: + 0: 65535 + -8,-7: + 2: 51 + 0: 65484 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -7,-8: + 0: 65535 + -7,-7: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -6,-8: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-8: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + -8,-2: + 0: 57343 + 4: 8192 + -8,-1: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 64511 + 5: 1024 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 64991 + 6: 544 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -12,2: + 0: 65535 + -12,3: + 0: 65535 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 65535 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,0: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 64447 + 7: 64 + 6: 1024 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -11,-4: + 0: 34817 + 2: 30718 + -11,-3: + 2: 7 + 0: 65528 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -9,-4: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65023 + 3: 512 + -9,-1: + 0: 65535 + -12,-8: + 0: 65535 + -12,-7: + 0: 63351 + 2: 2184 + -12,-6: + 0: 65535 + -12,-5: + 0: 65535 + -11,-8: + 0: 65535 + -11,-7: + 2: 4095 + 0: 61440 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -10,-8: + 0: 65535 + -10,-7: + 2: 1023 + 0: 64512 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -9,-8: + 0: 65535 + -9,-7: + 2: 255 + 0: 65280 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -12,-12: + 0: 65535 + -12,-11: + 0: 65535 + -12,-10: + 0: 65535 + -12,-9: + 0: 65535 + -11,-12: + 0: 65535 + -11,-11: + 0: 65535 + -11,-10: + 0: 65467 + 3: 4 + 5: 64 + -11,-9: + 0: 65535 + -10,-12: + 0: 65535 + -10,-11: + 0: 65535 + -10,-10: + 0: 57311 + 5: 8224 + -10,-9: + 0: 65535 + -9,-12: + 0: 65535 + -9,-11: + 0: 65535 + -9,-10: + 0: 65535 + -9,-9: + 0: 65535 + -8,-12: + 0: 65535 + -8,-11: + 0: 65535 + -8,-10: + 0: 65535 + -8,-9: + 0: 65535 + -7,-12: + 0: 65535 + -7,-11: + 0: 65535 + -7,-10: + 0: 65535 + -7,-9: + 0: 65535 + -6,-12: + 0: 65535 + -6,-11: + 0: 65535 + -6,-10: + 0: 65535 + -6,-9: + 0: 65535 + -5,-12: + 0: 65535 + -5,-11: + 0: 65535 + -5,-10: + 0: 65535 + -5,-9: + 0: 65533 + 5: 2 + -4,-12: + 0: 65535 + -4,-11: + 0: 65535 + -4,-10: + 0: 65535 + -4,-9: + 0: 65535 + -3,-12: + 0: 65535 + -3,-11: + 0: 65535 + -3,-10: + 0: 65535 + -3,-9: + 0: 65535 + -2,-12: + 0: 65535 + -2,-11: + 0: 65535 + -2,-10: + 0: 65535 + -2,-9: + 0: 65535 + -1,-12: + 0: 65535 + -1,-11: + 0: 65535 + -1,-10: + 0: 65535 + -1,-9: + 0: 65535 + 0,-12: + 0: 65533 + 5: 2 + 0,-11: + 0: 65535 + 0,-10: + 0: 65519 + 2: 16 + 0,-9: + 0: 65519 + 2: 16 + 1,-12: + 0: 65535 + 1,-11: + 0: 65535 + 1,-10: + 0: 65535 + 1,-9: + 0: 65535 + 2,-12: + 0: 65535 + 2,-11: + 0: 65535 + 2,-10: + 0: 65535 + 2,-9: + 0: 65535 + 3,-12: + 0: 65535 + 3,-11: + 0: 65535 + 3,-10: + 0: 65535 + 3,-9: + 0: 65535 + 4,-12: + 0: 65535 + 4,-11: + 0: 65535 + 4,-10: + 0: 65535 + 4,-9: + 0: 65535 + 5,-12: + 0: 65535 + 5,-11: + 0: 65535 + 5,-10: + 0: 65535 + 5,-9: + 0: 65535 + 6,-12: + 0: 65535 + 6,-11: + 0: 65535 + 6,-10: + 0: 65535 + 6,-9: + 0: 65535 + 7,-12: + 0: 65535 + 7,-11: + 0: 65535 + 7,-10: + 0: 65535 + 7,-9: + 0: 65535 + 8,-12: + 0: 65535 + 8,-11: + 0: 65535 + 8,-10: + 0: 65535 + 8,-9: + 0: 65535 + 9,-12: + 0: 65535 + 9,-11: + 0: 65535 + 9,-10: + 0: 65535 + 9,-9: + 0: 65535 + 10,-12: + 0: 65535 + 10,-11: + 0: 65535 + 10,-10: + 0: 65535 + 10,-9: + 0: 65535 + 11,-10: + 0: 65535 + 11,-9: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 9,-6: + 0: 65535 + 9,-5: + 0: 65535 + 10,-8: + 0: 65535 + 10,-7: + 0: 65535 + 10,-6: + 0: 65535 + 10,-5: + 0: 65535 + 11,-8: + 0: 65535 + 11,-7: + 0: 65535 + 11,-6: + 0: 65535 + 11,-5: + 0: 65535 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 65535 + 10,-3: + 0: 65535 + 10,-2: + 0: 65535 + 10,-1: + 0: 65535 + 11,-4: + 0: 65535 + 11,-3: + 0: 65535 + 11,-2: + 0: 65535 + 11,-1: + 0: 65535 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 9,3: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 65535 + 11,0: + 0: 65535 + 11,1: + 0: 65535 + 11,2: + 0: 65535 + 11,3: + 0: 65535 + 12,-10: + 0: 65535 + 12,-9: + 0: 65535 + 13,-10: + 0: 63351 + 13,-9: + 0: 65535 + 14,-10: + 0: 4096 + 14,-9: + 0: 4369 + 12,-8: + 0: 2047 + 13,-8: + 0: 255 + 14,-8: + 0: 17 + 12,-4: + 0: 65523 + 12,-3: + 8: 1 + 0: 65534 + 12,-2: + 0: 65535 + 12,-1: + 0: 65535 + 13,-2: + 0: 65535 + 13,-1: + 0: 65535 + 12,0: + 0: 65535 + 12,1: + 0: 65535 + 12,2: + 0: 65535 + 12,3: + 0: 65535 + 13,0: + 0: 65535 + 13,1: + 0: 65535 + 13,2: + 0: 65535 + 13,3: + 0: 65535 + 14,0: + 0: 65535 + 14,1: + 0: 65535 + 14,2: + 0: 65535 + 14,3: + 0: 65535 + 8,4: + 0: 65535 + 8,5: + 0: 65535 + 8,6: + 0: 65535 + 8,7: + 0: 65535 + 9,4: + 0: 65535 + 9,5: + 0: 65535 + 9,6: + 0: 65535 + 9,7: + 0: 65535 + 10,4: + 0: 65535 + 10,5: + 0: 65535 + 10,6: + 0: 65535 + 10,7: + 0: 65535 + 11,4: + 0: 65535 + 11,5: + 0: 65535 + 11,6: + 0: 65535 + 11,7: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65263 + 4,6: + 0: 65262 + 4,7: + 0: 61166 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 5,6: + 0: 65535 + 5,7: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 6,6: + 0: 65535 + 6,7: + 0: 65433 + 1: 102 + 7,4: + 0: 65535 + 7,5: + 0: 65535 + 7,6: + 0: 65535 + 7,7: + 0: 65535 + 0,4: + 0: 65535 + 0,5: + 0: 65535 + 0,6: + 0: 65535 + 1,4: + 0: 65535 + 1,5: + 0: 63359 + 1,6: + 0: 63351 + 2,4: + 0: 65535 + 2,5: + 0: 65295 + 3,4: + 0: 65535 + 3,5: + 0: 65295 + -4,4: + 0: 65535 + -4,5: + 0: 65535 + -4,6: + 0: 65535 + -3,4: + 0: 65527 + 2: 8 + -3,5: + 0: 65535 + -3,6: + 0: 17663 + -2,4: + 2: 239 + 0: 65296 + -2,5: + 0: 65535 + -2,6: + 0: 39423 + -1,4: + 2: 51 + 0: 65484 + -1,5: + 0: 65535 + -1,6: + 0: 52479 + -8,4: + 0: 65535 + -8,5: + 0: 65535 + -8,6: + 0: 65535 + -7,4: + 0: 65535 + -7,5: + 0: 65535 + -7,6: + 0: 65535 + -6,4: + 0: 65535 + -6,5: + 0: 65535 + -6,6: + 0: 65535 + -5,4: + 0: 65535 + -5,5: + 0: 65535 + -5,6: + 0: 65535 + -12,4: + 0: 65535 + -12,5: + 0: 65535 + -12,6: + 0: 65535 + -12,7: + 0: 65535 + -11,4: + 0: 65535 + -11,5: + 0: 65535 + -11,6: + 0: 65535 + -11,7: + 0: 65535 + -10,4: + 0: 65535 + -10,5: + 0: 65535 + -10,6: + 0: 65535 + -10,7: + 0: 65535 + -9,4: + 0: 65535 + -9,5: + 0: 65535 + -9,6: + 0: 65535 + -9,7: + 0: 32767 + 12,4: + 0: 65535 + 12,5: + 0: 65535 + 12,6: + 0: 65535 + 12,7: + 0: 65535 + 13,4: + 0: 65535 + 13,5: + 0: 65535 + 13,6: + 0: 65535 + 13,7: + 0: 30591 + 14,4: + 0: 65535 + 14,5: + 0: 65535 + 14,6: + 0: 4369 + 14,7: + 0: 1 + 8,8: + 0: 65535 + 8,9: + 0: 65535 + 8,10: + 0: 65535 + 9,8: + 0: 65535 + 9,9: + 0: 32767 + 9,10: + 0: 279 + 10,8: + 0: 4607 + 11,8: + 0: 65535 + 4,8: + 0: 61166 + 5,8: + 0: 65535 + 5,9: + 0: 65535 + 5,10: + 0: 65535 + 6,8: + 0: 65535 + 6,9: + 0: 65535 + 6,10: + 0: 65535 + 7,8: + 0: 65535 + 7,9: + 0: 65535 + 7,10: + 0: 65535 + -15,4: + 0: 65535 + -14,4: + 0: 65535 + -14,5: + 0: 65535 + -13,4: + 0: 65535 + -13,5: + 0: 65535 + -13,6: + 0: 65535 + -16,0: + 0: 65535 + -16,1: + 0: 65535 + -16,2: + 0: 65535 + -15,0: + 0: 65535 + -15,1: + 0: 65535 + -15,2: + 0: 65535 + -14,0: + 0: 65535 + -14,1: + 0: 65535 + -14,2: + 0: 65535 + -14,3: + 0: 65535 + -13,0: + 0: 65535 + -13,1: + 0: 65535 + -13,2: + 0: 65535 + -13,3: + 0: 65535 + -16,-4: + 0: 65535 + -16,-3: + 0: 65535 + -16,-2: + 0: 65535 + -16,-1: + 0: 65535 + -15,-4: + 0: 30719 + 2: 34816 + -15,-3: + 0: 65527 + 2: 8 + -15,-2: + 0: 65535 + -15,-1: + 0: 65535 + -14,-4: + 0: 35071 + 2: 30464 + -14,-3: + 2: 7 + 0: 65528 + -14,-2: + 0: 65535 + -14,-1: + 0: 65535 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 65535 + -20,0: + 0: 65535 + -20,1: + 0: 65535 + -20,2: + 0: 65535 + -19,0: + 0: 65535 + -19,1: + 0: 65535 + -19,2: + 0: 65535 + -18,0: + 0: 65535 + -18,1: + 0: 65535 + -18,2: + 0: 65535 + -17,0: + 0: 65535 + -17,1: + 0: 65535 + -17,2: + 0: 65535 + -20,-1: + 0: 65535 + -19,-1: + 0: 65535 + -19,-2: + 0: 65535 + -18,-2: + 0: 65535 + -18,-1: + 0: 65535 + -18,-3: + 0: 65535 + -17,-3: + 0: 65535 + -17,-2: + 0: 65535 + -17,-1: + 0: 65535 + -17,-4: + 0: 65535 + -20,-7: + 0: 65535 + -20,-6: + 0: 65535 + -20,-5: + 0: 65279 + 8: 256 + -19,-7: + 0: 65535 + -19,-6: + 0: 65535 + -19,-5: + 0: 65535 + -18,-8: + 0: 65535 + -18,-7: + 0: 65535 + -18,-6: + 0: 65535 + -18,-5: + 0: 65535 + -17,-8: + 0: 65535 + -17,-7: + 0: 65535 + -17,-6: + 0: 65535 + -17,-5: + 0: 65535 + -16,-8: + 0: 62263 + 2: 3272 + -16,-7: + 0: 65535 + -16,-6: + 0: 65535 + -16,-5: + 0: 65535 + -15,-8: + 2: 2271 + 0: 63264 + -15,-7: + 0: 65535 + -15,-6: + 0: 65535 + -15,-5: + 0: 65535 + -14,-8: + 2: 1017 + 0: 64518 + -14,-7: + 0: 65535 + -14,-6: + 0: 65535 + -14,-5: + 0: 65535 + -13,-8: + 2: 1 + 0: 65534 + -13,-7: + 0: 65535 + -13,-6: + 0: 65535 + -13,-5: + 0: 65535 + -16,-12: + 0: 65535 + -16,-11: + 0: 65535 + -16,-10: + 0: 65535 + -16,-9: + 0: 65535 + -15,-12: + 0: 65535 + -15,-11: + 0: 65535 + -15,-10: + 0: 65535 + -15,-9: + 0: 65535 + -14,-11: + 0: 65535 + -14,-10: + 0: 65535 + -14,-9: + 0: 65535 + -14,-12: + 0: 65535 + -13,-12: + 0: 65535 + -13,-11: + 0: 65535 + -13,-10: + 0: 65535 + -13,-9: + 0: 61439 + 2: 4096 + -20,-12: + 0: 65535 + -20,-11: + 0: 65535 + -20,-10: + 0: 65535 + -20,-9: + 0: 65535 + -19,-12: + 0: 65535 + -19,-11: + 0: 65535 + -19,-10: + 0: 65535 + -19,-9: + 0: 65535 + -18,-12: + 0: 65535 + -18,-11: + 0: 65535 + -18,-10: + 0: 65535 + -18,-9: + 0: 65535 + -17,-12: + 0: 65535 + -17,-11: + 0: 65535 + -17,-10: + 0: 65535 + -17,-9: + 0: 65535 + -20,-13: + 0: 65469 + -15,-14: + 0: 65535 + -14,-14: + 0: 65535 + -14,-13: + 0: 65535 + -13,-14: + 0: 65535 + -13,-13: + 0: 65535 + -13,-15: + 0: 65535 + -12,-14: + 0: 64507 + 3: 1024 + -12,-13: + 0: 65535 + -12,-15: + 0: 39327 + -11,-16: + 0: 65535 + -11,-15: + 0: 65535 + -11,-14: + 0: 65535 + -11,-13: + 0: 64255 + 3: 256 + 8: 1024 + -10,-16: + 0: 65535 + -10,-15: + 0: 65535 + -10,-14: + 0: 65535 + -10,-13: + 0: 65535 + -9,-16: + 0: 65535 + -9,-15: + 0: 65535 + -9,-14: + 0: 65279 + 8: 256 + -9,-13: + 0: 65535 + -11,-17: + 0: 65280 + -10,-17: + 0: 65280 + -9,-17: + 0: 65486 + -8,-16: + 0: 65535 + -8,-15: + 0: 65535 + -8,-14: + 0: 65023 + 3: 512 + -8,-13: + 0: 65279 + 3: 256 + -7,-16: + 0: 65535 + -7,-15: + 0: 65535 + -7,-14: + 0: 65535 + -7,-13: + 0: 65535 + -6,-16: + 0: 65535 + -6,-15: + 0: 65535 + -6,-14: + 0: 65535 + -6,-13: + 0: 65535 + -5,-16: + 0: 65535 + -5,-15: + 0: 63351 + 2: 2184 + -5,-14: + 0: 63351 + 9: 2184 + -5,-13: + 0: 63351 + 10: 2184 + -8,-17: + 0: 65535 + -7,-17: + 0: 65535 + -6,-17: + 0: 65535 + -5,-17: + 0: 65535 + -4,-16: + 0: 65535 + -4,-15: + 2: 819 + 0: 64716 + -4,-14: + 9: 819 + 0: 64716 + -4,-13: + 10: 819 + 0: 64716 + -3,-16: + 0: 65535 + -3,-15: + 0: 65535 + -3,-14: + 0: 65535 + -3,-13: + 0: 65535 + -2,-16: + 0: 65535 + -2,-15: + 0: 65535 + -2,-14: + 0: 65535 + -2,-13: + 0: 65535 + -1,-16: + 0: 65535 + -1,-15: + 0: 65535 + -1,-14: + 0: 65535 + -1,-13: + 0: 65535 + -4,-17: + 0: 65535 + -3,-17: + 0: 65535 + -2,-17: + 0: 62259 + 2: 3276 + -1,-17: + 2: 273 + 0: 61986 + 11: 3276 + 0,-16: + 0: 65535 + 0,-15: + 0: 65535 + 0,-14: + 0: 65535 + 0,-13: + 0: 65535 + 1,-16: + 0: 65535 + 1,-15: + 0: 65535 + 1,-14: + 0: 65535 + 1,-13: + 0: 65535 + 2,-16: + 0: 65535 + 2,-15: + 0: 65535 + 2,-14: + 0: 65535 + 2,-13: + 0: 65535 + 3,-16: + 0: 65535 + 3,-15: + 0: 65535 + 3,-14: + 0: 65535 + 3,-13: + 0: 65535 + 0,-17: + 11: 273 + 0: 61986 + 2: 3276 + 1,-17: + 2: 3549 + 0: 61986 + 2,-17: + 2: 273 + 0: 65262 + 3,-17: + 0: 65535 + 4,-16: + 0: 65535 + 4,-15: + 0: 65535 + 4,-14: + 0: 65535 + 4,-13: + 0: 65535 + 5,-16: + 0: 65535 + 5,-15: + 0: 65535 + 5,-14: + 0: 65535 + 5,-13: + 0: 65535 + 6,-16: + 0: 65535 + 6,-15: + 0: 65535 + 6,-14: + 0: 65535 + 6,-13: + 0: 65535 + 7,-16: + 0: 65535 + 7,-15: + 0: 65535 + 7,-14: + 0: 65535 + 7,-13: + 0: 65535 + 4,-17: + 0: 65535 + 5,-17: + 0: 65535 + 6,-17: + 0: 65535 + 7,-17: + 0: 65535 + 8,-16: + 0: 65535 + 8,-15: + 0: 65535 + 8,-14: + 0: 65535 + 8,-13: + 0: 65535 + 9,-16: + 0: 65535 + 9,-15: + 0: 65535 + 9,-14: + 0: 65535 + 9,-13: + 0: 65535 + 10,-16: + 0: 65535 + 10,-15: + 0: 65535 + 10,-14: + 0: 65535 + 10,-13: + 0: 65535 + 8,-17: + 0: 65535 + 9,-17: + 0: 65535 + 10,-17: + 0: 65535 + -24,-11: + 0: 65535 + -24,-10: + 0: 65535 + -24,-9: + 0: 65535 + -23,-11: + 0: 65535 + -23,-10: + 0: 65535 + -23,-9: + 0: 65535 + -22,-11: + 0: 30719 + 2: 34816 + -22,-10: + 0: 65535 + -22,-9: + 0: 65535 + -22,-12: + 0: 65535 + -21,-12: + 0: 65535 + -21,-11: + 0: 65535 + -21,-10: + 0: 65535 + -21,-9: + 0: 65535 + -24,-8: + 0: 65535 + -24,-7: + 0: 65535 + -23,-8: + 0: 65535 + -23,-7: + 0: 65535 + -22,-8: + 0: 65535 + -22,-7: + 0: 65535 + -22,-13: + 0: 65516 + -21,-13: + 0: 65527 + 11,-12: + 0: 65535 + 11,-11: + 0: 65535 + 12,-12: + 0: 30579 + 12,-11: + 0: 65535 + 13,-11: + 0: 30583 + -18,-15: + 0: 61455 + -18,-14: + 0: 65535 + -18,-13: + 0: 65535 + -17,-15: + 0: 63631 + -17,-14: + 0: 65535 + -17,-13: + 0: 65535 + 12,-14: + 0: 13175 + 12,-13: + 0: 13107 + -16,-15: + 0: 65535 + -16,-14: + 0: 65535 + -16,-13: + 0: 65535 + -15,-15: + 0: 65343 + -15,-13: + 0: 65535 + -14,-15: + 0: 65263 + 11,-14: + 0: 65535 + 11,-13: + 0: 65535 + -20,-8: + 0: 65535 + -19,-8: + 0: 65535 + -19,-13: + 0: 65535 + -24,-12: + 0: 65535 + -23,-12: + 0: 65535 + -21,-8: + 0: 65535 + -21,-7: + 0: 65535 + -24,-13: + 0: 60928 + -23,-13: + 0: 65280 + -3,-19: + 2: 30583 + 0: 34952 + -3,-18: + 0: 65535 + -2,-19: + 0: 65535 + -2,-18: + 0: 65535 + -1,-19: + 0: 64447 + -1,-18: + 0: 65535 + 0,-19: + 0: 65272 + 0,-18: + 0: 65535 + 1,-19: + 0: 65535 + 1,-18: + 0: 65535 + 2,-19: + 0: 65535 + 2,-18: + 0: 65535 + 3,-19: + 0: 63736 + 3,-18: + 0: 65535 + 4,-19: + 0: 65535 + 4,-18: + 0: 65535 + 5,-19: + 0: 65535 + 5,-18: + 0: 65535 + 6,-19: + 0: 65535 + 6,-18: + 0: 65535 + 7,-19: + 0: 65535 + 7,-18: + 0: 65535 + 8,-19: + 0: 65535 + 8,-18: + 0: 65535 + 9,-19: + 0: 65535 + 9,-18: + 0: 65535 + -16,3: + 0: 65535 + -15,3: + 0: 65535 + -20,3: + 0: 61439 + -19,3: + 0: 61439 + -18,3: + 0: 49151 + -17,3: + 0: 49151 + -20,-4: + 0: 65535 + -20,-3: + 0: 65535 + -20,-2: + 0: 65535 + -19,-4: + 0: 65535 + -19,-3: + 0: 65535 + -18,-4: + 0: 65535 + 12,-16: + 0: 65535 + 12,-15: + 0: 30719 + -9,-20: + 0: 52428 + -9,-19: + 0: 52428 + -9,-18: + 0: 52428 + -8,-20: + 0: 65535 + -8,-19: + 0: 65535 + -8,-18: + 0: 65535 + -7,-20: + 0: 65535 + -7,-19: + 0: 65535 + -7,-18: + 0: 65535 + -6,-20: + 0: 65535 + -6,-19: + 0: 65535 + -6,-18: + 0: 65535 + -5,-20: + 0: 65535 + -5,-19: + 0: 65535 + -5,-18: + 0: 65535 + -4,-20: + 0: 32767 + 2: 32768 + -4,-19: + 0: 30583 + 2: 34952 + -4,-18: + 0: 65535 + -3,-20: + 0: 36863 + 2: 28672 + -2,-20: + 0: 65524 + -1,-20: + 0: 48058 + 7,-20: + 0: 65392 + 11,-16: + 0: 65535 + 11,-15: + 0: 65535 + 8,-20: + 0: 65518 + 9,-20: + 0: 65535 + 10,-20: + 0: 65296 + 10,-19: + 0: 65535 + 10,-18: + 0: 65535 + 11,-20: + 0: 12560 + 11,-19: + 0: 65521 + 11,-18: + 0: 65535 + 11,-17: + 0: 65535 + -24,-6: + 0: 65535 + -24,-5: + 0: 65535 + -23,-6: + 0: 65535 + -23,-5: + 0: 65535 + -22,-6: + 0: 65535 + -22,-5: + 0: 65535 + -21,-6: + 0: 65535 + -21,-5: + 0: 65535 + -4,-22: + 0: 65280 + -4,-21: + 0: 65535 + -3,-21: + 0: 65416 + -8,-21: + 0: 65152 + -7,-21: + 0: 65521 + -6,-22: + 0: 65280 + -6,-21: + 0: 65535 + -5,-22: + 0: 65280 + -5,-21: + 0: 34959 + 2: 30576 + -9,-21: + 0: 49152 + 12,-19: + 0: 65532 + 12,-18: + 0: 65535 + 12,-17: + 0: 65535 + -26,-12: + 0: 61166 + -26,-11: + 0: 61166 + -26,-10: + 0: 61166 + -26,-9: + 0: 61166 + -25,-12: + 0: 65535 + -25,-11: + 0: 65535 + -25,-10: + 0: 65535 + -25,-9: + 0: 65535 + -26,-8: + 0: 61166 + -26,-7: + 0: 61166 + -26,-6: + 0: 52462 + -26,-5: + 0: 12 + -25,-8: + 0: 65535 + -25,-7: + 0: 65535 + -25,-6: + 0: 65535 + -25,-5: + 0: 239 + -24,-4: + 0: 65535 + -24,-3: + 0: 65535 + -24,-2: + 0: 65535 + -23,-4: + 0: 65535 + -23,-3: + 0: 65535 + -23,-2: + 0: 65535 + -22,-4: + 0: 65535 + -22,-3: + 0: 65535 + -22,-2: + 0: 65535 + -21,-4: + 0: 65535 + -21,-3: + 0: 65535 + -21,-2: + 0: 65535 + -21,-1: + 0: 61166 + -21,0: + 0: 61166 + -21,1: + 0: 61166 + -21,2: + 0: 61166 + -21,3: + 0: 3822 + -20,-16: + 0: 65280 + -20,-15: + 0: 4927 + -20,-14: + 0: 4369 + -19,-16: + 0: 7936 + -19,-15: + 0: 61455 + -19,-14: + 0: 65535 + -18,-16: + 0: 3840 + -17,-16: + 0: 3840 + -16,-16: + 0: 36608 + -15,-16: + 0: 12544 + -22,-14: + 0: 32768 + -21,-14: + 0: 29764 + -21,-15: + 0: 19692 + -21,-16: + 0: 51200 + 12,-7: + 0: 13107 + 12,-6: + 0: 13107 + 12,-5: + 0: 13107 + 13,-4: + 0: 4368 + 13,-3: + 0: 65535 + 14,-3: + 0: 65535 + 14,-2: + 0: 65535 + 14,-1: + 0: 65535 + 15,-3: + 0: 29491 + 15,-2: + 0: 65535 + 15,-1: + 0: 65535 + 15,0: + 0: 65535 + 15,1: + 0: 65535 + -8,7: + 0: 4095 + -13,7: + 0: 65535 + 16,-2: + 0: 30515 + 16,-1: + 0: 30583 + 16,0: + 0: 4115 + 2: 8192 + -16,9: + 0: 65280 + -16,10: + 0: 65535 + -16,11: + 0: 65535 + -15,9: + 0: 65280 + -15,10: + 0: 65535 + -15,11: + 0: 65535 + -14,9: + 0: 32546 + -14,10: + 0: 65399 + -14,11: + 0: 65535 + -13,8: + 0: 61986 + -13,9: + 0: 12066 + -13,10: + 0: 12066 + -13,11: + 0: 13042 + -16,12: + 0: 65535 + -16,13: + 0: 65535 + -16,14: + 0: 65535 + -16,15: + 0: 65535 + -15,12: + 0: 65535 + -15,13: + 0: 65535 + -15,14: + 0: 65535 + -15,15: + 0: 65535 + -14,12: + 0: 65535 + -14,13: + 0: 65535 + -14,14: + 0: 65535 + -14,15: + 0: 30719 + -13,12: + 0: 13299 + -13,13: + 0: 5107 + -13,14: + 0: 30591 + -13,15: + 0: 8751 + -20,11: + 0: 65484 + -20,10: + 0: 52224 + -19,10: + 0: 30464 + -19,11: + 0: 65535 + -18,11: + 0: 65535 + -18,9: + 0: 34816 + -18,10: + 0: 34952 + -17,9: + 0: 65280 + -17,10: + 0: 65535 + -17,11: + 0: 65535 + -20,12: + 0: 65535 + -20,13: + 0: 65535 + -20,14: + 0: 65535 + -20,15: + 0: 65535 + -19,12: + 0: 65535 + -19,13: + 0: 65535 + -19,14: + 0: 65535 + -19,15: + 0: 65535 + -18,12: + 0: 65535 + -18,13: + 0: 65535 + -18,14: + 0: 65535 + -18,15: + 0: 65535 + -17,12: + 0: 65535 + -17,13: + 0: 65535 + -17,14: + 0: 65535 + -17,15: + 0: 65535 + -19,16: + 0: 65535 + -18,16: + 0: 65535 + -17,16: + 0: 65535 + -16,16: + 0: 65535 + -15,16: + 0: 5119 + -14,16: + 0: 9983 + -21,12: + 0: 65535 + -21,13: + 0: 65535 + -21,14: + 0: 65535 + -21,15: + 0: 65535 + -21,11: + 0: 65526 + 15,2: + 0: 49151 + 15,3: + 0: 65467 + 0,7: + 0: 65279 + 1,7: + 0: 30583 + 2,6: + 0: 65535 + 2,7: + 0: 65535 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + -4,7: + 0: 50255 + -3,7: + 0: 62543 + -2,7: + 0: 63903 + -1,7: + 0: 62671 + -7,7: + 0: 287 + -6,7: + 0: 207 + -5,7: + 0: 63 + 15,4: + 0: 48063 + 15,5: + 0: 64191 + 15,6: + 0: 200 + 10,9: + 0: 4081 + 11,9: + 0: 287 + 4,9: + 0: 61166 + 4,10: + 0: 52430 + -16,4: + 0: 65535 + -16,5: + 0: 65535 + -16,6: + 0: 65535 + -16,7: + 0: 2255 + -15,5: + 0: 65535 + -15,6: + 0: 65535 + -15,7: + 0: 65535 + -14,6: + 0: 65535 + -14,7: + 0: 65535 + 13,-16: + 0: 65311 + 13,-15: + 0: 4095 + 14,-16: + 0: 4097 + 14,-15: + 0: 273 + 0,-20: + 0: 32768 + 1,-20: + 0: 65520 + 2,-20: + 0: 65534 + 3,-20: + 0: 65535 + 4,-20: + 0: 65535 + 5,-20: + 0: 65329 + 6,-20: + 0: 65520 + 16,1: + 0: 65527 + 16,2: + 0: 49151 + 16,3: + 0: 65467 + 17,1: + 0: 12560 + 17,2: + 0: 63347 + 17,3: + 0: 48127 + -14,8: + 0: 57890 + -20,16: + 0: 65535 + -20,17: + 0: 65535 + -20,18: + 0: 8 + -19,17: + 0: 65535 + -19,18: + 0: 15 + -18,17: + 0: 65535 + -18,18: + 0: 15 + -17,17: + 0: 16383 + -17,18: + 0: 1 + -16,17: + 0: 63 + -15,17: + 0: 15 + -14,17: + 0: 15 + -13,16: + 0: 8751 + -13,17: + 0: 15 + -24,12: + 0: 64640 + -24,14: + 0: 65484 + -24,15: + 0: 65535 + -24,13: + 0: 60620 + -23,12: + 0: 65528 + -23,13: + 0: 65535 + -23,14: + 0: 65535 + -23,15: + 0: 65535 + -22,12: + 0: 65535 + -22,13: + 0: 65535 + -22,14: + 0: 65535 + -22,15: + 0: 65535 + -22,11: + 0: 60544 + -12,8: + 0: 61986 + -12,9: + 0: 12066 + -12,10: + 0: 12066 + -12,11: + 0: 242 + -11,8: + 0: 61713 + -11,9: + 0: 7953 + -11,10: + 0: 7953 + -11,11: + 0: 4593 + -10,8: + 0: 61713 + -10,9: + 0: 7953 + -10,10: + 0: 4369 + -10,11: + 0: 4369 + -9,8: + 0: 12834 + -9,9: + 0: 802 + -12,12: + 0: 240 + -12,13: + 0: 8944 + -12,14: + 0: 41519 + -12,15: + 0: 8751 + -11,12: + 0: 4593 + -11,13: + 0: 17 + -11,14: + 0: 4096 + -10,12: + 0: 17 + -24,16: + 0: 3823 + -23,16: + 0: 36863 + -23,17: + 0: 8 + -22,16: + 0: 65535 + -22,17: + 0: 2287 + -21,16: + 0: 65535 + -21,17: + 0: 36863 + -25,12: + 0: 57344 + -25,14: + 0: 49152 + -25,15: + 0: 52428 + -25,16: + 0: 8 + -12,16: + 0: 25123 + -12,17: + 0: 3 + -20,4: + 0: 44714 + -20,5: + 0: 8 + -19,4: + 0: 64254 + -19,5: + 0: 43690 + -19,6: + 0: 2094 + -18,4: + 0: 48123 + -18,5: + 0: 45051 + -18,6: + 0: 36703 + -18,7: + 0: 12 + -17,4: + 0: 48123 + -17,5: + 0: 65531 + -17,6: + 0: 53231 + -17,7: + 0: 15 + -4,8: + 0: 17476 + -4,9: + 0: 50252 + -3,9: + 0: 62543 + -3,10: + 0: 65535 + -3,11: + 0: 65535 + -3,8: + 0: 50244 + -2,8: + 0: 63897 + -2,9: + 0: 65259 + -2,10: + 0: 65535 + -2,11: + 0: 65535 + -1,9: + 0: 62270 + -1,10: + 0: 65023 + 3: 512 + -1,11: + 0: 65535 + -1,8: + 0: 62532 + 0,10: + 0: 65527 + 0,11: + 0: 65535 + 0,8: + 0: 63628 + 1,8: + 0: 30583 + 2,8: + 0: 3839 + 3,8: + 0: 2047 + 0,12: + 0: 65535 + 0,13: + 0: 65535 + 0,14: + 0: 65535 + -3,12: + 0: 65535 + -3,13: + 0: 65535 + -3,14: + 0: 61439 + -2,12: + 0: 65535 + -2,13: + 0: 65535 + -2,14: + 0: 65535 + -2,15: + 0: 255 + -1,12: + 0: 65535 + -1,13: + 0: 65535 + -1,14: + 0: 65535 + -1,15: + 0: 255 + -3,-22: + 0: 61440 + -2,-22: + 0: 61440 + -2,-21: + 0: 20292 + -1,-22: + 0: 12288 + -1,-21: + 0: 44834 + 2,-21: + 0: 49152 + 3,-21: + 0: 61440 + 4,-21: + 0: 61440 + 13,-19: + 0: 57329 + 13,-18: + 0: 65501 + 13,-17: + 0: 64991 + 14,-19: + 0: 4368 + 14,-18: + 0: 4369 + 14,-17: + 0: 4369 + 16,4: + 0: 48063 + 16,5: + 0: 64191 + 16,6: + 0: 184 + 17,4: + 0: 48059 + 17,5: + 0: 12203 + 17,6: + 0: 7 + 12,8: + 0: 65535 + 12,9: + 0: 15 + 13,8: + 0: 4407 + 13,9: + 0: 1 + 8,11: + 0: 1151 + 4,11: + 0: 2184 + 5,11: + 0: 127 + 6,11: + 0: 3 + 7,11: + 0: 142 + -4,10: + 0: 52428 + -4,11: + 0: 52428 + 0,9: + 0: 29767 + 1,9: + 0: 4369 + 1,10: + 0: 12561 + 1,11: + 0: 13107 + 0,15: + 0: 127 + 1,12: + 0: 13107 + 1,13: + 0: 13107 + 1,14: + 0: 4915 + -4,12: + 0: 52428 + -4,13: + 0: 204 + -3,15: + 0: 140 + 8,-21: + 0: 49152 + 9,-21: + 0: 12288 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.1498 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14948 + moles: + - 18.472576 + - 69.49208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14957 + moles: + - 18.472576 + - 69.49208 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14984 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: ADT_kilo + - type: NavMap +- proto: AcousticGuitarInstrument + entities: + - uid: 3 + components: + - type: Transform + pos: -38.51088,-37.450935 + parent: 2 +- proto: ActionBibleSummon + entities: + - uid: 975 + components: + - type: Transform + parent: 10753 + - type: InstantAction + container: 10753 +- proto: ActionStethoscope + entities: + - uid: 5 + components: + - type: Transform + parent: 4 + - type: EntityTargetAction + container: 4 + - uid: 18179 + components: + - type: Transform + parent: 18178 + - type: EntityTargetAction + container: 18178 +- proto: ActionToggleInternals + entities: + - uid: 7 + components: + - type: Transform + parent: 6 + - type: InstantAction + container: 6 + - uid: 9 + components: + - type: Transform + parent: 8 + - type: InstantAction + container: 8 + - uid: 11 + components: + - type: Transform + parent: 10 + - type: InstantAction + container: 10 + - uid: 13 + components: + - type: Transform + parent: 12 + - type: InstantAction + container: 12 + - uid: 15 + components: + - type: Transform + parent: 14 + - type: InstantAction + container: 14 + - uid: 17 + components: + - type: Transform + parent: 16 + - type: InstantAction + container: 16 + - uid: 2362 + components: + - type: Transform + parent: 2361 + - type: InstantAction + container: 2361 + - uid: 2364 + components: + - type: Transform + parent: 2363 + - type: InstantAction + container: 2363 +- proto: ActionToggleLight + entities: + - uid: 19 + components: + - type: Transform + parent: 18 + - type: InstantAction + container: 18 + - uid: 21 + components: + - type: Transform + parent: 20 + - type: InstantAction + container: 20 + - uid: 23 + components: + - type: Transform + parent: 22 + - type: InstantAction + container: 22 + - uid: 3021 + components: + - type: Transform + parent: 1800 + - type: InstantAction + container: 1800 + - uid: 11023 + components: + - type: Transform + parent: 2865 + - type: InstantAction + container: 2865 +- proto: ADTBenchChurchLeftSide + entities: + - uid: 31043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,51.5 + parent: 2 + - uid: 31044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,51.5 + parent: 2 + - uid: 31045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,51.5 + parent: 2 + - uid: 31046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,51.5 + parent: 2 + - uid: 31047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,55.5 + parent: 2 + - uid: 31048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,55.5 + parent: 2 + - uid: 31049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,55.5 + parent: 2 + - uid: 31050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,55.5 + parent: 2 +- proto: ADTBenchChurchMiddle + entities: + - uid: 31059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,52.5 + parent: 2 + - uid: 31060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,52.5 + parent: 2 + - uid: 31061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,52.5 + parent: 2 + - uid: 31062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,52.5 + parent: 2 + - uid: 31063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,56.5 + parent: 2 + - uid: 31064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,56.5 + parent: 2 + - uid: 31065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,56.5 + parent: 2 + - uid: 31066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,56.5 + parent: 2 +- proto: ADTBenchChurchRightSide + entities: + - uid: 31051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,57.5 + parent: 2 + - uid: 31052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,57.5 + parent: 2 + - uid: 31053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,57.5 + parent: 2 + - uid: 31054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,57.5 + parent: 2 + - uid: 31055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,53.5 + parent: 2 + - uid: 31056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,53.5 + parent: 2 + - uid: 31057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,53.5 + parent: 2 + - uid: 31058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,53.5 + parent: 2 +- proto: ADTClothingHeadHatBeretBlueshield + entities: + - uid: 30852 + components: + - type: Transform + pos: 11.690185,-26.45326 + parent: 2 +- proto: ADTComputerShuttleSalvage + entities: + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-12.5 + parent: 2 +- proto: ADTLockerBlueshieldFilled + entities: + - uid: 13863 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 +- proto: ADTSpawnPointRoboticist + entities: + - uid: 403 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 +- proto: ADTSuitStorageBlueshield + entities: + - uid: 10056 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 +- proto: ADTVendingMachinePatholoDrobe + entities: + - uid: 2700 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 +- proto: ADTVendingMachinePrazatClothing + entities: + - uid: 10063 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 +- proto: ADTWeaponCutter + entities: + - uid: 10122 + components: + - type: Transform + parent: 2163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 31070 + components: + - type: Transform + pos: 39.462925,-9.905045 + parent: 2 +- proto: ADTWeaponCutterAdv + entities: + - uid: 368 + components: + - type: Transform + pos: 58.511776,0.49411666 + parent: 2 +- proto: AirAlarm + entities: + - uid: 26 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 2694 + - 24763 + - 2695 + - 28595 + - 22738 + - 22739 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 2704 + - 2703 + - 28877 + - 30228 + - 23065 + - 22969 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 2706 + - 2705 + - 2704 + - 28879 + - 22528 + - 22970 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 2591 + - 2590 + - 2729 + - 2761 + - 4331 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 13435 + - 424 + - 3048 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 13436 + - 13434 + - 13433 + - 13435 + - 30263 + - 3049 + - 3048 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 29926 + - 24733 + - 24732 + - 28630 + - 27452 + - 27436 + - uid: 36 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 24734 + - 13432 + - 30262 + - 30261 + - 27669 + - 27660 + - 16584 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 14410 + - 14411 + - 14412 + - 2589 + - 2585 + - 2665 + - 2646 + - 2647 + - 2591 + - 26925 + - 25415 + - 25446 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-53.5 + parent: 2 + - type: DeviceList + devices: + - 2669 + - 25866 + - 30290 + - uid: 39 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 28866 + - 2762 + - 2600 + - 2967 + - 2829 + - 28851 + - 3047 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 2729 + - 2761 + - 2587 + - 28584 + - 25458 + - 26418 + - 26419 + - 26420 + - uid: 41 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 10861 + - 2762 + - 15022 + - 2798 + - 28867 + - 29158 + - 29148 + - uid: 42 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 2698 + - 2699 + - 28594 + - 25915 + - 25935 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 2698 + - 2697 + - 2696 + - 28593 + - 25917 + - 24901 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 2593 + - 28607 + - 23297 + - 25927 + - 10091 + - 396 + - 10074 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 28904 + - 28905 + - 28878 + - 30229 + - 26868 + - 26856 + - 26867 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 2671 + - 30301 + - 30302 + - 2821 + - 2672 + - 2673 + - 2674 + - 28571 + - 26236 + - 26093 + - 26094 + - 26255 + - 26254 + - 26246 + - 26067 + - 26078 + - 26285 + - 26298 + - 26299 + - 30110 + - 30111 + - 26320 + - 26321 + - 26362 + - 26363 + - 30307 + - 26345 + - 26346 + - uid: 50 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 28617 + - 2800 + - 2801 + - 2802 + - 2804 + - 2596 + - 2598 + - 27558 + - 27624 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 2598 + - 28619 + - 27603 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 2597 + - 2596 + - 2595 + - 2599 + - 28608 + - 27634 + - 27597 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 11053 + - 11054 + - 11058 + - 11055 + - 24747 + - 2706 + - 2841 + - 30143 + - 11005 + - 11006 + - 11007 + - 26891 + - 24744 + - 24743 + - 2686 + - 2687 + - 2688 + - 26895 + - 14345 + - 14344 + - 14343 + - 24740 + - 2696 + - 2697 + - 12879 + - 12880 + - 14516 + - 30284 + - 30283 + - 24876 + - 22566 + - 22587 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 14343 + - 14344 + - 14345 + - 24741 + - 14410 + - 14411 + - 14412 + - 24752 + - 2847 + - 24742 + - 26924 + - 26923 + - 25276 + - 25091 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 24741 + - 30127 + - 30126 + - 28898 + - 25083 + - 25107 + - 25159 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 30118 + - 24748 + - 24747 + - 24745 + - 24746 + - 26921 + - 22298 + - 22266 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 26888 + - 28903 + - 30118 + - 24754 + - 28501 + - 26458 + - 26445 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 24744 + - 24743 + - 30125 + - 30124 + - 28897 + - 22438 + - 22389 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-39.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 2783 + - 2784 + - 2785 + - 28896 + - 21516 + - 17725 + - uid: 61 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 2785 + - 2786 + - 2787 + - 2778 + - 28895 + - 8612 + - 21120 + - uid: 62 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 10876 + - 2786 + - 10878 + - 10877 + - 28893 + - 28894 + - 10870 + - 11158 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 10876 + - 2786 + - 10878 + - 10877 + - 28893 + - 28894 + - 10870 + - 11158 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-62.5 + parent: 2 + - type: DeviceList + devices: + - 10876 + - 2786 + - 10878 + - 10877 + - 28893 + - 28894 + - 10870 + - 11158 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-53.5 + parent: 2 + - type: DeviceList + devices: + - 2777 + - 2778 + - 2776 + - 2382 + - 21228 + - 21211 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-63.5 + parent: 2 + - type: DeviceList + devices: + - 2780 + - 2779 + - 2781 + - 2782 + - 2851 + - 2852 + - 2850 + - 28891 + - 28890 + - 21997 + - 22130 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 24749 + - 24750 + - 24751 + - 2784 + - 2783 + - 2773 + - 2772 + - 2777 + - 26922 + - 21389 + - 21390 + - uid: 68 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 2766 + - 2767 + - 2768 + - 2770 + - 2773 + - 2772 + - 2775 + - 2774 + - 28885 + - 21801 + - 21576 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 2771 + - 2766 + - 2767 + - 2768 + - 28886 + - 21577 + - 21575 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-53.5 + parent: 2 + - type: DeviceList + devices: + - 2848 + - 2769 + - 2781 + - 2782 + - 28889 + - 21287 + - 21738 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 2774 + - 2775 + - 2776 + - 2779 + - 2780 + - 2848 + - 28888 + - 21739 + - 21757 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-56.5 + parent: 2 + - type: DeviceList + devices: + - 2787 + - 10876 + - 28892 + - 21835 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-66.5 + parent: 2 + - type: DeviceList + devices: + - 22130 + - 21997 + - 28890 + - 28891 + - 2850 + - 2852 + - 2851 + - 2782 + - 2781 + - 2779 + - 2780 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 28615 + - 2595 + - 27596 + - uid: 75 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 2668 + - 2667 + - 28587 + - 25341 + - 25327 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 2816 + - 2817 + - 2818 + - 2650 + - 2641 + - 2639 + - 2638 + - 2660 + - 2659 + - 2669 + - 2652 + - 2651 + - 28545 + - 25727 + - 25847 + - 25878 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 2816 + - 2817 + - 2818 + - 2650 + - 2641 + - 2639 + - 2638 + - 2660 + - 2659 + - 2669 + - 2652 + - 2651 + - 28545 + - 25727 + - 25847 + - 25878 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 14506 + - 14490 + - 2635 + - 2633 + - 2634 + - 2639 + - 2638 + - 28556 + - 25674 + - 25677 + - 25590 + - 25591 + - 25592 + - 25589 + - 25588 + - 25593 + - uid: 79 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 2637 + - 2635 + - 28568 + - 25708 + - 25715 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 2670 + - 2643 + - 2661 + - 2662 + - 2663 + - 2642 + - 2644 + - 2645 + - 30297 + - 25559 + - 28566 + - 25562 + - 2633 + - 2634 + - 2636 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 10861 + - 2621 + - 28868 + - 3067 + - 29371 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,12.5 + parent: 2 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 28874 + - 2603 + - 13655 + - 13652 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 2810 + - 2603 + - 2811 + - 28875 + - 3069 + - 3056 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 2811 + - 10191 + - 13994 + - 3057 + - 29305 + - uid: 86 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 2798 + - 15022 + - 13511 + - 2808 + - 2809 + - 2810 + - 2594 + - 2606 + - 2605 + - 2814 + - 2815 + - 28870 + - 28863 + - 29168 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2792 + - 2678 + - 2677 + - 2676 + - 28626 + - 28703 + - 28704 + - 28658 + - 28655 + - 28710 + - 28636 + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 2605 + - 13720 + - 29228 + - 29220 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 2678 + - 2679 + - 2680 + - 28876 + - 28583 + - 28648 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 2799 + - 2607 + - 2797 + - 2608 + - 2606 + - 30160 + - 27339 + - 27644 + - uid: 91 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 2609 + - 2814 + - 2815 + - 2612 + - 2611 + - 28871 + - 13656 + - 3060 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 2612 + - 2613 + - 28872 + - 29192 + - 29291 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 2594 + - 28865 + - 3058 + - 29173 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 2610 + - 2614 + - 2615 + - 28873 + - 29210 + - 28813 + - 28823 + - 29214 + - 29206 + - 28818 + - 2611 + - 2791 + - 2617 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 2618 + - 2619 + - 2620 + - 30198 + - 30197 + - 13653 + - 29416 + - 3072 + - 29292 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 2600 + - 2601 + - 2602 + - 28869 + - 3062 + - 3073 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 30093 + - 27621 + - 30095 + - 27612 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 2812 + - 2813 + - 13511 + - 2808 + - 2967 + - 2829 + - 2607 + - 2799 + - 28864 + - 3063 + - 3074 + - uid: 100 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 30028 + - 30029 + - 2627 + - 2626 + - 2624 + - 28572 + - 26006 + - 26000 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 2624 + - 28576 + - 17720 + - 25958 + - uid: 102 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 2625 + - 3064 + - 3075 + - uid: 104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 2657 + - 2655 + - 2656 + - 30291 + - 30292 + - 25776 + - 25777 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 2658 + - 2659 + - 28540 + - 25803 + - 25804 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 2590 + - 2657 + - 2654 + - 2653 + - 28581 + - 25756 + - 25769 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-48.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 2644 + - 2793 + - 2819 + - 2820 + - 2648 + - 2649 + - 28536 + - 2818 + - 2817 + - 2816 + - 2640 + - 2645 + - 25480 + - 25459 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 2636 + - 2642 + - 2670 + - 2641 + - 2640 + - 28567 + - 25487 + - 25807 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 2643 + - 30296 + - 25486 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 14410 + - 14411 + - 14412 + - 2589 + - 2585 + - 2665 + - 2646 + - 2647 + - 2591 + - 26925 + - 25415 + - 25446 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 2663 + - 2664 + - 30298 + - 25426 + - 25504 + - uid: 113 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 2667 + - 2666 + - 28588 + - 25366 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 2825 + - 2826 + - 2827 + - 2828 + - 2830 + - 2597 + - 2804 + - 2802 + - 2801 + - 2800 + - 2805 + - 2806 + - 15025 + - 15023 + - 27476 + - 27563 + - uid: 115 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 2825 + - 2826 + - 2827 + - 2828 + - 2830 + - 2681 + - 2835 + - 2836 + - 28881 + - 27488 + - 27577 + - uid: 116 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 28880 + - 27585 + - 26913 + - uid: 117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 2836 + - 2835 + - 2834 + - 2831 + - 2832 + - 2683 + - 2682 + - 28882 + - 27153 + - 27108 + - 27102 + - 27140 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 2683 + - 2682 + - 2685 + - 30223 + - 27142 + - 27118 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 28904 + - 28905 + - 28878 + - 30229 + - 26868 + - 26856 + - 26867 + - uid: 121 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 30228 + - 28 + - 23097 + - uid: 122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 25159 + - 28899 + - 30127 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 24726 + - 24727 + - 24725 + - 6289 + - 26889 + - 26561 + - 26484 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2710 + - 2708 + - 2709 + - 2712 + - 2711 + - 28883 + - 27169 + - 27173 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2713 + - 2711 + - 2714 + - 28884 + - 27271 + - 27228 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2714 + - 2722 + - 2723 + - 2724 + - 2726 + - 2725 + - 28661 + - 27314 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2720 + - 2721 + - 2722 + - 2723 + - 28677 + - 30266 + - 27327 + - 27321 + - 27323 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 2747 + - 2753 + - 2748 + - 2749 + - 28674 + - 27349 + - 27359 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 2744 + - 2745 + - 28676 + - 27298 + - 27378 + - uid: 133 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 2745 + - 2747 + - 28662 + - 27369 + - 27374 + - 27373 + - 2746 + - uid: 134 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 2750 + - 2749 + - 2748 + - 2716 + - 2717 + - 28639 + - 28640 + - 2713 + - 2710 + - 2718 + - 2719 + - 27261 + - 27264 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 2750 + - 2727 + - 2728 + - 2751 + - 28638 + - 27347 + - 15743 + - uid: 136 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 2724 + - 2725 + - 2726 + - 2720 + - 2721 + - 2719 + - 2718 + - 2744 + - 28673 + - 27305 + - 27334 + - 27293 + - uid: 137 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 2752 + - 2751 + - 28637 + - 27393 + - 27406 + - uid: 138 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 2738 + - 2737 + - 28732 + - 26970 + - 26989 + - uid: 139 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 2759 + - 2758 + - 2755 + - 2733 + - 2734 + - 2737 + - 2735 + - 2736 + - 28730 + - 27018 + - 27053 + - 27017 + - uid: 140 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 2743 + - 2739 + - 2740 + - 28733 + - 27084 + - 27191 + - 27083 + - uid: 141 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 2736 + - 2735 + - 2740 + - 2739 + - 2741 + - 30273 + - 27072 + - 27186 + - uid: 142 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 2742 + - 2731 + - 2730 + - 2764 + - 2732 + - 2734 + - 2733 + - 2754 + - 2738 + - 28731 + - 26946 + - 26982 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 2754 + - 2755 + - 2756 + - 28713 + - 26947 + - 26954 + - uid: 144 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 2756 + - 2757 + - 2760 + - 28711 + - 27050 + - 26836 + - 27036 + - 27030 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 2759 + - 30271 + - 30272 + - 27040 + - 27065 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 2769 + - 2770 + - 2771 + - 28887 + - 21759 + - 21732 + - uid: 149 + components: + - type: Transform + pos: 22.5,-66.5 + parent: 2 + - type: DeviceList + devices: + - 2852 + - 2851 + - 15672 + - 21915 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,37.5 + parent: 2 + - type: DeviceList + devices: + - 18012 + - 18013 + - 18014 + - 30270 + - uid: 11142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,48.5 + parent: 2 + - type: DeviceList + devices: + - 11155 + - 11156 + - 11157 + - 11153 + - 11152 + - 11151 + - 30245 + - 11169 + - 29832 + - 18025 + - uid: 11163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 2 + - type: DeviceList + devices: + - 2585 + - 2589 + - 15920 + - 25358 + - 2586 + - uid: 11204 + components: + - type: Transform + pos: -53.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 29646 + - 29650 + - 30241 + - 11170 + - 11169 + - uid: 11228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,62.5 + parent: 2 + - type: DeviceList + devices: + - 11229 + - 29916 + - 30247 + - uid: 11243 + components: + - type: Transform + pos: -57.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 11281 + - 11282 + - 11280 + - 11155 + - 11156 + - 11157 + - 30250 + - 29866 + - 15942 + - 30251 + - uid: 11338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 29824 + - 30306 + - 30242 + - uid: 11351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 11283 + - 11292 + - 11291 + - 11290 + - 11289 + - 11288 + - 11287 + - 11286 + - 11285 + - 11284 + - 11293 + - 30255 + - 29733 + - 29897 + - uid: 11353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,48.5 + parent: 2 + - type: DeviceList + devices: + - 30252 + - 30254 + - 30253 + - 11167 + - 11166 + - 11168 + - 11151 + - 11152 + - 11153 + - 11282 + - 11281 + - 11280 + - 30255 + - 30242 + - 11296 + - 15936 + - 29874 + - 29873 + - 29833 + - 29693 + - 29700 + - 29883 + - 15941 + - 29831 + - 29726 + - uid: 11375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,55.5 + parent: 2 + - type: DeviceList + devices: + - 11295 + - 11296 + - 11297 + - 30256 + - 29814 + - 29798 + - uid: 11379 + components: + - type: Transform + pos: -75.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 11297 + - 30257 + - 29813 + - 29739 + - 29809 + - uid: 11384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 11295 + - 30258 + - 30260 + - 30259 + - 18022 + - 29908 + - 17076 + - uid: 11479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 11170 + - 11166 + - 11167 + - 11168 + - 30246 + - 11229 + - 29682 + - 1974 + - uid: 11931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 14483 + - 14510 + - 12881 + - 24584 + - 26943 + - 28105 + - 28109 + - uid: 12165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 11164 + - 28073 + - 4334 + - uid: 12166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 1405 + - 28075 + - 11240 + - uid: 12167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 11165 + - 28072 + - 4333 + - uid: 12180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 11238 + - 1402 + - 28074 + - uid: 12208 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 24737 + - 24738 + - 30311 + - 14483 + - 14510 + - 26942 + - 28096 + - 28069 + - 11165 + - 11164 + - 1402 + - 1405 + - uid: 12287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 12881 + - 24584 + - 20742 + - 9891 + - 10585 + - 30312 + - 28142 + - 28129 + - 30308 + - 27679 + - 28122 + - uid: 12463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 24762 + - 9057 + - 24761 + - 29999 + - 26948 + - 30196 + - 30195 + - uid: 12894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 24738 + - 12877 + - 12876 + - 12878 + - 24736 + - 2699 + - 24739 + - 14516 + - 12880 + - 12879 + - 26897 + - 26898 + - 24954 + - 28586 + - uid: 13088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 12878 + - 12876 + - 12877 + - 11235 + - 2679 + - 2797 + - 2677 + - 12873 + - 12874 + - 12875 + - 26900 + - 26899 + - 28592 + - 28618 + - uid: 13293 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 13314 + - 13315 + - 13316 + - 2812 + - 2813 + - 12875 + - 12874 + - 12873 + - 26901 + - 2796 + - 2588 + - 2795 + - 2676 + - 24735 + - 10862 + - 26902 + - 28696 + - uid: 13305 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11468 + - 29918 + - 10862 + - 13314 + - 13315 + - 13316 + - 2601 + - 13319 + - 13318 + - 13317 + - 95 + - 26930 + - 28755 + - 28753 + - 28720 + - 28729 + - 28728 + - 28721 + - uid: 13338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 13317 + - 13318 + - 13319 + - 11234 + - 26932 + - 28761 + - 28776 + - uid: 13352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 24734 + - 13432 + - 2796 + - 2588 + - 2795 + - 2805 + - 2806 + - 13436 + - 24732 + - 24733 + - 26894 + - 6651 + - 26905 + - 26904 + - 26903 + - 27431 + - 27635 + - 17719 + - 27636 + - uid: 13407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 26894 + - 6651 + - 26905 + - 24731 + - 2728 + - 2727 + - 2716 + - 2717 + - 13450 + - 10867 + - 13532 + - 26915 + - 26914 + - 27429 + - uid: 13427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 13450 + - 10867 + - 13532 + - 2708 + - 2709 + - 2834 + - 2831 + - 2832 + - 24728 + - 26916 + - 26917 + - 2731 + - 2730 + - 2764 + - 2732 + - 14139 + - 10984 + - 11131 + - 14140 + - 24729 + - 26997 + - 27095 + - uid: 13457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 2690 + - 2839 + - 2689 + - 2838 + - 2840 + - 2593 + - 2707 + - 2703 + - 28606 + - 22972 + - 22971 + - uid: 13500 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 14139 + - 10984 + - 11131 + - 14140 + - 2760 + - 2757 + - 28904 + - 11055 + - 11058 + - 11054 + - 11053 + - 24748 + - 26888 + - 28903 + - 26442 + - 13449 + - 13447 + - 26890 + - 30274 + - 26833 + - 26528 + - uid: 13528 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 13447 + - 13449 + - 26442 + - 6289 + - 24726 + - 24727 + - 24724 + - 24725 + - 24721 + - 24722 + - 24723 + - 24756 + - 28902 + - 26491 + - 26746 + - uid: 14045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 4332 + - 14085 + - 14086 + - 14084 + - 24717 + - 24716 + - 24715 + - 24718 + - 24719 + - 24720 + - 14082 + - 14083 + - 26748 + - 26795 + - 30277 + - 13608 + - 13607 + - uid: 14046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 13610 + - 13607 + - 13608 + - 13609 + - 26876 + - 7650 + - 26677 + - uid: 14098 + components: + - type: Transform + pos: 46.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 14083 + - 14082 + - 30280 + - 26764 + - 26751 + - uid: 14150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 28901 + - 13609 + - 24715 + - 24716 + - 24717 + - 26875 + - 26818 + - 26808 + - 14087 + - uid: 14170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 11053 + - 11054 + - 11058 + - 11055 + - 24747 + - 2706 + - 2841 + - 30143 + - 11005 + - 11006 + - 11007 + - 26891 + - 24744 + - 24743 + - 2686 + - 2687 + - 2688 + - 26895 + - 14345 + - 14344 + - 14343 + - 24740 + - 2696 + - 2697 + - 12879 + - 12880 + - 14516 + - 30284 + - 30283 + - 24876 + - 22566 + - 22587 + - uid: 14292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11005 + - 11006 + - 11007 + - 24753 + - 24746 + - 24745 + - 24751 + - 24750 + - 24749 + - 30285 + - 26919 + - 26920 + - 17726 + - 22297 + - uid: 14513 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 14343 + - 14344 + - 14345 + - 24741 + - 14410 + - 14411 + - 14412 + - 24752 + - 2847 + - 24742 + - 26924 + - 26923 + - 25276 + - 25091 + - uid: 14591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 30231 + - 30232 + - 30230 + - 30236 + - 27725 + - 27718 + - uid: 14830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 30230 + - 30233 + - 30238 + - 27738 + - uid: 14940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,40.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 30231 + - 30234 + - 30237 + - 27737 + - uid: 15093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 30234 + - 30232 + - 30233 + - 30239 + - 30235 + - 27736 + - uid: 15274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,55.5 + parent: 2 + - type: DeviceList + devices: + - 30235 + - 30240 + - 27735 + - uid: 15832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - uid: 17018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 29939 + - 29940 + - 29947 + - 15921 + - 29943 + - 29944 + - 29945 + - 29946 + - 27963 + - 27964 + - uid: 17148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,15.5 + parent: 2 + - uid: 17149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 30073 + - 27993 + - uid: 17432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-64.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-60.5 + parent: 2 + - type: DeviceList + devices: + - 2790 + - 2789 + - 2788 + - 24757 + - 30281 + - 30282 + - 26638 + - 26639 + - uid: 17977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 17889 + - 17888 + - 17887 + - 29936 + - 29935 + - 29934 + - 29942 + - 30267 + - 27908 + - 27923 + - uid: 18728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 29981 + - 29358 + - uid: 19935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-23.5 + parent: 2 + - uid: 20571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 26172 + - 26173 + - 30038 + - uid: 20902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-70.5 + parent: 2 + - uid: 26688 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 24742 + - 24740 + - 30279 + - 22254 + - 16189 + - uid: 30163 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 2608 + - 2609 + - 2610 + - 30162 + - 28796 + - 29200 + - uid: 30164 + components: + - type: Transform + pos: -75.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 30001 + - 28243 + - 28247 + - 28239 + - 30002 + - uid: 30226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 2694 + - 2693 + - 2692 + - 2691 + - 2686 + - 2687 + - 2688 + - 22814 + - 22655 + - 30224 + - 30225 + - 2838 + - 2689 + - 2839 + - 2690 + - 2840 + - uid: 30227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 2705 + - 2691 + - 2841 + - 30143 + - 28596 + - 22437 + - 22450 + - uid: 30248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 30276 + - 14086 + - 14084 + - 14087 + - 26800 + - 26811 + - uid: 30269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 17812 + - 17813 + - 17807 + - 17887 + - 17888 + - 17889 + - 30268 + - 27909 + - 27924 +- proto: AirCanister + entities: + - uid: 150 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -74.5,-33.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 10918 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: -71.5,64.5 + parent: 2 + - uid: 11343 + components: + - type: Transform + pos: -71.5,63.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 16962 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 17553 + components: + - type: Transform + pos: 34.5,-65.5 + parent: 2 + - uid: 17711 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 17876 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 18425 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 18594 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 + - uid: 18659 + components: + - type: Transform + pos: -76.5,-22.5 + parent: 2 + - uid: 18725 + components: + - type: Transform + pos: -66.5,-30.5 + parent: 2 +- proto: Airlock + entities: + - uid: 156 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: -93.5,-26.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: -90.5,-26.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: -90.5,-29.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -77.5,-34.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -77.5,-39.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-39.5 + parent: 2 + - type: Door + secondsUntilStateChange: -25130.588 + state: Opening + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-42.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-22.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-22.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 10899 + components: + - type: Transform + pos: -55.5,56.5 + parent: 2 + - uid: 10900 + components: + - type: Transform + pos: -55.5,52.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 11600 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 11808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 11827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 11828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 11927 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 11928 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 11930 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 11953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-40.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-35.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-38.5 + parent: 2 +- proto: AirlockArmoryLocked + entities: + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-51.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-54.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-77.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-79.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 175 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-49.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - uid: 16961 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 18513 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 18515 + components: + - type: Transform + pos: -69.5,-4.5 + parent: 2 + - uid: 18658 + components: + - type: Transform + pos: -75.5,-24.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 179 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-41.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-40.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-43.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-40.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: -61.5,-34.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -61.5,-35.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -49.5,-38.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -64.5,-35.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: -73.5,-34.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-44.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-44.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + pos: 38.5,-42.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - type: Door + secondsUntilStateChange: -69912.89 + state: Opening + - uid: 13740 + components: + - type: Transform + pos: 48.5,-33.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-34.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -51.5,-34.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -51.5,-35.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: -60.5,-38.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -94.5,-29.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 200 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 13862 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 +- proto: AirlockCargo + entities: + - uid: 15984 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + pos: 20.5,25.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-23.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 13739 + components: + - type: Transform + pos: 48.5,-41.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-14.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 10720 + components: + - type: Transform + pos: -75.5,52.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + pos: -72.5,54.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + pos: -75.5,56.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-2.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,1.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 215 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 217 + components: + - type: Transform + pos: 33.5,-62.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,4.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 2 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 228 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + pos: -1.5,43.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + pos: -7.5,43.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 230 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 232 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-54.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-54.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-52.5 + parent: 2 + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-54.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-50.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 22.5,-47.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-59.5 + parent: 2 + - uid: 19996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-57.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-66.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-49.5 + parent: 2 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-49.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 30.5,-62.5 + parent: 2 + - uid: 254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 + - uid: 10979 + components: + - type: Transform + pos: -69.5,61.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-38.5 + parent: 2 + - uid: 13907 + components: + - type: Transform + pos: 24.5,-73.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: -53.5,-51.5 + parent: 2 + - uid: 16263 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-44.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-68.5 + parent: 2 + - uid: 17637 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 17675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-40.5 + parent: 2 + - uid: 17690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-52.5 + parent: 2 + - uid: 18393 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 18421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,9.5 + parent: 2 + - uid: 29949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,15.5 + parent: 2 +- proto: AirlockEVAGlassLocked + entities: + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-33.5 + parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-39.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-26.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 50.5,-42.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 37.5,-45.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 50.5,-40.5 + parent: 2 + - uid: 12278 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 +- proto: AirlockExternalAtmosphericsLocked + entities: + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-60.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-63.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-63.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-63.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-63.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-70.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-70.5 + parent: 2 +- proto: AirlockExternalCargoLocked + entities: + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-22.5 + parent: 2 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-20.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 263 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: -74.5,-29.5 + parent: 2 + - uid: 16011 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 16020 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 5863 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 11800 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 11802 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 17499 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 17500 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 269 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -20.5,-57.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 272: + - DoorStatus: Toggle + - uid: 272 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 271: + - DoorStatus: Toggle + - uid: 442 + components: + - type: Transform + pos: -52.5,58.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -50.5,58.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 61.5,-6.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + pos: 35.5,-76.5 + parent: 2 + - uid: 17489 + components: + - type: Transform + pos: 35.5,-74.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 2138 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 12170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 + parent: 2 + - uid: 12173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-32.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-40.5 + parent: 2 + - uid: 12787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-34.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 1273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,32.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,4.5 + parent: 2 + - uid: 16182 + components: + - type: Transform + pos: -49.5,-54.5 + parent: 2 + - uid: 16183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 1326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-10.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,27.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,23.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-20.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-22.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 268 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-26.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 16163 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 16176 + components: + - type: Transform + pos: -59.5,-51.5 + parent: 2 + - uid: 17542 + components: + - type: Transform + pos: 39.5,-68.5 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: 41.5,-68.5 + parent: 2 + - uid: 18093 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 18098 + components: + - type: Transform + pos: -9.5,22.5 + parent: 2 + - uid: 18158 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + pos: -72.5,-29.5 + parent: 2 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 273 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -20.5,-59.5 + parent: 2 +- proto: AirlockFreezer + entities: + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 282 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 283 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,1.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,2.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 10937 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 10938 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 10939 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 11002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-33.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-33.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-33.5 + parent: 2 + - uid: 11154 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 11826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-20.5 + parent: 2 + - uid: 11833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-18.5 + parent: 2 + - uid: 12276 + components: + - type: Transform + pos: -52.5,-21.5 + parent: 2 + - uid: 12277 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 12449 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 12450 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,5.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 13448 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-33.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-34.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-35.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-33.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-34.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-35.5 + parent: 2 + - uid: 13853 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + pos: 44.5,-41.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - type: Door + secondsUntilStateChange: -18409.645 + state: Opening + - uid: 14347 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-24.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 299 + components: + - type: Transform + pos: -44.5,-50.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 304 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 +- proto: AirlockKitchenLocked + entities: + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 10671 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 307 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-8.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 568 + components: + - type: Transform + pos: -54.5,62.5 + parent: 2 +- proto: AirlockMaintChemLocked + entities: + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-6.5 + parent: 2 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,5.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 312 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 17509 + components: + - type: Transform + pos: 32.5,-70.5 + parent: 2 + - type: Door + secondsUntilStateChange: -16261.031 + state: Opening +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 315 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 321 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-36.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-33.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-40.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-1.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-6.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,5.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 10977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-40.5 + parent: 2 + - uid: 10978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 2 + - uid: 11952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-16.5 + parent: 2 + - uid: 11955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 12274 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 12447 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 12448 + components: + - type: Transform + pos: -63.5,-23.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 15987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,20.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,21.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 16298 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 17330 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 17546 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-64.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 2 + - uid: 17705 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 18055 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 18056 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 18085 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - uid: 18092 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 18114 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 18115 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 18186 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 18187 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 18208 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 18333 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 18339 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 18340 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 18432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - uid: 18435 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 18452 + components: + - type: Transform + pos: -68.5,5.5 + parent: 2 + - uid: 18453 + components: + - type: Transform + pos: -73.5,2.5 + parent: 2 + - uid: 18454 + components: + - type: Transform + pos: -71.5,-0.5 + parent: 2 + - uid: 18626 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 18637 + components: + - type: Transform + pos: -75.5,-19.5 + parent: 2 + - uid: 18638 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - uid: 18669 + components: + - type: Transform + pos: -68.5,-29.5 + parent: 2 + - uid: 18670 + components: + - type: Transform + pos: -70.5,-26.5 + parent: 2 + - uid: 18671 + components: + - type: Transform + pos: -66.5,-28.5 + parent: 2 + - uid: 18672 + components: + - type: Transform + pos: -64.5,-26.5 + parent: 2 + - uid: 18673 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 18674 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - type: Door + secondsUntilStateChange: -54239.65 + state: Opening + - uid: 18675 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 + - uid: 18676 + components: + - type: Transform + pos: -62.5,-36.5 + parent: 2 + - uid: 18881 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 18925 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - uid: 19235 + components: + - type: Transform + pos: -68.5,-17.5 + parent: 2 + - uid: 19315 + components: + - type: Transform + pos: -73.5,-21.5 + parent: 2 + - uid: 29924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 2 + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,13.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,15.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,1.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 16431 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 16432 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 342 + components: + - type: Transform + pos: -20.5,-52.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -50.5,-45.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,0.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-2.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,1.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,11.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,9.5 + parent: 2 +- proto: AirlockMedicalScienceLocked + entities: + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-11.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 2616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,13.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,6.5 + parent: 2 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,11.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 372 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 +- proto: AirlockScience + entities: + - uid: 374 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-2.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,6.5 + parent: 2 + - uid: 381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 17833 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 17834 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,2.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,3.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,2.5 + parent: 2 + - uid: 17830 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - type: Door + secondsUntilStateChange: -48695.035 + state: Opening +- proto: AirlockSecurityGlassLocked + entities: + - uid: 391 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-52.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 14.5,-52.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-16.5 + parent: 2 + - uid: 18154 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 +- proto: AirlockSecurityLocked + entities: + - uid: 410 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-34.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 30820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-40.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-33.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-10.5 + parent: 2 + - uid: 422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-52.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-50.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-39.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 11238 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 11241 + components: + - type: Transform + pos: -58.5,58.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + pos: -58.5,50.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - uid: 15672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-68.5 + parent: 2 + - uid: 15920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-46.5 + parent: 2 + - uid: 26875 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 26876 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 26889 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 2 + - uid: 26890 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 26891 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 26895 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 26897 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 26898 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 26899 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 26900 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 26901 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 26902 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 26903 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 26904 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 26914 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 26915 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 26916 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 26917 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 26919 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 26920 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 2 + - uid: 26921 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 26922 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 26923 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 26924 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 26925 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 26930 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 26932 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 26942 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 26943 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 26945 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 26948 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 2 + - uid: 28501 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - uid: 28536 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 28539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-46.5 + parent: 2 + - uid: 28540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-51.5 + parent: 2 + - uid: 28545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-47.5 + parent: 2 + - uid: 28556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-35.5 + parent: 2 + - uid: 28566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-34.5 + parent: 2 + - uid: 28567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-37.5 + parent: 2 + - uid: 28568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-38.5 + parent: 2 + - uid: 28571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-38.5 + parent: 2 + - uid: 28572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-35.5 + parent: 2 + - uid: 28576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-39.5 + parent: 2 + - uid: 28581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-50.5 + parent: 2 + - uid: 28584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-54.5 + parent: 2 + - uid: 28587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-37.5 + parent: 2 + - uid: 28588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-33.5 + parent: 2 + - uid: 28589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 28593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 2 + - uid: 28594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-22.5 + parent: 2 + - uid: 28595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-24.5 + parent: 2 + - uid: 28596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 2 + - uid: 28606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 28607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2487 + - uid: 28608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 28615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 28617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 28619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 28626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 28630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 28637 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 28638 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 28639 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 28640 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 28661 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 28662 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 28673 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 28674 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 28676 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 28677 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 28711 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 28713 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 28730 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 + - uid: 28731 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 28732 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 28733 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 28864 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 28865 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 28866 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 28867 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 28868 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 28869 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 28870 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 28871 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 28872 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 28873 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 28874 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 28875 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 28876 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 28877 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 28878 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 28879 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 28880 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 28881 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 28882 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 28883 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 28884 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 28885 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 28886 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 28887 + components: + - type: Transform + pos: 24.5,-48.5 + parent: 2 + - uid: 28888 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 2 + - uid: 28889 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 28890 + components: + - type: Transform + pos: 17.5,-58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 28891 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 28892 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 2 + - uid: 28893 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 28894 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - uid: 28895 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 28896 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 28897 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 28898 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - uid: 28899 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 28902 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - uid: 30160 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 30162 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 30197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-3.5 + parent: 2 + - uid: 30198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,2.5 + parent: 2 + - uid: 30223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - uid: 30224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - uid: 30225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 2 + - uid: 30229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 2 + - uid: 30236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 2 + - uid: 30237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,44.5 + parent: 2 + - uid: 30238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,44.5 + parent: 2 + - uid: 30239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,46.5 + parent: 2 + - uid: 30240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,50.5 + parent: 2 + - uid: 30241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,54.5 + parent: 2 + - uid: 30245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,49.5 + parent: 2 + - uid: 30246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,59.5 + parent: 2 + - uid: 30247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,63.5 + parent: 2 + - uid: 30250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,46.5 + parent: 2 + - uid: 30251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,46.5 + parent: 2 + - uid: 30252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,49.5 + parent: 2 + - uid: 30253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,59.5 + parent: 2 + - uid: 30254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,54.5 + parent: 2 + - uid: 30255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,54.5 + parent: 2 + - uid: 30256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,54.5 + parent: 2 + - uid: 30257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,59.5 + parent: 2 + - uid: 30258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,49.5 + parent: 2 + - uid: 30259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,45.5 + parent: 2 + - uid: 30260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,48.5 + parent: 2 + - uid: 30261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - uid: 30262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + - uid: 30263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 30267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - uid: 30268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + - uid: 30270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,38.5 + parent: 2 + - uid: 30272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 2 + - uid: 30273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-10.5 + parent: 2 + - uid: 30274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 30276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-42.5 + parent: 2 + - uid: 30277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-35.5 + parent: 2 + - uid: 30279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-36.5 + parent: 2 + - uid: 30280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-32.5 + parent: 2 + - uid: 30281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-62.5 + parent: 2 + - uid: 30282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-63.5 + parent: 2 + - uid: 30290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-52.5 + parent: 2 + - uid: 30291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-53.5 + parent: 2 + - uid: 30292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-50.5 + parent: 2 + - uid: 30296 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 30297 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 30298 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 30299 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 + - uid: 30303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-38.5 + parent: 2 + - uid: 30306 + components: + - type: Transform + pos: -69.5,63.5 + parent: 2 + - uid: 30307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-29.5 + parent: 2 + - uid: 30308 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 30312 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 +- proto: AirTankFilled + entities: + - uid: 425 + components: + - type: Transform + pos: -39.52853,-11.418538 + parent: 2 +- proto: AloeSeeds + entities: + - uid: 30214 + components: + - type: Transform + pos: -18.515762,8.335824 + parent: 2 +- proto: AltarBananium + entities: + - uid: 17680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-45.5 + parent: 2 +- proto: AltarChaos + entities: + - uid: 426 + components: + - type: Transform + pos: -82.5,-49.5 + parent: 2 +- proto: AltarConvertRed + entities: + - uid: 427 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 428 + components: + - type: Transform + pos: -69.5,54.5 + parent: 2 +- proto: AmmoniaCanister + entities: + - uid: 18119 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 +- proto: AmmoTechFabCircuitboard + entities: + - uid: 430 + components: + - type: Transform + pos: 16.537743,-17.428745 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: -4.45721,-34.340523 + parent: 2 +- proto: AnomalyScanner + entities: + - uid: 432 + components: + - type: Transform + pos: 52.590206,-4.433662 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 43.460186,8.636662 + parent: 2 +- proto: AnomalyVesselCircuitboard + entities: + - uid: 434 + components: + - type: Transform + pos: -2.4707189,-34.355415 + parent: 2 +- proto: APCBasic + entities: + - uid: 435 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,-27.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,10.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-53.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,2.5 + parent: 2 + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-42.5 + parent: 2 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-39.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-33.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-38.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-53.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-49.5 + parent: 2 + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-43.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-54.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-48.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-36.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-1.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - uid: 479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-9.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-40.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-55.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 2 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - type: Apc + hasAccess: True + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-35.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 2 + - uid: 501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + - uid: 502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,2.5 + parent: 2 + - uid: 503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-4.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,0.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 + - uid: 514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-70.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-35.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-49.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,13.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-55.5 + parent: 2 + - uid: 11144 + components: + - type: Transform + pos: -53.5,52.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,54.5 + parent: 2 + - uid: 11218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,63.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,62.5 + parent: 2 + - uid: 11350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,55.5 + parent: 2 + - uid: 11378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,57.5 + parent: 2 + - uid: 11383 + components: + - type: Transform + pos: -74.5,52.5 + parent: 2 + - uid: 11933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-22.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-16.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-21.5 + parent: 2 + - uid: 12279 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-41.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-39.5 + parent: 2 + - uid: 14585 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,42.5 + parent: 2 + - uid: 15091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,45.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 15598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-69.5 + parent: 2 + - uid: 16415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-52.5 + parent: 2 + - uid: 16452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-59.5 + parent: 2 + - uid: 16728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 2 + - uid: 16746 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + pos: 35.5,-59.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 17974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - uid: 18350 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 18462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,18.5 + parent: 2 + - uid: 18662 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-10.5 + parent: 2 + - uid: 19195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-32.5 + parent: 2 + - uid: 19619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-4.5 + parent: 2 + - uid: 19644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,27.5 + parent: 2 + - uid: 19729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 2 + - uid: 19779 + components: + - type: Transform + pos: -62.5,-25.5 + parent: 2 + - uid: 20089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + - uid: 20101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-0.5 + parent: 2 + - uid: 20152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 2 + - uid: 20229 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-19.5 + parent: 2 + - uid: 20470 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-40.5 + parent: 2 + - uid: 20552 + components: + - type: Transform + pos: -53.5,-42.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-45.5 + parent: 2 + - uid: 20827 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 20831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-43.5 + parent: 2 + - uid: 20852 + components: + - type: Transform + pos: 31.5,-70.5 + parent: 2 + - uid: 20899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-70.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,1.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 21862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 2 + - uid: 22158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-36.5 + parent: 2 + - uid: 22162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-44.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 22774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 29746 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 30665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-15.5 + parent: 2 + - uid: 31003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-79.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 523 + components: + - type: Transform + pos: -4.4611235,-38.441345 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 17.576515,-48.345627 + parent: 2 + - uid: 15895 + components: + - type: Transform + pos: 18.406311,18.727356 + parent: 2 + - uid: 16284 + components: + - type: Transform + pos: 2.4750907,-45.534775 + parent: 2 +- proto: AppleSeeds + entities: + - uid: 525 + components: + - type: Transform + pos: 12.474023,-13.670428 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 526 + components: + - type: Transform + pos: 33.380898,-17.328524 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 33.572388,-17.456182 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 30810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-41.5 + parent: 2 + - uid: 30811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-42.5 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 13878 + components: + - type: Transform + pos: -0.27893686,53.27476 + parent: 2 +- proto: Ash + entities: + - uid: 528 + components: + - type: Transform + pos: -91.52501,-33.36291 + parent: 2 + - uid: 14778 + components: + - type: Transform + pos: -25.476957,-73.463615 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: -26.539457,-72.38549 + parent: 2 + - uid: 15604 + components: + - type: Transform + pos: -23.398832,-70.22924 + parent: 2 + - uid: 15605 + components: + - type: Transform + pos: -25.258207,-69.276115 + parent: 2 + - uid: 15606 + components: + - type: Transform + pos: -22.539457,-72.26049 + parent: 2 + - uid: 15607 + components: + - type: MetaData + desc: Раньше она была бззззз, теперь же, вам не хочется быть молью. + name: прах моли + - type: Transform + pos: -22.905502,-74.7034 + parent: 2 + - uid: 15741 + components: + - type: Transform + pos: -9.467749,-66.52599 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 13873 + components: + - type: Transform + pos: -0.60706186,53.665386 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 390 + components: + - type: Transform + pos: 29.5,-77.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 22.5,-81.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 23.5,-81.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -38.5,-59.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -38.5,-60.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -29.5,-56.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -29.5,-57.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: -29.5,-58.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -30.5,-59.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -32.5,-57.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -32.5,-58.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -34.5,-57.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 21.5,-80.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: -59.5,-60.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -60.5,-60.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -59.5,-59.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -58.5,-58.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -59.5,-58.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: -60.5,-57.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: -61.5,-57.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: -62.5,-57.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: -62.5,-58.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -63.5,-57.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -63.5,-58.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -64.5,-57.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -64.5,-58.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -61.5,-56.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -57.5,-57.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -57.5,-56.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -57.5,-54.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -58.5,-57.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -58.5,-56.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -58.5,-55.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -58.5,-54.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -59.5,-57.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -59.5,-56.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -59.5,-55.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -59.5,-54.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -60.5,-56.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -60.5,-55.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -58.5,-53.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -56.5,-54.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: -52.5,-54.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: -52.5,-53.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -77.5,-46.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: -77.5,-47.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: -78.5,-47.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -78.5,-48.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -78.5,-49.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -79.5,-47.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -79.5,-48.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -79.5,-49.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -80.5,-47.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -80.5,-48.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -80.5,-49.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -80.5,-50.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -81.5,-50.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: -81.5,-51.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -81.5,-52.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -82.5,-51.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -82.5,-52.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: -83.5,-51.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -83.5,-50.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -84.5,-51.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -84.5,-50.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: -84.5,-49.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: -62.5,-48.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: -61.5,-47.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -62.5,-47.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -63.5,-47.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: -88.5,-23.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -89.5,-23.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: -89.5,-22.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -90.5,-22.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: -88.5,-21.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: -88.5,-20.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: -89.5,-21.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -89.5,-20.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -90.5,-21.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: -90.5,-20.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -89.5,-19.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -90.5,-19.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -91.5,-21.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -92.5,-21.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -92.5,-20.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: -93.5,-20.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -93.5,-21.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -93.5,-19.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -93.5,-18.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -94.5,-18.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: -94.5,-19.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: -94.5,-20.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: -95.5,-19.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: -96.5,-19.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: -97.5,-19.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: -97.5,-20.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: -98.5,-20.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: -97.5,-21.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -98.5,-21.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -99.5,-21.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -99.5,-22.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -98.5,-22.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -97.5,-22.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -98.5,-23.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -97.5,-23.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -96.5,-23.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -95.5,-23.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -94.5,-23.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -94.5,-22.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -93.5,-22.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -97.5,-26.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -98.5,-26.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -98.5,-25.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -99.5,-25.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: -100.5,-25.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: -100.5,-26.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: -101.5,-26.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: -99.5,-26.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: -101.5,-27.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -100.5,-27.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -100.5,-28.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -99.5,-28.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -99.5,-29.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -98.5,-29.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -98.5,-28.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: -98.5,-27.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -99.5,-27.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: -91.5,-41.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -92.5,-41.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: -93.5,-41.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -94.5,-41.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: -95.5,-41.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -95.5,-40.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: -94.5,-40.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -94.5,-39.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -94.5,-42.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -93.5,-42.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -92.5,-42.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 61.5,-0.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 62.5,1.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 62.5,0.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 20.5,-81.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 18.5,-80.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 25.5,-81.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 20.5,-80.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 17.5,-80.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 18.5,-81.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 25.5,-80.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 28.5,-80.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 28.5,-81.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 26.5,-81.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 27.5,-80.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 27.5,-81.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 26.5,-80.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 29.5,-78.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 24.5,-82.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 17.5,-81.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 22.5,-80.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: 20.5,-82.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 19.5,-82.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 23.5,-80.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 23.5,-82.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: 16.5,-80.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 24.5,-81.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 22.5,-82.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 18.5,-82.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 24.5,-80.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 25.5,-82.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: 19.5,-80.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: 19.5,-81.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: -44.5,24.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: 29.5,-80.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: 29.5,-79.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: -56.5,10.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: 50.5,28.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: 21.5,-81.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: 21.5,-82.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 44.5,-62.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: 43.5,-63.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: 43.5,-64.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: 44.5,-61.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: 43.5,-61.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 43.5,-62.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: 44.5,-63.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: 27.5,-82.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: 61.5,6.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + pos: 51.5,28.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: 48.5,29.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + pos: 54.5,29.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + pos: -24.5,26.5 + parent: 2 + - uid: 11507 + components: + - type: Transform + pos: -24.5,25.5 + parent: 2 + - uid: 11528 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - uid: 11529 + components: + - type: Transform + pos: -28.5,24.5 + parent: 2 + - uid: 11530 + components: + - type: Transform + pos: -28.5,23.5 + parent: 2 + - uid: 11531 + components: + - type: Transform + pos: -28.5,22.5 + parent: 2 + - uid: 11533 + components: + - type: Transform + pos: -33.5,24.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + pos: -33.5,23.5 + parent: 2 + - uid: 11535 + components: + - type: Transform + pos: -33.5,25.5 + parent: 2 + - uid: 11561 + components: + - type: Transform + pos: -15.5,28.5 + parent: 2 + - uid: 11562 + components: + - type: Transform + pos: -15.5,27.5 + parent: 2 + - uid: 11563 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 11564 + components: + - type: Transform + pos: -16.5,28.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 11566 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 11567 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 11568 + components: + - type: Transform + pos: -17.5,27.5 + parent: 2 + - uid: 11569 + components: + - type: Transform + pos: -17.5,26.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: -18.5,27.5 + parent: 2 + - uid: 11572 + components: + - type: Transform + pos: -18.5,26.5 + parent: 2 + - uid: 11573 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 11574 + components: + - type: Transform + pos: -19.5,27.5 + parent: 2 + - uid: 11575 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 11577 + components: + - type: Transform + pos: -20.5,27.5 + parent: 2 + - uid: 11578 + components: + - type: Transform + pos: -20.5,26.5 + parent: 2 + - uid: 11580 + components: + - type: Transform + pos: -21.5,27.5 + parent: 2 + - uid: 11581 + components: + - type: Transform + pos: -21.5,26.5 + parent: 2 + - uid: 11582 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: -22.5,27.5 + parent: 2 + - uid: 11584 + components: + - type: Transform + pos: -22.5,26.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 11586 + components: + - type: Transform + pos: -23.5,27.5 + parent: 2 + - uid: 11587 + components: + - type: Transform + pos: -23.5,26.5 + parent: 2 + - uid: 11588 + components: + - type: Transform + pos: -24.5,27.5 + parent: 2 + - uid: 11593 + components: + - type: Transform + pos: -24.5,28.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -26.5,28.5 + parent: 2 + - uid: 11595 + components: + - type: Transform + pos: -25.5,28.5 + parent: 2 + - uid: 11636 + components: + - type: Transform + pos: -83.5,57.5 + parent: 2 + - uid: 11637 + components: + - type: Transform + pos: -83.5,53.5 + parent: 2 + - uid: 11641 + components: + - type: Transform + pos: -82.5,58.5 + parent: 2 + - uid: 11642 + components: + - type: Transform + pos: -89.5,50.5 + parent: 2 + - uid: 11643 + components: + - type: Transform + pos: -93.5,54.5 + parent: 2 + - uid: 11644 + components: + - type: Transform + pos: -93.5,53.5 + parent: 2 + - uid: 11646 + components: + - type: Transform + pos: -92.5,58.5 + parent: 2 + - uid: 11647 + components: + - type: Transform + pos: -89.5,51.5 + parent: 2 + - uid: 11648 + components: + - type: Transform + pos: -89.5,52.5 + parent: 2 + - uid: 11649 + components: + - type: Transform + pos: -89.5,53.5 + parent: 2 + - uid: 11650 + components: + - type: Transform + pos: -89.5,54.5 + parent: 2 + - uid: 11652 + components: + - type: Transform + pos: -89.5,56.5 + parent: 2 + - uid: 11653 + components: + - type: Transform + pos: -89.5,57.5 + parent: 2 + - uid: 11655 + components: + - type: Transform + pos: -90.5,50.5 + parent: 2 + - uid: 11656 + components: + - type: Transform + pos: -90.5,51.5 + parent: 2 + - uid: 11657 + components: + - type: Transform + pos: -90.5,52.5 + parent: 2 + - uid: 11658 + components: + - type: Transform + pos: -90.5,53.5 + parent: 2 + - uid: 11659 + components: + - type: Transform + pos: -90.5,54.5 + parent: 2 + - uid: 11660 + components: + - type: Transform + pos: -90.5,55.5 + parent: 2 + - uid: 11661 + components: + - type: Transform + pos: -90.5,56.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: -90.5,57.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: -90.5,58.5 + parent: 2 + - uid: 11664 + components: + - type: Transform + pos: -91.5,50.5 + parent: 2 + - uid: 11665 + components: + - type: Transform + pos: -91.5,51.5 + parent: 2 + - uid: 11666 + components: + - type: Transform + pos: -91.5,52.5 + parent: 2 + - uid: 11667 + components: + - type: Transform + pos: -91.5,53.5 + parent: 2 + - uid: 11668 + components: + - type: Transform + pos: -91.5,54.5 + parent: 2 + - uid: 11669 + components: + - type: Transform + pos: -91.5,55.5 + parent: 2 + - uid: 11670 + components: + - type: Transform + pos: -91.5,56.5 + parent: 2 + - uid: 11671 + components: + - type: Transform + pos: -91.5,57.5 + parent: 2 + - uid: 11672 + components: + - type: Transform + pos: -91.5,58.5 + parent: 2 + - uid: 11673 + components: + - type: Transform + pos: -92.5,51.5 + parent: 2 + - uid: 11674 + components: + - type: Transform + pos: -92.5,52.5 + parent: 2 + - uid: 11675 + components: + - type: Transform + pos: -92.5,53.5 + parent: 2 + - uid: 11676 + components: + - type: Transform + pos: -92.5,54.5 + parent: 2 + - uid: 11677 + components: + - type: Transform + pos: -92.5,55.5 + parent: 2 + - uid: 11678 + components: + - type: Transform + pos: -92.5,56.5 + parent: 2 + - uid: 11679 + components: + - type: Transform + pos: -92.5,57.5 + parent: 2 + - uid: 11680 + components: + - type: Transform + pos: -93.5,55.5 + parent: 2 + - uid: 11681 + components: + - type: Transform + pos: -93.5,56.5 + parent: 2 + - uid: 11682 + components: + - type: Transform + pos: -93.5,57.5 + parent: 2 + - uid: 11683 + components: + - type: Transform + pos: -93.5,58.5 + parent: 2 + - uid: 11684 + components: + - type: Transform + pos: -93.5,59.5 + parent: 2 + - uid: 11685 + components: + - type: Transform + pos: -84.5,64.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: -92.5,59.5 + parent: 2 + - uid: 11687 + components: + - type: Transform + pos: -94.5,59.5 + parent: 2 + - uid: 11688 + components: + - type: Transform + pos: -94.5,60.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: -94.5,61.5 + parent: 2 + - uid: 11690 + components: + - type: Transform + pos: -94.5,62.5 + parent: 2 + - uid: 11691 + components: + - type: Transform + pos: -94.5,63.5 + parent: 2 + - uid: 11692 + components: + - type: Transform + pos: -95.5,59.5 + parent: 2 + - uid: 11693 + components: + - type: Transform + pos: -95.5,60.5 + parent: 2 + - uid: 11694 + components: + - type: Transform + pos: -95.5,61.5 + parent: 2 + - uid: 11695 + components: + - type: Transform + pos: -95.5,62.5 + parent: 2 + - uid: 11696 + components: + - type: Transform + pos: -95.5,63.5 + parent: 2 + - uid: 11697 + components: + - type: Transform + pos: -96.5,59.5 + parent: 2 + - uid: 11698 + components: + - type: Transform + pos: -96.5,60.5 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: -96.5,61.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + pos: -96.5,62.5 + parent: 2 + - uid: 11701 + components: + - type: Transform + pos: -96.5,63.5 + parent: 2 + - uid: 11702 + components: + - type: Transform + pos: -97.5,59.5 + parent: 2 + - uid: 11703 + components: + - type: Transform + pos: -97.5,60.5 + parent: 2 + - uid: 11704 + components: + - type: Transform + pos: -97.5,61.5 + parent: 2 + - uid: 11705 + components: + - type: Transform + pos: -97.5,62.5 + parent: 2 + - uid: 11706 + components: + - type: Transform + pos: -97.5,63.5 + parent: 2 + - uid: 11708 + components: + - type: Transform + pos: -83.5,63.5 + parent: 2 + - uid: 11709 + components: + - type: Transform + pos: -82.5,64.5 + parent: 2 + - uid: 11741 + components: + - type: Transform + pos: -83.5,64.5 + parent: 2 + - uid: 11744 + components: + - type: Transform + pos: -83.5,51.5 + parent: 2 + - uid: 11745 + components: + - type: Transform + pos: -84.5,51.5 + parent: 2 + - uid: 11746 + components: + - type: Transform + pos: -84.5,52.5 + parent: 2 + - uid: 11747 + components: + - type: Transform + pos: -83.5,52.5 + parent: 2 + - uid: 11748 + components: + - type: Transform + pos: -85.5,52.5 + parent: 2 + - uid: 11750 + components: + - type: Transform + pos: -84.5,53.5 + parent: 2 + - uid: 11751 + components: + - type: Transform + pos: -82.5,53.5 + parent: 2 + - uid: 11758 + components: + - type: Transform + pos: -83.5,54.5 + parent: 2 + - uid: 11760 + components: + - type: Transform + pos: -79.5,53.5 + parent: 2 + - uid: 11764 + components: + - type: Transform + pos: -83.5,55.5 + parent: 2 + - uid: 11765 + components: + - type: Transform + pos: -82.5,56.5 + parent: 2 + - uid: 11768 + components: + - type: Transform + pos: -79.5,56.5 + parent: 2 + - uid: 11769 + components: + - type: Transform + pos: -81.5,57.5 + parent: 2 + - uid: 11770 + components: + - type: Transform + pos: -82.5,57.5 + parent: 2 + - uid: 11771 + components: + - type: Transform + pos: -82.5,59.5 + parent: 2 + - uid: 11773 + components: + - type: Transform + pos: -82.5,61.5 + parent: 2 + - uid: 11774 + components: + - type: Transform + pos: -82.5,62.5 + parent: 2 + - uid: 11775 + components: + - type: Transform + pos: -82.5,63.5 + parent: 2 + - uid: 11776 + components: + - type: Transform + pos: -81.5,61.5 + parent: 2 + - uid: 11777 + components: + - type: Transform + pos: -81.5,62.5 + parent: 2 + - uid: 11778 + components: + - type: Transform + pos: -81.5,63.5 + parent: 2 + - uid: 11779 + components: + - type: Transform + pos: -81.5,64.5 + parent: 2 + - uid: 11780 + components: + - type: Transform + pos: -81.5,65.5 + parent: 2 + - uid: 11781 + components: + - type: Transform + pos: -81.5,66.5 + parent: 2 + - uid: 11782 + components: + - type: Transform + pos: -81.5,67.5 + parent: 2 + - uid: 11785 + components: + - type: Transform + pos: -80.5,68.5 + parent: 2 + - uid: 11786 + components: + - type: Transform + pos: -80.5,67.5 + parent: 2 + - uid: 11787 + components: + - type: Transform + pos: -80.5,66.5 + parent: 2 + - uid: 11788 + components: + - type: Transform + pos: -80.5,65.5 + parent: 2 + - uid: 11789 + components: + - type: Transform + pos: -80.5,64.5 + parent: 2 + - uid: 11790 + components: + - type: Transform + pos: -80.5,63.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + pos: -80.5,62.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + pos: -79.5,68.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: -79.5,67.5 + parent: 2 + - uid: 11794 + components: + - type: Transform + pos: -79.5,66.5 + parent: 2 + - uid: 11795 + components: + - type: Transform + pos: -79.5,65.5 + parent: 2 + - uid: 11805 + components: + - type: Transform + pos: -78.5,68.5 + parent: 2 + - uid: 11806 + components: + - type: Transform + pos: -78.5,67.5 + parent: 2 + - uid: 11807 + components: + - type: Transform + pos: -78.5,66.5 + parent: 2 + - uid: 11812 + components: + - type: Transform + pos: -77.5,68.5 + parent: 2 + - uid: 11813 + components: + - type: Transform + pos: -77.5,67.5 + parent: 2 + - uid: 11823 + components: + - type: Transform + pos: -77.5,63.5 + parent: 2 + - uid: 11824 + components: + - type: Transform + pos: -77.5,62.5 + parent: 2 + - uid: 11825 + components: + - type: Transform + pos: -76.5,68.5 + parent: 2 + - uid: 11829 + components: + - type: Transform + pos: -76.5,64.5 + parent: 2 + - uid: 11830 + components: + - type: Transform + pos: -76.5,63.5 + parent: 2 + - uid: 11831 + components: + - type: Transform + pos: -76.5,62.5 + parent: 2 + - uid: 11832 + components: + - type: Transform + pos: -75.5,68.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + pos: -75.5,65.5 + parent: 2 + - uid: 11836 + components: + - type: Transform + pos: -75.5,64.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: -75.5,63.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: -75.5,62.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: -74.5,66.5 + parent: 2 + - uid: 11842 + components: + - type: Transform + pos: -74.5,65.5 + parent: 2 + - uid: 11843 + components: + - type: Transform + pos: -74.5,64.5 + parent: 2 + - uid: 11844 + components: + - type: Transform + pos: -74.5,63.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: -74.5,62.5 + parent: 2 + - uid: 11848 + components: + - type: Transform + pos: -73.5,66.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + pos: -73.5,65.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + pos: -73.5,64.5 + parent: 2 + - uid: 11851 + components: + - type: Transform + pos: -73.5,63.5 + parent: 2 + - uid: 11852 + components: + - type: Transform + pos: -73.5,62.5 + parent: 2 + - uid: 11853 + components: + - type: Transform + pos: -83.5,58.5 + parent: 2 + - uid: 11854 + components: + - type: Transform + pos: -83.5,59.5 + parent: 2 + - uid: 11856 + components: + - type: Transform + pos: -83.5,61.5 + parent: 2 + - uid: 11857 + components: + - type: Transform + pos: -83.5,62.5 + parent: 2 + - uid: 11858 + components: + - type: Transform + pos: -82.5,65.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + pos: -84.5,65.5 + parent: 2 + - uid: 11864 + components: + - type: Transform + pos: -85.5,65.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: -85.5,66.5 + parent: 2 + - uid: 11870 + components: + - type: Transform + pos: -84.5,66.5 + parent: 2 + - uid: 11871 + components: + - type: Transform + pos: -86.5,66.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: -86.5,67.5 + parent: 2 + - uid: 11873 + components: + - type: Transform + pos: -87.5,67.5 + parent: 2 + - uid: 11905 + components: + - type: Transform + pos: -85.5,51.5 + parent: 2 + - uid: 11906 + components: + - type: Transform + pos: -86.5,52.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -86.5,53.5 + parent: 2 + - uid: 11908 + components: + - type: Transform + pos: -87.5,52.5 + parent: 2 + - uid: 11935 + components: + - type: Transform + pos: -82.5,69.5 + parent: 2 + - uid: 11939 + components: + - type: Transform + pos: -78.5,69.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: -79.5,69.5 + parent: 2 + - uid: 11942 + components: + - type: Transform + pos: -80.5,69.5 + parent: 2 + - uid: 11943 + components: + - type: Transform + pos: -77.5,69.5 + parent: 2 + - uid: 11946 + components: + - type: Transform + pos: -76.5,69.5 + parent: 2 + - uid: 11947 + components: + - type: Transform + pos: -75.5,69.5 + parent: 2 + - uid: 11948 + components: + - type: Transform + pos: -81.5,69.5 + parent: 2 + - uid: 11949 + components: + - type: Transform + pos: -82.5,68.5 + parent: 2 + - uid: 11950 + components: + - type: Transform + pos: -75.5,69.5 + parent: 2 + - uid: 11951 + components: + - type: Transform + pos: -75.5,68.5 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: -74.5,69.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: -73.5,66.5 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: -72.5,69.5 + parent: 2 + - uid: 11965 + components: + - type: Transform + pos: -72.5,66.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + pos: -71.5,66.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + pos: -70.5,66.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: -69.5,67.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: -69.5,66.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: -68.5,68.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: -68.5,67.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: -68.5,66.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -67.5,69.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: -67.5,68.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: -67.5,67.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: -67.5,66.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: -66.5,69.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: -66.5,68.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: -66.5,67.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: -66.5,66.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: -65.5,69.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: -65.5,68.5 + parent: 2 + - uid: 11992 + components: + - type: Transform + pos: -65.5,67.5 + parent: 2 + - uid: 11993 + components: + - type: Transform + pos: -65.5,66.5 + parent: 2 + - uid: 11994 + components: + - type: Transform + pos: -64.5,68.5 + parent: 2 + - uid: 11995 + components: + - type: Transform + pos: -64.5,67.5 + parent: 2 + - uid: 11996 + components: + - type: Transform + pos: -64.5,66.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: -64.5,65.5 + parent: 2 + - uid: 11998 + components: + - type: Transform + pos: -63.5,68.5 + parent: 2 + - uid: 11999 + components: + - type: Transform + pos: -63.5,67.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -63.5,66.5 + parent: 2 + - uid: 12001 + components: + - type: Transform + pos: -63.5,65.5 + parent: 2 + - uid: 12002 + components: + - type: Transform + pos: -62.5,67.5 + parent: 2 + - uid: 12003 + components: + - type: Transform + pos: -62.5,66.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + pos: -61.5,67.5 + parent: 2 + - uid: 12005 + components: + - type: Transform + pos: -61.5,66.5 + parent: 2 + - uid: 12006 + components: + - type: Transform + pos: -60.5,67.5 + parent: 2 + - uid: 12007 + components: + - type: Transform + pos: -60.5,66.5 + parent: 2 + - uid: 12008 + components: + - type: Transform + pos: -59.5,66.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + pos: -67.5,70.5 + parent: 2 + - uid: 12035 + components: + - type: Transform + pos: -69.5,71.5 + parent: 2 + - uid: 12037 + components: + - type: Transform + pos: -68.5,71.5 + parent: 2 + - uid: 12039 + components: + - type: Transform + pos: -67.5,71.5 + parent: 2 + - uid: 12040 + components: + - type: Transform + pos: -77.5,70.5 + parent: 2 + - uid: 12041 + components: + - type: Transform + pos: -78.5,70.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -79.5,70.5 + parent: 2 + - uid: 12043 + components: + - type: Transform + pos: -78.5,71.5 + parent: 2 + - uid: 12044 + components: + - type: Transform + pos: -77.5,71.5 + parent: 2 + - uid: 12483 + components: + - type: Transform + pos: -50.5,29.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: -58.5,11.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + pos: -58.5,10.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: -58.5,9.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: -55.5,12.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + pos: -55.5,11.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: -55.5,10.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + pos: -55.5,9.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + pos: -56.5,12.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: -56.5,11.5 + parent: 2 + - uid: 12685 + components: + - type: Transform + pos: -56.5,9.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: -57.5,12.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: -57.5,11.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + pos: -57.5,10.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: -57.5,9.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: -58.5,12.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + pos: -59.5,10.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: -60.5,10.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: -61.5,10.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: -62.5,10.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + pos: -60.5,11.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: -59.5,12.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + pos: -60.5,12.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + pos: -59.5,13.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + pos: -59.5,14.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + pos: -58.5,13.5 + parent: 2 + - uid: 12703 + components: + - type: Transform + pos: -58.5,14.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + pos: -57.5,13.5 + parent: 2 + - uid: 12705 + components: + - type: Transform + pos: -57.5,14.5 + parent: 2 + - uid: 12706 + components: + - type: Transform + pos: -58.5,15.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + pos: -57.5,15.5 + parent: 2 + - uid: 12708 + components: + - type: Transform + pos: -56.5,15.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + pos: -62.5,24.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + pos: -61.5,24.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + pos: -60.5,24.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + pos: -59.5,24.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + pos: -58.5,24.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + pos: -57.5,24.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + pos: -56.5,24.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: -55.5,24.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + pos: -54.5,24.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + pos: -53.5,24.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -62.5,26.5 + parent: 2 + - uid: 12729 + components: + - type: Transform + pos: -61.5,26.5 + parent: 2 + - uid: 12730 + components: + - type: Transform + pos: -62.5,27.5 + parent: 2 + - uid: 12731 + components: + - type: Transform + pos: -62.5,28.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: -61.5,28.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: -61.5,29.5 + parent: 2 + - uid: 12734 + components: + - type: Transform + pos: -60.5,29.5 + parent: 2 + - uid: 12735 + components: + - type: Transform + pos: -59.5,29.5 + parent: 2 + - uid: 12736 + components: + - type: Transform + pos: -53.5,31.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + pos: -58.5,30.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: -57.5,30.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + pos: -58.5,29.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + pos: -57.5,29.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + pos: -54.5,27.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + pos: -60.5,28.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + pos: -60.5,27.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: -59.5,28.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: -59.5,27.5 + parent: 2 + - uid: 12746 + components: + - type: Transform + pos: -58.5,28.5 + parent: 2 + - uid: 12747 + components: + - type: Transform + pos: -58.5,27.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: -57.5,28.5 + parent: 2 + - uid: 12749 + components: + - type: Transform + pos: -57.5,27.5 + parent: 2 + - uid: 12750 + components: + - type: Transform + pos: -56.5,28.5 + parent: 2 + - uid: 12751 + components: + - type: Transform + pos: -56.5,27.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: -55.5,28.5 + parent: 2 + - uid: 12753 + components: + - type: Transform + pos: -55.5,27.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: -54.5,28.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: -56.5,30.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + pos: -56.5,29.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 12759 + components: + - type: Transform + pos: -55.5,29.5 + parent: 2 + - uid: 12760 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 + - uid: 12761 + components: + - type: Transform + pos: -54.5,29.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - uid: 12763 + components: + - type: Transform + pos: -53.5,29.5 + parent: 2 + - uid: 12764 + components: + - type: Transform + pos: -52.5,30.5 + parent: 2 + - uid: 12765 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + pos: -51.5,31.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + pos: -51.5,29.5 + parent: 2 + - uid: 12769 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: -50.5,28.5 + parent: 2 + - uid: 12771 + components: + - type: Transform + pos: -50.5,27.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + pos: -50.5,26.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: -50.5,24.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: -49.5,29.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: -49.5,28.5 + parent: 2 + - uid: 12777 + components: + - type: Transform + pos: -49.5,27.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: -49.5,26.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: -49.5,25.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + pos: -49.5,24.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + pos: -48.5,28.5 + parent: 2 + - uid: 12783 + components: + - type: Transform + pos: -48.5,27.5 + parent: 2 + - uid: 12784 + components: + - type: Transform + pos: -48.5,26.5 + parent: 2 + - uid: 12785 + components: + - type: Transform + pos: -48.5,25.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -48.5,24.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + pos: -47.5,28.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: -47.5,27.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: -47.5,26.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + pos: -47.5,25.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: -47.5,24.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + pos: -46.5,27.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + pos: -46.5,26.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + pos: -46.5,25.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: -46.5,24.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: -45.5,27.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: -45.5,26.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: -45.5,24.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: -44.5,26.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: -44.5,25.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: -41.5,28.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + pos: -45.5,25.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: -55.5,20.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + pos: -55.5,21.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: -55.5,22.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + pos: -55.5,23.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + pos: -56.5,20.5 + parent: 2 + - uid: 12827 + components: + - type: Transform + pos: -56.5,21.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + pos: -56.5,22.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + pos: -56.5,23.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: -53.5,20.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + pos: -53.5,21.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + pos: -53.5,22.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: -53.5,23.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + pos: -54.5,20.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: -54.5,22.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: -54.5,23.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: -52.5,23.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: -52.5,24.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + pos: -52.5,27.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + pos: -52.5,28.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + pos: -51.5,23.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + pos: -51.5,24.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + pos: -51.5,27.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + pos: -54.5,25.5 + parent: 2 + - uid: 12855 + components: + - type: Transform + pos: -55.5,25.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + pos: -55.5,26.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + pos: -56.5,25.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + pos: -56.5,26.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + pos: -57.5,25.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + pos: -57.5,26.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + pos: -53.5,28.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + pos: -49.5,23.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + pos: -50.5,23.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: -61.5,27.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + pos: -60.5,23.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + pos: -59.5,22.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: -58.5,22.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + pos: -58.5,23.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + pos: -59.5,23.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: -57.5,23.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + pos: -57.5,22.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: -57.5,21.5 + parent: 2 + - uid: 12912 + components: + - type: Transform + pos: -64.5,26.5 + parent: 2 + - uid: 12913 + components: + - type: Transform + pos: -64.5,27.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + pos: -63.5,26.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + pos: -63.5,27.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + pos: -76.5,5.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + pos: -74.5,9.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + pos: -74.5,8.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + pos: -74.5,7.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + pos: -74.5,6.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + pos: -75.5,9.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + pos: -75.5,8.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + pos: -75.5,7.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + pos: -75.5,6.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + pos: -76.5,9.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + pos: -76.5,8.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + pos: -76.5,7.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + pos: -76.5,6.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + pos: -75.5,5.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + pos: -74.5,5.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: -73.5,6.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + pos: -73.5,7.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + pos: -73.5,8.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + pos: -73.5,5.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: -71.5,8.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + pos: -70.5,8.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + pos: -69.5,8.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + pos: -68.5,8.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + pos: -67.5,8.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + pos: -66.5,8.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + pos: -65.5,8.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + pos: -64.5,8.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: -75.5,-5.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: -75.5,-7.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: -74.5,-5.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + pos: -74.5,-7.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: -73.5,-5.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: -73.5,-7.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -80.5,-9.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -75.5,-8.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: -75.5,-9.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: -76.5,-8.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: -76.5,-9.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + pos: -77.5,-8.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + pos: -77.5,-9.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + pos: -78.5,-8.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + pos: -78.5,-9.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + pos: -79.5,-8.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + pos: -79.5,-9.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + pos: -80.5,-8.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + pos: -78.5,-7.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -78.5,-6.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + pos: -79.5,-7.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + pos: -79.5,-6.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + pos: -80.5,-7.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + pos: -77.5,-7.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + pos: -76.5,-7.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + pos: -82.5,-10.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + pos: -81.5,-10.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + pos: -80.5,-10.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: -79.5,-10.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + pos: -77.5,-10.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + pos: -77.5,-12.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + pos: -77.5,-13.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + pos: -76.5,-10.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + pos: -76.5,-11.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + pos: -76.5,-12.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + pos: -76.5,-13.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + pos: -75.5,-10.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + pos: -75.5,-11.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + pos: -75.5,-12.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + pos: -75.5,-13.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + pos: -74.5,-13.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + pos: -73.5,-13.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: -72.5,-13.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + pos: -71.5,-13.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + pos: -70.5,-13.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + pos: -82.5,-12.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + pos: -82.5,-11.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + pos: -83.5,-13.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + pos: -83.5,-12.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: -83.5,-11.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + pos: -78.5,-13.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + pos: -78.5,-12.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + pos: -78.5,-11.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: -79.5,-13.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + pos: -79.5,-12.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + pos: -79.5,-11.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + pos: -80.5,-13.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + pos: -80.5,-12.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + pos: -80.5,-11.5 + parent: 2 + - uid: 13082 + components: + - type: Transform + pos: -81.5,-13.5 + parent: 2 + - uid: 13083 + components: + - type: Transform + pos: -81.5,-12.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + pos: -81.5,-11.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + pos: -82.5,-13.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + pos: -84.5,-12.5 + parent: 2 + - uid: 13087 + components: + - type: Transform + pos: -83.5,-14.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + pos: -82.5,-14.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + pos: -81.5,-14.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: -82.5,-15.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: -82.5,-16.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + pos: -82.5,-17.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + pos: -81.5,-18.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + pos: -82.5,-18.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + pos: -81.5,-19.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + pos: -80.5,-19.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + pos: -79.5,-19.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: -79.5,-20.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + pos: -78.5,-19.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + pos: -78.5,-20.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: -77.5,-19.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + pos: -77.5,-20.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + pos: -79.5,-21.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: -23.5,-77.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + pos: -23.5,-78.5 + parent: 2 + - uid: 13558 + components: + - type: Transform + pos: -22.5,-78.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + pos: -22.5,-79.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + pos: -21.5,-79.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + pos: -21.5,-80.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + pos: -21.5,-78.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: -20.5,-78.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: -21.5,-81.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: -22.5,-81.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + pos: -22.5,-82.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + pos: -24.5,-82.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + pos: -21.5,-82.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + pos: -22.5,-83.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + pos: -23.5,-82.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + pos: -25.5,-82.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + pos: -26.5,-82.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + pos: -28.5,-82.5 + parent: 2 + - uid: 13575 + components: + - type: Transform + pos: -25.5,-81.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + pos: -25.5,-77.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + pos: -25.5,-78.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + pos: -26.5,-77.5 + parent: 2 + - uid: 13579 + components: + - type: Transform + pos: -28.5,-77.5 + parent: 2 + - uid: 13580 + components: + - type: Transform + pos: -27.5,-77.5 + parent: 2 + - uid: 13581 + components: + - type: Transform + pos: -27.5,-78.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + pos: -28.5,-78.5 + parent: 2 + - uid: 13583 + components: + - type: Transform + pos: -29.5,-76.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + pos: -29.5,-75.5 + parent: 2 + - uid: 13585 + components: + - type: Transform + pos: -30.5,-75.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + pos: -30.5,-76.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + pos: -28.5,-76.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + pos: -31.5,-76.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + pos: -32.5,-77.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + pos: -27.5,-80.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + pos: -26.5,-81.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + pos: -27.5,-81.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + pos: -28.5,-81.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + pos: -29.5,-81.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: -30.5,-81.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + pos: -30.5,-80.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + pos: -31.5,-80.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: -31.5,-79.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + pos: -32.5,-79.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: -32.5,-78.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: -33.5,-78.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: 17.5,-76.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: 17.5,-75.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: 17.5,-74.5 + parent: 2 + - uid: 13887 + components: + - type: Transform + pos: 26.5,-82.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: 9.5,-78.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + pos: 9.5,-77.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + pos: 8.5,-78.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + pos: 7.5,-77.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + pos: 7.5,-78.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + pos: 6.5,-77.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + pos: 6.5,-78.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: 5.5,-77.5 + parent: 2 + - uid: 13945 + components: + - type: Transform + pos: 5.5,-78.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: 4.5,-77.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + pos: 8.5,-76.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + pos: 8.5,-75.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + pos: 8.5,-74.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: 8.5,-72.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + pos: 7.5,-76.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + pos: 7.5,-74.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + pos: 7.5,-73.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + pos: 7.5,-71.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: 7.5,-70.5 + parent: 2 + - uid: 13962 + components: + - type: Transform + pos: 6.5,-76.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + pos: 6.5,-75.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + pos: 6.5,-74.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + pos: 6.5,-73.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + pos: 6.5,-72.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + pos: 6.5,-71.5 + parent: 2 + - uid: 13968 + components: + - type: Transform + pos: 6.5,-70.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + pos: 5.5,-76.5 + parent: 2 + - uid: 13970 + components: + - type: Transform + pos: 5.5,-75.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: 5.5,-74.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + pos: 5.5,-73.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + pos: 5.5,-72.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + pos: 3.5,-72.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: 4.5,-76.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: 4.5,-75.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + pos: 4.5,-74.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + pos: 4.5,-73.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: 4.5,-72.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: 3.5,-76.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: 3.5,-75.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: 3.5,-74.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: 3.5,-73.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: -4.5,-69.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: 8.5,-69.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: 7.5,-69.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: 6.5,-69.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: 2.5,-69.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + pos: 1.5,-69.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: 0.5,-69.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: -0.5,-69.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: -1.5,-69.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: -2.5,-69.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: -3.5,-69.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + pos: -3.5,-70.5 + parent: 2 + - uid: 14008 + components: + - type: Transform + pos: -2.5,-70.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + pos: -1.5,-70.5 + parent: 2 + - uid: 14010 + components: + - type: Transform + pos: -0.5,-70.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: 0.5,-70.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: 1.5,-70.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: 2.5,-70.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: 2.5,-71.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: 1.5,-71.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: 1.5,-72.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: 2.5,-72.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: 0.5,-71.5 + parent: 2 + - uid: 14027 + components: + - type: Transform + pos: 17.5,-79.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + pos: 16.5,-79.5 + parent: 2 + - uid: 14029 + components: + - type: Transform + pos: 17.5,-78.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: 17.5,-77.5 + parent: 2 + - uid: 14031 + components: + - type: Transform + pos: 16.5,-78.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: 16.5,-77.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: 15.5,-78.5 + parent: 2 + - uid: 14034 + components: + - type: Transform + pos: 15.5,-79.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: 9.5,-79.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: 10.5,-79.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: 10.5,-78.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: 10.5,-80.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: 11.5,-80.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: 37.5,-76.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: 34.5,-78.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: 33.5,-78.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: 33.5,-79.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 34.5,-79.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + pos: 35.5,-79.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + pos: 40.5,-72.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: 40.5,-71.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: 38.5,-75.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: 38.5,-74.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 38.5,-73.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: 38.5,-72.5 + parent: 2 + - uid: 14191 + components: + - type: Transform + pos: 38.5,-71.5 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: 39.5,-75.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: 39.5,-74.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: 39.5,-73.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: 39.5,-72.5 + parent: 2 + - uid: 14196 + components: + - type: Transform + pos: 39.5,-71.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + pos: 40.5,-75.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: 40.5,-74.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + pos: 40.5,-73.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + pos: 37.5,-71.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: 37.5,-72.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + pos: 37.5,-73.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + pos: 37.5,-74.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: 37.5,-75.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + pos: 38.5,-76.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: 39.5,-76.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + pos: 40.5,-76.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: 41.5,-75.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + pos: 42.5,-73.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + pos: 42.5,-72.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: 41.5,-73.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: 41.5,-72.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: 41.5,-71.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: 40.5,-70.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + pos: 36.5,-65.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + pos: 43.5,-65.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + pos: 37.5,-65.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + pos: 42.5,-65.5 + parent: 2 + - uid: 14297 + components: + - type: Transform + pos: 38.5,-65.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + pos: 39.5,-65.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + pos: 40.5,-65.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + pos: 40.5,-66.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: 41.5,-65.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: 41.5,-66.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: 43.5,-60.5 + parent: 2 + - uid: 14311 + components: + - type: Transform + pos: 44.5,-60.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: 45.5,-61.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: 45.5,-60.5 + parent: 2 + - uid: 14314 + components: + - type: Transform + pos: 46.5,-61.5 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: 46.5,-60.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: 47.5,-61.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + pos: 47.5,-60.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + pos: 49.5,-60.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + pos: 48.5,-60.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + pos: 48.5,-61.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + pos: 50.5,-59.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + pos: 50.5,-60.5 + parent: 2 + - uid: 14323 + components: + - type: Transform + pos: 51.5,-59.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + pos: 53.5,-61.5 + parent: 2 + - uid: 14485 + components: + - type: Transform + pos: 53.5,-60.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: 52.5,-60.5 + parent: 2 + - uid: 14487 + components: + - type: Transform + pos: 52.5,-59.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + pos: 54.5,-59.5 + parent: 2 + - uid: 14489 + components: + - type: Transform + pos: 54.5,-60.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + pos: 55.5,-60.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + pos: 56.5,-59.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + pos: 56.5,-60.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 55.5,-61.5 + parent: 2 + - uid: 14495 + components: + - type: Transform + pos: 54.5,-61.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + pos: 53.5,-59.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + pos: 54.5,-58.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: 54.5,-57.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + pos: 55.5,-58.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + pos: 55.5,-57.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + pos: 56.5,-58.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + pos: 50.5,-58.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: 51.5,-58.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + pos: 46.5,-47.5 + parent: 2 + - uid: 14505 + components: + - type: Transform + pos: 46.5,-46.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: 47.5,-47.5 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: 48.5,-47.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: 48.5,-46.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: 63.5,3.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + pos: 63.5,4.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: 62.5,4.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + pos: 60.5,6.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + pos: 59.5,6.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + pos: 57.5,7.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: 57.5,9.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: 57.5,10.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: 56.5,10.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + pos: 56.5,12.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + pos: 55.5,12.5 + parent: 2 + - uid: 14566 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: 54.5,12.5 + parent: 2 + - uid: 14568 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: 54.5,13.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 14584 + components: + - type: Transform + pos: 60.5,2.5 + parent: 2 + - uid: 14601 + components: + - type: Transform + pos: 39.5,34.5 + parent: 2 + - uid: 14605 + components: + - type: Transform + pos: 39.5,33.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: 39.5,32.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: 38.5,35.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + pos: 38.5,36.5 + parent: 2 + - uid: 14628 + components: + - type: Transform + pos: 37.5,36.5 + parent: 2 + - uid: 14629 + components: + - type: Transform + pos: 37.5,35.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + pos: 36.5,35.5 + parent: 2 + - uid: 14632 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + pos: 35.5,35.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + pos: 37.5,37.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + pos: 36.5,37.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + pos: 35.5,39.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + pos: 35.5,37.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + pos: 36.5,39.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 36.5,38.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: 45.5,34.5 + parent: 2 + - uid: 14641 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: 45.5,29.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + pos: 45.5,28.5 + parent: 2 + - uid: 14648 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + pos: 45.5,26.5 + parent: 2 + - uid: 14651 + components: + - type: Transform + pos: 46.5,34.5 + parent: 2 + - uid: 14652 + components: + - type: Transform + pos: 46.5,33.5 + parent: 2 + - uid: 14653 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 14654 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 14655 + components: + - type: Transform + pos: 46.5,30.5 + parent: 2 + - uid: 14656 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 14657 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - uid: 14658 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 14659 + components: + - type: Transform + pos: 46.5,26.5 + parent: 2 + - uid: 14661 + components: + - type: Transform + pos: 47.5,34.5 + parent: 2 + - uid: 14662 + components: + - type: Transform + pos: 47.5,33.5 + parent: 2 + - uid: 14663 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 14664 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 14665 + components: + - type: Transform + pos: 47.5,30.5 + parent: 2 + - uid: 14666 + components: + - type: Transform + pos: 47.5,29.5 + parent: 2 + - uid: 14667 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 14671 + components: + - type: Transform + pos: 48.5,34.5 + parent: 2 + - uid: 14672 + components: + - type: Transform + pos: 48.5,33.5 + parent: 2 + - uid: 14673 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 14674 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 14677 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 14679 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 14681 + components: + - type: Transform + pos: 49.5,34.5 + parent: 2 + - uid: 14682 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 14683 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 14684 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + pos: 49.5,28.5 + parent: 2 + - uid: 14691 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 14692 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 14693 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 14694 + components: + - type: Transform + pos: 43.5,26.5 + parent: 2 + - uid: 14695 + components: + - type: Transform + pos: 42.5,26.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + pos: 43.5,25.5 + parent: 2 + - uid: 14701 + components: + - type: Transform + pos: 51.5,27.5 + parent: 2 + - uid: 14702 + components: + - type: Transform + pos: 51.5,26.5 + parent: 2 + - uid: 14704 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 + - uid: 14705 + components: + - type: Transform + pos: 50.5,33.5 + parent: 2 + - uid: 14706 + components: + - type: Transform + pos: 50.5,32.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 14718 + components: + - type: Transform + pos: 51.5,34.5 + parent: 2 + - uid: 14719 + components: + - type: Transform + pos: 50.5,34.5 + parent: 2 + - uid: 14720 + components: + - type: Transform + pos: 50.5,35.5 + parent: 2 + - uid: 14721 + components: + - type: Transform + pos: 50.5,36.5 + parent: 2 + - uid: 14722 + components: + - type: Transform + pos: 49.5,35.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + pos: 49.5,36.5 + parent: 2 + - uid: 14724 + components: + - type: Transform + pos: 48.5,35.5 + parent: 2 + - uid: 14726 + components: + - type: Transform + pos: 47.5,35.5 + parent: 2 + - uid: 14728 + components: + - type: Transform + pos: 46.5,35.5 + parent: 2 + - uid: 14729 + components: + - type: Transform + pos: 46.5,36.5 + parent: 2 + - uid: 14730 + components: + - type: Transform + pos: 45.5,35.5 + parent: 2 + - uid: 14731 + components: + - type: Transform + pos: 45.5,36.5 + parent: 2 + - uid: 14732 + components: + - type: Transform + pos: 51.5,35.5 + parent: 2 + - uid: 14734 + components: + - type: Transform + pos: 52.5,34.5 + parent: 2 + - uid: 14735 + components: + - type: Transform + pos: 52.5,33.5 + parent: 2 + - uid: 14736 + components: + - type: Transform + pos: 52.5,32.5 + parent: 2 + - uid: 14737 + components: + - type: Transform + pos: 52.5,31.5 + parent: 2 + - uid: 14740 + components: + - type: Transform + pos: 52.5,28.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: 52.5,27.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + pos: 52.5,26.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: 52.5,25.5 + parent: 2 + - uid: 14747 + components: + - type: Transform + pos: 54.5,31.5 + parent: 2 + - uid: 14748 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 14751 + components: + - type: Transform + pos: 53.5,28.5 + parent: 2 + - uid: 14752 + components: + - type: Transform + pos: 53.5,27.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 53.5,26.5 + parent: 2 + - uid: 14754 + components: + - type: Transform + pos: 53.5,25.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: 55.5,23.5 + parent: 2 + - uid: 14757 + components: + - type: Transform + pos: 55.5,19.5 + parent: 2 + - uid: 14758 + components: + - type: Transform + pos: 55.5,18.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: 55.5,24.5 + parent: 2 + - uid: 14760 + components: + - type: Transform + pos: 55.5,21.5 + parent: 2 + - uid: 14761 + components: + - type: Transform + pos: 55.5,20.5 + parent: 2 + - uid: 14762 + components: + - type: Transform + pos: 55.5,22.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: 54.5,17.5 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: 53.5,17.5 + parent: 2 + - uid: 14767 + components: + - type: Transform + pos: 54.5,28.5 + parent: 2 + - uid: 14768 + components: + - type: Transform + pos: 54.5,27.5 + parent: 2 + - uid: 14769 + components: + - type: Transform + pos: 54.5,26.5 + parent: 2 + - uid: 14770 + components: + - type: Transform + pos: 54.5,25.5 + parent: 2 + - uid: 14775 + components: + - type: Transform + pos: 54.5,24.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: 56.5,23.5 + parent: 2 + - uid: 14833 + components: + - type: Transform + pos: 63.5,2.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + pos: 62.5,5.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: 64.5,4.5 + parent: 2 + - uid: 14844 + components: + - type: Transform + pos: 64.5,3.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: 61.5,7.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: 60.5,7.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: 59.5,7.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 14866 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: 18.5,41.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + pos: 5.5,57.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + pos: -13.5,49.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: -13.5,50.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: -13.5,51.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: -13.5,52.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: -13.5,53.5 + parent: 2 + - uid: 15387 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + pos: -12.5,52.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: -12.5,51.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: -12.5,50.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: -11.5,49.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + pos: -11.5,50.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: -11.5,51.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: -11.5,52.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: -11.5,53.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + pos: -11.5,55.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + pos: -11.5,56.5 + parent: 2 + - uid: 15399 + components: + - type: Transform + pos: -11.5,57.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + pos: -11.5,58.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: -10.5,59.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: -9.5,60.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: -8.5,60.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: -7.5,60.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: -8.5,61.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + pos: -7.5,61.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: -6.5,61.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + pos: -5.5,61.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + pos: -3.5,61.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: -2.5,61.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + pos: 0.5,61.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + pos: 1.5,61.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + pos: 2.5,61.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: 2.5,60.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 1.5,60.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + pos: 5.5,55.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: 0.5,59.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + pos: 1.5,59.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + pos: 2.5,59.5 + parent: 2 + - uid: 15427 + components: + - type: Transform + pos: 3.5,59.5 + parent: 2 + - uid: 15428 + components: + - type: Transform + pos: 3.5,60.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: 4.5,59.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: 3.5,58.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: 4.5,58.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: 5.5,58.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + pos: 1.5,58.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: 3.5,52.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: 3.5,51.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: 3.5,50.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: 3.5,49.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: 2.5,57.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: 2.5,56.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: 2.5,55.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: 2.5,54.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: 2.5,53.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: 2.5,52.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + pos: 2.5,51.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + pos: 2.5,50.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + pos: 3.5,57.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + pos: 4.5,55.5 + parent: 2 + - uid: 15450 + components: + - type: Transform + pos: 4.5,54.5 + parent: 2 + - uid: 15451 + components: + - type: Transform + pos: 4.5,53.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: 4.5,52.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: 4.5,51.5 + parent: 2 + - uid: 15454 + components: + - type: Transform + pos: 4.5,50.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: 4.5,49.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: 4.5,56.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: 4.5,57.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + pos: 3.5,55.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + pos: 3.5,54.5 + parent: 2 + - uid: 15460 + components: + - type: Transform + pos: 2.5,49.5 + parent: 2 + - uid: 15461 + components: + - type: Transform + pos: 5.5,54.5 + parent: 2 + - uid: 15462 + components: + - type: Transform + pos: 5.5,53.5 + parent: 2 + - uid: 15463 + components: + - type: Transform + pos: 5.5,52.5 + parent: 2 + - uid: 15464 + components: + - type: Transform + pos: 5.5,51.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + pos: 5.5,50.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: 5.5,49.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + pos: 5.5,48.5 + parent: 2 + - uid: 15468 + components: + - type: Transform + pos: 5.5,47.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + pos: 5.5,46.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + pos: 5.5,45.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + pos: 5.5,44.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: 5.5,43.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: 3.5,42.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 4.5,48.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: 4.5,47.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + pos: 4.5,46.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + pos: 4.5,45.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + pos: 4.5,44.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: 4.5,43.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + pos: 4.5,42.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: 3.5,48.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + pos: 3.5,47.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: 3.5,46.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + pos: 3.5,45.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + pos: 3.5,43.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 15489 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + pos: 5.5,56.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 3.5,56.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + pos: 54.5,18.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: 54.5,19.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + pos: 54.5,20.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + pos: 54.5,21.5 + parent: 2 + - uid: 16036 + components: + - type: Transform + pos: 54.5,22.5 + parent: 2 + - uid: 16037 + components: + - type: Transform + pos: 54.5,23.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + pos: 53.5,18.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: 53.5,19.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + pos: 53.5,20.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: 53.5,21.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + pos: 53.5,22.5 + parent: 2 + - uid: 16043 + components: + - type: Transform + pos: 53.5,23.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 16046 + components: + - type: Transform + pos: 53.5,24.5 + parent: 2 + - uid: 16057 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 16058 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 16060 + components: + - type: Transform + pos: 19.5,42.5 + parent: 2 + - uid: 16061 + components: + - type: Transform + pos: 19.5,43.5 + parent: 2 + - uid: 16062 + components: + - type: Transform + pos: 19.5,46.5 + parent: 2 + - uid: 16063 + components: + - type: Transform + pos: 19.5,45.5 + parent: 2 + - uid: 16064 + components: + - type: Transform + pos: 19.5,44.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + pos: 20.5,44.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: 21.5,44.5 + parent: 2 + - uid: 16067 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + pos: 22.5,45.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + pos: 21.5,45.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + pos: 25.5,44.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + pos: 24.5,44.5 + parent: 2 + - uid: 16075 + components: + - type: Transform + pos: 24.5,43.5 + parent: 2 + - uid: 16076 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 16078 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + pos: 21.5,43.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + pos: 21.5,42.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + pos: 20.5,43.5 + parent: 2 + - uid: 16085 + components: + - type: Transform + pos: 20.5,42.5 + parent: 2 + - uid: 16086 + components: + - type: Transform + pos: 26.5,43.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: 34.5,43.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: 35.5,43.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: 35.5,44.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: 31.5,44.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: 32.5,45.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: 33.5,45.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: 34.5,45.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: 31.5,45.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: 30.5,44.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + pos: 20.5,45.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: 38.5,37.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 16149 + components: + - type: Transform + pos: 50.5,27.5 + parent: 2 + - uid: 18769 + components: + - type: Transform + pos: -76.5,11.5 + parent: 2 + - uid: 18770 + components: + - type: Transform + pos: -76.5,10.5 + parent: 2 + - uid: 18771 + components: + - type: Transform + pos: -77.5,10.5 + parent: 2 + - uid: 18772 + components: + - type: Transform + pos: -75.5,10.5 + parent: 2 + - uid: 18773 + components: + - type: Transform + pos: -74.5,10.5 + parent: 2 + - uid: 18774 + components: + - type: Transform + pos: -73.5,9.5 + parent: 2 + - uid: 18775 + components: + - type: Transform + pos: -72.5,9.5 + parent: 2 + - uid: 18777 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 + - uid: 18778 + components: + - type: Transform + pos: -75.5,12.5 + parent: 2 + - uid: 18815 + components: + - type: Transform + pos: -78.5,-0.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + pos: -79.5,-0.5 + parent: 2 + - uid: 18817 + components: + - type: Transform + pos: -78.5,-1.5 + parent: 2 + - uid: 18818 + components: + - type: Transform + pos: -80.5,-0.5 + parent: 2 + - uid: 18819 + components: + - type: Transform + pos: -79.5,0.5 + parent: 2 + - uid: 18820 + components: + - type: Transform + pos: -78.5,0.5 + parent: 2 + - uid: 18821 + components: + - type: Transform + pos: -78.5,1.5 + parent: 2 + - uid: 18822 + components: + - type: Transform + pos: -79.5,1.5 + parent: 2 + - uid: 18823 + components: + - type: Transform + pos: -78.5,2.5 + parent: 2 + - uid: 18824 + components: + - type: Transform + pos: -78.5,3.5 + parent: 2 + - uid: 18825 + components: + - type: Transform + pos: -78.5,4.5 + parent: 2 + - uid: 18826 + components: + - type: Transform + pos: -79.5,2.5 + parent: 2 + - uid: 20909 + components: + - type: Transform + pos: 38.5,-77.5 + parent: 2 + - uid: 20910 + components: + - type: Transform + pos: 38.5,-78.5 + parent: 2 + - uid: 20911 + components: + - type: Transform + pos: 37.5,-78.5 + parent: 2 + - uid: 20912 + components: + - type: Transform + pos: 38.5,-79.5 + parent: 2 + - uid: 20913 + components: + - type: Transform + pos: 39.5,-79.5 + parent: 2 + - uid: 20914 + components: + - type: Transform + pos: 39.5,-78.5 + parent: 2 + - uid: 20915 + components: + - type: Transform + pos: 40.5,-78.5 + parent: 2 + - uid: 20916 + components: + - type: Transform + pos: 40.5,-77.5 + parent: 2 + - uid: 20917 + components: + - type: Transform + pos: 39.5,-77.5 + parent: 2 + - uid: 20918 + components: + - type: Transform + pos: 35.5,-80.5 + parent: 2 + - uid: 20919 + components: + - type: Transform + pos: 36.5,-80.5 + parent: 2 + - uid: 20920 + components: + - type: Transform + pos: 37.5,-79.5 + parent: 2 + - uid: 20921 + components: + - type: Transform + pos: 37.5,-80.5 + parent: 2 + - uid: 30552 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 + - uid: 31067 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 31068 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 31069 + components: + - type: Transform + pos: 54.5,30.5 + parent: 2 +- proto: AsteroidRockMining + entities: + - uid: 701 + components: + - type: Transform + pos: -63.5,-45.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -63.5,-46.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -62.5,-46.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -79.5,-59.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -80.5,-59.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -80.5,-58.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -79.5,-60.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -78.5,-60.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 5.5,-71.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 5.5,-69.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 5.5,-70.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: 45.5,-28.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: 45.5,-27.5 + parent: 2 + - uid: 11431 + components: + - type: Transform + pos: -81.5,46.5 + parent: 2 + - uid: 11503 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 11504 + components: + - type: Transform + pos: -24.5,23.5 + parent: 2 + - uid: 11505 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 11509 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 11512 + components: + - type: Transform + pos: -25.5,25.5 + parent: 2 + - uid: 11513 + components: + - type: Transform + pos: -25.5,26.5 + parent: 2 + - uid: 11514 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 11515 + components: + - type: Transform + pos: -26.5,22.5 + parent: 2 + - uid: 11518 + components: + - type: Transform + pos: -26.5,25.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: -26.5,26.5 + parent: 2 + - uid: 11520 + components: + - type: Transform + pos: -26.5,27.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 11522 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 11523 + components: + - type: Transform + pos: -27.5,24.5 + parent: 2 + - uid: 11524 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 11525 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 + - uid: 11638 + components: + - type: Transform + pos: -91.5,59.5 + parent: 2 + - uid: 11639 + components: + - type: Transform + pos: -93.5,60.5 + parent: 2 + - uid: 11640 + components: + - type: Transform + pos: -94.5,66.5 + parent: 2 + - uid: 11710 + components: + - type: Transform + pos: -93.5,61.5 + parent: 2 + - uid: 11711 + components: + - type: Transform + pos: -93.5,62.5 + parent: 2 + - uid: 11712 + components: + - type: Transform + pos: -93.5,63.5 + parent: 2 + - uid: 11713 + components: + - type: Transform + pos: -93.5,64.5 + parent: 2 + - uid: 11714 + components: + - type: Transform + pos: -93.5,65.5 + parent: 2 + - uid: 11715 + components: + - type: Transform + pos: -92.5,60.5 + parent: 2 + - uid: 11716 + components: + - type: Transform + pos: -92.5,61.5 + parent: 2 + - uid: 11717 + components: + - type: Transform + pos: -92.5,62.5 + parent: 2 + - uid: 11718 + components: + - type: Transform + pos: -92.5,63.5 + parent: 2 + - uid: 11719 + components: + - type: Transform + pos: -92.5,64.5 + parent: 2 + - uid: 11720 + components: + - type: Transform + pos: -92.5,65.5 + parent: 2 + - uid: 11721 + components: + - type: Transform + pos: -91.5,60.5 + parent: 2 + - uid: 11722 + components: + - type: Transform + pos: -91.5,61.5 + parent: 2 + - uid: 11723 + components: + - type: Transform + pos: -91.5,62.5 + parent: 2 + - uid: 11724 + components: + - type: Transform + pos: -91.5,63.5 + parent: 2 + - uid: 11725 + components: + - type: Transform + pos: -91.5,64.5 + parent: 2 + - uid: 11726 + components: + - type: Transform + pos: -91.5,65.5 + parent: 2 + - uid: 11727 + components: + - type: Transform + pos: -90.5,60.5 + parent: 2 + - uid: 11729 + components: + - type: Transform + pos: -90.5,62.5 + parent: 2 + - uid: 11730 + components: + - type: Transform + pos: -90.5,63.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: -90.5,64.5 + parent: 2 + - uid: 11732 + components: + - type: Transform + pos: -90.5,65.5 + parent: 2 + - uid: 11733 + components: + - type: Transform + pos: -94.5,65.5 + parent: 2 + - uid: 11734 + components: + - type: Transform + pos: -94.5,64.5 + parent: 2 + - uid: 11735 + components: + - type: Transform + pos: -95.5,64.5 + parent: 2 + - uid: 11736 + components: + - type: Transform + pos: -96.5,64.5 + parent: 2 + - uid: 11737 + components: + - type: Transform + pos: -93.5,66.5 + parent: 2 + - uid: 11738 + components: + - type: Transform + pos: -92.5,66.5 + parent: 2 + - uid: 11739 + components: + - type: Transform + pos: -91.5,66.5 + parent: 2 + - uid: 11740 + components: + - type: Transform + pos: -90.5,66.5 + parent: 2 + - uid: 11742 + components: + - type: Transform + pos: -90.5,59.5 + parent: 2 + - uid: 11743 + components: + - type: Transform + pos: -89.5,59.5 + parent: 2 + - uid: 11891 + components: + - type: Transform + pos: -78.5,46.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + pos: -79.5,46.5 + parent: 2 + - uid: 11893 + components: + - type: Transform + pos: -80.5,46.5 + parent: 2 + - uid: 11894 + components: + - type: Transform + pos: -80.5,45.5 + parent: 2 + - uid: 11895 + components: + - type: Transform + pos: -81.5,45.5 + parent: 2 + - uid: 11896 + components: + - type: Transform + pos: -81.5,44.5 + parent: 2 + - uid: 11897 + components: + - type: Transform + pos: -82.5,44.5 + parent: 2 + - uid: 11898 + components: + - type: Transform + pos: -82.5,45.5 + parent: 2 + - uid: 11899 + components: + - type: Transform + pos: -83.5,45.5 + parent: 2 + - uid: 11900 + components: + - type: Transform + pos: -84.5,45.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: -84.5,46.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: -83.5,46.5 + parent: 2 + - uid: 11903 + components: + - type: Transform + pos: -82.5,46.5 + parent: 2 + - uid: 11904 + components: + - type: Transform + pos: -83.5,47.5 + parent: 2 + - uid: 11936 + components: + - type: Transform + pos: -86.5,68.5 + parent: 2 + - uid: 11937 + components: + - type: Transform + pos: -85.5,68.5 + parent: 2 + - uid: 11938 + components: + - type: Transform + pos: -84.5,68.5 + parent: 2 + - uid: 11941 + components: + - type: Transform + pos: -81.5,68.5 + parent: 2 + - uid: 11944 + components: + - type: Transform + pos: -84.5,67.5 + parent: 2 + - uid: 11945 + components: + - type: Transform + pos: -85.5,67.5 + parent: 2 + - uid: 12013 + components: + - type: Transform + pos: -76.5,72.5 + parent: 2 + - uid: 12014 + components: + - type: Transform + pos: -76.5,71.5 + parent: 2 + - uid: 12015 + components: + - type: Transform + pos: -76.5,70.5 + parent: 2 + - uid: 12016 + components: + - type: Transform + pos: -75.5,72.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: -75.5,71.5 + parent: 2 + - uid: 12018 + components: + - type: Transform + pos: -75.5,70.5 + parent: 2 + - uid: 12019 + components: + - type: Transform + pos: -74.5,72.5 + parent: 2 + - uid: 12020 + components: + - type: Transform + pos: -74.5,71.5 + parent: 2 + - uid: 12021 + components: + - type: Transform + pos: -74.5,70.5 + parent: 2 + - uid: 12022 + components: + - type: Transform + pos: -73.5,72.5 + parent: 2 + - uid: 12023 + components: + - type: Transform + pos: -73.5,71.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -73.5,70.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -72.5,72.5 + parent: 2 + - uid: 12026 + components: + - type: Transform + pos: -72.5,71.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -72.5,70.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: -71.5,72.5 + parent: 2 + - uid: 12029 + components: + - type: Transform + pos: -71.5,71.5 + parent: 2 + - uid: 12031 + components: + - type: Transform + pos: -70.5,72.5 + parent: 2 + - uid: 12032 + components: + - type: Transform + pos: -70.5,71.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + pos: -53.5,14.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: -53.5,13.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: -54.5,14.5 + parent: 2 + - uid: 12670 + components: + - type: Transform + pos: -54.5,13.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + pos: -55.5,13.5 + parent: 2 + - uid: 12673 + components: + - type: Transform + pos: -56.5,14.5 + parent: 2 + - uid: 12674 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: -62.5,25.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + pos: -61.5,25.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: -60.5,25.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + pos: -59.5,25.5 + parent: 2 + - uid: 12724 + components: + - type: Transform + pos: -58.5,25.5 + parent: 2 + - uid: 12725 + components: + - type: Transform + pos: -58.5,26.5 + parent: 2 + - uid: 12726 + components: + - type: Transform + pos: -59.5,26.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: -60.5,26.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + pos: -73.5,-4.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + pos: -73.5,-3.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + pos: -73.5,-2.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + pos: -77.5,-1.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + pos: -76.5,-1.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + pos: -75.5,-1.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + pos: -74.5,-1.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + pos: -73.5,-1.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: -72.5,-7.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + pos: -78.5,-10.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + pos: 16.5,-75.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 9.5,-74.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 9.5,-75.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + pos: 9.5,-73.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: 43.5,-73.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + pos: 43.5,-72.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: 42.5,-71.5 + parent: 2 + - uid: 14221 + components: + - type: Transform + pos: 41.5,-70.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + pos: 36.5,36.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: 57.5,18.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: 57.5,19.5 + parent: 2 + - uid: 14816 + components: + - type: Transform + pos: 57.5,20.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: 57.5,21.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + pos: 57.5,22.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + pos: 56.5,18.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + pos: 56.5,19.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + pos: 56.5,20.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + pos: 56.5,21.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + pos: 56.5,22.5 + parent: 2 + - uid: 14824 + components: + - type: Transform + pos: 55.5,17.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + pos: 56.5,17.5 + parent: 2 + - uid: 14826 + components: + - type: Transform + pos: 58.5,22.5 + parent: 2 + - uid: 14827 + components: + - type: Transform + pos: 59.5,22.5 + parent: 2 + - uid: 14860 + components: + - type: Transform + pos: 58.5,7.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 14959 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 14961 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 14962 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: 18.5,33.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 14967 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + pos: 18.5,36.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + pos: 18.5,37.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + pos: 18.5,39.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: 18.5,40.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: 19.5,39.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 14985 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: 20.5,39.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 14990 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: 20.5,41.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: 20.5,40.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 22.5,39.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: 25.5,41.5 + parent: 2 + - uid: 15001 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 15005 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: 27.5,42.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: 28.5,42.5 + parent: 2 + - uid: 15027 + components: + - type: Transform + pos: 29.5,42.5 + parent: 2 + - uid: 15028 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: 30.5,42.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: 30.5,40.5 + parent: 2 + - uid: 15033 + components: + - type: Transform + pos: 31.5,42.5 + parent: 2 + - uid: 15034 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 15036 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 15037 + components: + - type: Transform + pos: 32.5,41.5 + parent: 2 + - uid: 15038 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 15039 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - uid: 15040 + components: + - type: Transform + pos: 33.5,41.5 + parent: 2 + - uid: 15041 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - uid: 15042 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 15043 + components: + - type: Transform + pos: 34.5,41.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 15045 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 15046 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - uid: 15047 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + pos: 36.5,41.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + pos: 36.5,40.5 + parent: 2 + - uid: 15050 + components: + - type: Transform + pos: 37.5,39.5 + parent: 2 + - uid: 15051 + components: + - type: Transform + pos: 37.5,38.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 15053 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + pos: 5.5,29.5 + parent: 2 + - uid: 15057 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 15061 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 15065 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 15068 + components: + - type: Transform + pos: 4.5,33.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + pos: 3.5,27.5 + parent: 2 + - uid: 15074 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 + - uid: 15076 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 15078 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 15079 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 15080 + components: + - type: Transform + pos: 2.5,29.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 15094 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 15149 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 15150 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 15151 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 15152 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 15153 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 15155 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - uid: 15157 + components: + - type: Transform + pos: 6.5,32.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + pos: -11.5,39.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + pos: -11.5,40.5 + parent: 2 + - uid: 15363 + components: + - type: Transform + pos: -11.5,41.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + pos: -12.5,40.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + pos: -12.5,41.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: -12.5,42.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + pos: -12.5,43.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + pos: -12.5,44.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + pos: -12.5,45.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + pos: -12.5,46.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + pos: -12.5,47.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + pos: -12.5,48.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + pos: -12.5,49.5 + parent: 2 + - uid: 15374 + components: + - type: Transform + pos: -13.5,48.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + pos: -13.5,47.5 + parent: 2 + - uid: 15376 + components: + - type: Transform + pos: -13.5,46.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + pos: -13.5,45.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + pos: -13.5,44.5 + parent: 2 + - uid: 15379 + components: + - type: Transform + pos: -13.5,43.5 + parent: 2 + - uid: 15380 + components: + - type: Transform + pos: -13.5,42.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + pos: -11.5,23.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + pos: -13.5,25.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + pos: -13.5,27.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + pos: -14.5,27.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + pos: -14.5,23.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -14.5,22.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + pos: -13.5,23.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + pos: -13.5,22.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 714 + components: + - type: Transform + pos: -20.5,-59.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: 37.5,-47.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 13841 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 2 + - uid: 13842 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + pos: 54.5,-42.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + pos: 54.5,-40.5 + parent: 2 + - uid: 15695 + components: + - type: Transform + pos: -20.5,-72.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + pos: -20.5,-71.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 16384 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 26429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-54.5 + parent: 2 + - uid: 29342 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 13499 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + pos: -5.5,-66.5 + parent: 2 + - uid: 16199 + components: + - type: Transform + pos: -5.5,-67.5 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 16202 + components: + - type: Transform + pos: -4.5,-67.5 + parent: 2 + - uid: 16203 + components: + - type: Transform + pos: -3.5,-65.5 + parent: 2 + - uid: 16204 + components: + - type: Transform + pos: -3.5,-66.5 + parent: 2 + - uid: 16205 + components: + - type: Transform + pos: -3.5,-67.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: 4.5,-67.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + pos: 4.5,-66.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + pos: 3.5,-67.5 + parent: 2 + - uid: 16210 + components: + - type: Transform + pos: 3.5,-66.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + pos: 2.5,-67.5 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: 2.5,-66.5 + parent: 2 + - uid: 16214 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: 6.5,-67.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + pos: 7.5,-67.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + pos: 8.5,-66.5 + parent: 2 + - uid: 16223 + components: + - type: Transform + pos: 8.5,-67.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 16226 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 16228 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 16229 + components: + - type: Transform + pos: -15.5,-57.5 + parent: 2 + - uid: 16230 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 + - uid: 16231 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 16232 + components: + - type: Transform + pos: -16.5,-57.5 + parent: 2 + - uid: 16233 + components: + - type: Transform + pos: -9.5,-76.5 + parent: 2 + - uid: 16234 + components: + - type: Transform + pos: -9.5,-75.5 + parent: 2 + - uid: 16235 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 16236 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 16237 + components: + - type: Transform + pos: -9.5,-72.5 + parent: 2 + - uid: 16238 + components: + - type: Transform + pos: -10.5,-76.5 + parent: 2 + - uid: 16239 + components: + - type: Transform + pos: -10.5,-75.5 + parent: 2 + - uid: 16240 + components: + - type: Transform + pos: -10.5,-74.5 + parent: 2 + - uid: 16241 + components: + - type: Transform + pos: -10.5,-73.5 + parent: 2 + - uid: 16242 + components: + - type: Transform + pos: -10.5,-72.5 + parent: 2 + - uid: 16243 + components: + - type: Transform + pos: -11.5,-76.5 + parent: 2 + - uid: 16244 + components: + - type: Transform + pos: -11.5,-75.5 + parent: 2 + - uid: 16245 + components: + - type: Transform + pos: -11.5,-74.5 + parent: 2 + - uid: 16246 + components: + - type: Transform + pos: -11.5,-73.5 + parent: 2 + - uid: 16247 + components: + - type: Transform + pos: -11.5,-72.5 + parent: 2 + - uid: 16248 + components: + - type: Transform + pos: -12.5,-76.5 + parent: 2 + - uid: 16249 + components: + - type: Transform + pos: -12.5,-75.5 + parent: 2 + - uid: 16250 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 2 + - uid: 16251 + components: + - type: Transform + pos: -12.5,-73.5 + parent: 2 + - uid: 16252 + components: + - type: Transform + pos: -12.5,-72.5 + parent: 2 + - uid: 16253 + components: + - type: Transform + pos: -17.5,-80.5 + parent: 2 + - uid: 16254 + components: + - type: Transform + pos: -17.5,-81.5 + parent: 2 + - uid: 16255 + components: + - type: Transform + pos: -17.5,-82.5 + parent: 2 + - uid: 16256 + components: + - type: Transform + pos: -18.5,-80.5 + parent: 2 + - uid: 16257 + components: + - type: Transform + pos: -18.5,-81.5 + parent: 2 + - uid: 16258 + components: + - type: Transform + pos: -18.5,-82.5 + parent: 2 + - uid: 16259 + components: + - type: Transform + pos: -19.5,-80.5 + parent: 2 + - uid: 16260 + components: + - type: Transform + pos: -19.5,-81.5 + parent: 2 + - uid: 16261 + components: + - type: Transform + pos: -19.5,-82.5 + parent: 2 + - uid: 27645 + components: + - type: Transform + pos: -84.5,-40.5 + parent: 2 + - uid: 27646 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 27647 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 28435 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 28436 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 28437 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 28439 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 28440 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 28441 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 28442 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 28443 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 28444 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 28445 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 28446 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 28447 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 28448 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 28449 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 28450 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 28451 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 28452 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 28453 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 28454 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 28455 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 28456 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 28457 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 28458 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 28459 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 28460 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 + - uid: 28461 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 28462 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 28463 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 28464 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 28465 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 28466 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 28467 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 28468 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 28469 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 28470 + components: + - type: Transform + pos: -44.5,-25.5 + parent: 2 + - uid: 28471 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 28472 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 28473 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 28474 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 28475 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 28476 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 28477 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 28478 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 28479 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 28480 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 28481 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 28482 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 28483 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 28484 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 28485 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 28486 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 28487 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 28488 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 28489 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 28490 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 28491 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 28492 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 28493 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 28494 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 28495 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 28496 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 28497 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 28498 + components: + - type: Transform + pos: -84.5,-41.5 + parent: 2 + - uid: 28499 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 28500 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 28502 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 28503 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 28504 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 28505 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 28506 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 28507 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 28508 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 28509 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 28510 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 28511 + components: + - type: Transform + pos: -8.5,16.5 + parent: 2 + - uid: 28512 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 + - uid: 28513 + components: + - type: Transform + pos: -8.5,14.5 + parent: 2 + - uid: 28514 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 28515 + components: + - type: Transform + pos: -7.5,16.5 + parent: 2 + - uid: 28516 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 28517 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 28518 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 28519 + components: + - type: Transform + pos: -6.5,15.5 + parent: 2 + - uid: 28520 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 28521 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 28522 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 28523 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 28524 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 28525 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 28526 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 28527 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 28528 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - uid: 28529 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 28530 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 28531 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 28532 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 28533 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 28534 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 28535 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 28541 + components: + - type: Transform + pos: -61.5,-29.5 + parent: 2 + - uid: 28542 + components: + - type: Transform + pos: -61.5,-30.5 + parent: 2 + - uid: 28543 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - uid: 28544 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 28546 + components: + - type: Transform + pos: -59.5,-30.5 + parent: 2 + - uid: 28547 + components: + - type: Transform + pos: -59.5,-31.5 + parent: 2 + - uid: 28548 + components: + - type: Transform + pos: -60.5,-31.5 + parent: 2 + - uid: 28549 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 2 + - uid: 28550 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - uid: 28551 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 2 + - uid: 28552 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 28553 + components: + - type: Transform + pos: -56.5,-31.5 + parent: 2 + - uid: 28554 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 2 + - uid: 28555 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 28557 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 2 + - uid: 28558 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 + - uid: 28559 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 2 + - uid: 28560 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - uid: 28561 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - uid: 28562 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - uid: 28563 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 + - uid: 28564 + components: + - type: Transform + pos: -51.5,-31.5 + parent: 2 + - uid: 28565 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 15147 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 15148 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 15350 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 15357 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 17817 + components: + - type: Transform + pos: 25.5,29.5 + parent: 2 + - uid: 17818 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 17819 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 17820 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 5426 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 14668 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 2144 + components: + - type: Transform + pos: -15.5,-55.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: -14.5,-55.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: -16.5,-53.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: -16.5,-54.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 9450 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 14670 + components: + - type: Transform + pos: -1.5,-66.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: 0.5,-66.5 + parent: 2 + - uid: 14783 + components: + - type: Transform + pos: 0.5,-67.5 + parent: 2 + - uid: 14785 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 14786 + components: + - type: Transform + pos: -1.5,-67.5 + parent: 2 + - uid: 14787 + components: + - type: Transform + pos: -0.5,-67.5 + parent: 2 + - uid: 14788 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 + - uid: 14789 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 722 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 +- proto: BackgammonBoard + entities: + - uid: 724 + components: + - type: Transform + pos: -91.49448,-39.45658 + parent: 2 +- proto: BalloonCorgi + entities: + - uid: 11816 + components: + - type: Transform + parent: 4016 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BananiumDoor + entities: + - uid: 17678 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 +- proto: BannerRevolution + entities: + - uid: 13785 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 +- proto: BarberScissors + entities: + - uid: 6302 + components: + - type: Transform + pos: -19.345783,-1.9550543 + parent: 2 +- proto: Barricade + entities: + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-14.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 10757 + components: + - type: Transform + pos: -71.5,48.5 + parent: 2 + - uid: 16050 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 16288 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 20488 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - uid: 20489 + components: + - type: Transform + pos: -75.5,-19.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 721 + components: + - type: Transform + pos: 56.5,-3.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -89.5,-36.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-24.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: -54.5,62.5 + parent: 2 + - uid: 10758 + components: + - type: Transform + pos: -71.5,48.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + pos: -71.5,47.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 16340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-44.5 + parent: 2 + - uid: 18090 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 18091 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 18116 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 + - uid: 18275 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - type: Construction + defaultTarget: start + - uid: 18276 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 18323 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 18324 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 18351 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 18415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,15.5 + parent: 2 + - uid: 18463 + components: + - type: Transform + pos: -71.5,-0.5 + parent: 2 + - uid: 18464 + components: + - type: Transform + pos: -73.5,2.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-10.5 + parent: 2 + - uid: 18596 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 18597 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 20001 + components: + - type: Transform + pos: -75.5,-19.5 + parent: 2 + - uid: 20003 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-3.5 + parent: 2 +- proto: BarSign + entities: + - uid: 731 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 16446 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 +- proto: BaseBallBat + entities: + - uid: 732 + components: + - type: Transform + pos: -53.444332,-38.336334 + parent: 2 + - uid: 734 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False + - uid: 744 + components: + - type: Transform + parent: 743 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BaseComputer + entities: + - uid: 747 + components: + - type: MetaData + name: сканер тела + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 752 + components: + - type: MetaData + name: сканер тела + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 2 + - uid: 753 + components: + - type: MetaData + name: сканер тела + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 754 + components: + - type: MetaData + desc: Кажется, вы не знаете как это использовать. + name: Сканер ДНК + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,11.5 + parent: 2 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,1.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 27.5,-51.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-61.5 + parent: 2 + - uid: 15627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-73.5 + parent: 2 +- proto: BaseGasCondenser + entities: + - uid: 1396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-57.5 + parent: 2 +- proto: Basketball + entities: + - uid: 758 + components: + - type: Transform + pos: -89.61344,-34.474216 + parent: 2 +- proto: BeachBall + entities: + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,11.5 + parent: 2 +- proto: Beaker + entities: + - uid: 760 + components: + - type: Transform + pos: -32.14018,-6.3963966 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -54.063805,0.53755885 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 11.130766,-1.4273198 + parent: 2 + - uid: 17921 + components: + - type: Transform + pos: 29.590372,20.56911 + parent: 2 +- proto: Bed + entities: + - uid: 763 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -39.5,-29.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -95.5,-28.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -94.5,-25.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -88.5,-25.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -88.5,-28.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 10959 + components: + - type: Transform + pos: -80.5,59.5 + parent: 2 + - uid: 11803 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 11804 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 11811 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 12045 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 + - uid: 18155 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 774 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-29.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-29.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-29.5 + parent: 2 + - uid: 780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-29.5 + parent: 2 + - uid: 18400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 781 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 +- proto: BedsheetCult + entities: + - uid: 10960 + components: + - type: Transform + pos: -80.5,59.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 782 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 2 +- proto: BedsheetRed + entities: + - uid: 790 + components: + - type: Transform + pos: -88.5,-25.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -94.5,-25.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -95.5,-28.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -88.5,-28.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 12047 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 12048 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 12049 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 12050 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: 47.5,26.5 + parent: 2 +- proto: Bible + entities: + - uid: 10753 + components: + - type: Transform + pos: -69.46492,52.558163 + parent: 2 + - type: Summonable + summonActionEntity: 975 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + actions: !type:Container + showEnts: False + occludes: True + ents: + - 975 + - type: ActionsContainer + - uid: 10754 + components: + - type: Transform + pos: -69.459335,56.721912 + parent: 2 +- proto: BigBox + entities: + - uid: 16291 + components: + - type: Transform + pos: -16.494516,-45.55257 + parent: 2 + - uid: 16402 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 17707 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17708 + - uid: 18095 + components: + - type: Transform + pos: -8.55583,18.549725 + parent: 2 + - uid: 18352 + components: + - type: Transform + pos: -44.658237,20.533106 + parent: 2 + - uid: 18413 + components: + - type: Transform + pos: -51.46733,13.606721 + parent: 2 + - uid: 18694 + components: + - type: Transform + pos: -51.462868,-25.446827 + parent: 2 +- proto: BikeHorn + entities: + - uid: 794 + components: + - type: Transform + pos: -14.436292,-7.026599 + parent: 2 +- proto: BiomassReclaimer + entities: + - uid: 795 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 796 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-52.5 + parent: 2 + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-52.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -59.5,-41.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -58.5,-41.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 46.5,9.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 15.5,-56.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 10868 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + pos: -77.5,43.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: -8.5,-73.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: -8.5,-74.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: -8.5,-75.5 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + pos: -19.5,-83.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + pos: -18.5,-83.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + pos: -17.5,-83.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: -20.5,-72.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: -20.5,-71.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 18010 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 808 + components: + - type: Transform + pos: 32.5,-61.5 + parent: 2 + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 32.5,-63.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 2 + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-27.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 2 + - uid: 820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,9.5 + parent: 2 + - uid: 822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,7.5 + parent: 2 + - uid: 823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,4.5 + parent: 2 + - uid: 825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,10.5 + parent: 2 + - uid: 826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,10.5 + parent: 2 + - uid: 827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -52.5,-34.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -52.5,-35.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -47.5,-34.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -47.5,-35.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -60.5,-38.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -57.5,-39.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 2 + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + - uid: 843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 2 + - uid: 13379 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + pos: -4.5,52.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 17827 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 17828 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 17829 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 +- proto: Bloodpack + entities: + - uid: 854 + components: + - type: Transform + pos: -40.29811,7.70599 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: -27.329756,-13.514935 + parent: 2 + - uid: 13976 + components: + - type: Transform + pos: -27.611006,-13.296185 + parent: 2 + - uid: 18073 + components: + - type: Transform + pos: 5.227255,23.528622 + parent: 2 + - uid: 18074 + components: + - type: Transform + pos: 5.800935,23.692532 + parent: 2 + - uid: 18177 + components: + - type: Transform + pos: 5.514629,23.610577 + parent: 2 +- proto: BlueTomatoSeeds + entities: + - uid: 855 + components: + - type: Transform + pos: -85.521736,-44.65994 + parent: 2 +- proto: BodyBag + entities: + - uid: 16287 + components: + - type: Transform + pos: 4.5952644,-43.474445 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 35.948223 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: InsideEntityStorage +- proto: BodyBagFolded + entities: + - uid: 18309 + components: + - type: Transform + pos: -35.54223,25.551062 + parent: 2 +- proto: BodyScannerComputerCircuitboard + entities: + - uid: 18133 + components: + - type: Transform + pos: 4.4629283,22.60674 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 10825 + components: + - type: Transform + pos: -2.5847669,-49.28051 + parent: 2 + - uid: 10827 + components: + - type: Transform + pos: -8.6793375,-60.26102 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 10830 + components: + - type: Transform + pos: -4.3311214,-54.271984 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 10829 + components: + - type: Transform + pos: -8.641513,-60.374496 + parent: 2 +- proto: BookBartendersManual + entities: + - uid: 858 + components: + - type: Transform + pos: -6.353987,-3.3382645 + parent: 2 +- proto: BookBase + entities: + - uid: 859 + components: + - type: Transform + pos: -97.47736,-32.421204 + parent: 2 +- proto: BookCafe + entities: + - uid: 861 + components: + - type: Transform + pos: -16.351877,-7.3107247 + parent: 2 +- proto: BookChemicalCompendium + entities: + - uid: 864 + components: + - type: Transform + parent: 3995 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 865 + components: + - type: Transform + pos: -53.501305,0.64693385 + parent: 2 +- proto: BookHowToCookForFortySpaceman + entities: + - uid: 862 + components: + - type: Transform + pos: -74.496544,-40.41741 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 8.506433,-1.3236176 + parent: 2 +- proto: BookMorgue + entities: + - uid: 11362 + components: + - type: Transform + pos: -74.433685,46.648067 + parent: 2 +- proto: BookNarsieLegend + entities: + - uid: 3278 + components: + - type: Transform + pos: -69.44215,46.657845 + parent: 2 +- proto: BookRandom + entities: + - uid: 874 + components: + - type: Transform + pos: -17.394432,-6.4596615 + parent: 2 + - uid: 18691 + components: + - type: Transform + pos: -61.517113,-26.399952 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 860 + components: + - type: Transform + pos: 18.634068,0.6622193 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -53.282555,0.72587776 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -16.632822,-7.2581816 + parent: 2 + - uid: 869 + components: + - type: Transform + parent: 868 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 870 + components: + - type: Transform + pos: -40.464195,-50.435642 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: -53.367577,0.40488887 + parent: 2 + - uid: 10974 + components: + - type: Transform + pos: -70.8084,45.6013 + parent: 2 + - uid: 10975 + components: + - type: Transform + pos: -71.6834,45.6013 + parent: 2 + - uid: 10976 + components: + - type: Transform + pos: -71.2459,45.57005 + parent: 2 + - uid: 13596 + components: + - type: Transform + parent: 13594 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18534 + components: + - type: Transform + pos: -35.492348,20.661955 + parent: 2 +- proto: BookRufus + entities: + - uid: 11096 + components: + - type: Transform + pos: -56.479267,54.57157 + parent: 2 +- proto: BooksBag + entities: + - uid: 875 + components: + - type: Transform + pos: -17.45826,-6.353278 + parent: 2 +- proto: BookSecurity + entities: + - uid: 876 + components: + - type: Transform + pos: 10.4686775,-19.338873 + parent: 2 + - uid: 878 + components: + - type: Transform + parent: 877 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Bookshelf + entities: + - uid: 15778 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 880 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: -95.5,-31.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: -94.5,-31.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 +- proto: BookTemple + entities: + - uid: 10797 + components: + - type: Transform + pos: -70.44215,48.700397 + parent: 2 +- proto: BookTruth + entities: + - uid: 2426 + components: + - type: Transform + pos: -79.53308,60.59947 + parent: 2 +- proto: BookWatched + entities: + - uid: 745 + components: + - type: Transform + parent: 743 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11332 + components: + - type: Transform + pos: -70.260925,48.50278 + parent: 2 +- proto: BookWorld + entities: + - uid: 2929 + components: + - type: Transform + pos: -70.67833,48.476463 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 +- proto: BoozeDispenserMachineCircuitboard + entities: + - uid: 890 + components: + - type: Transform + pos: -1.4716264,-37.30678 + parent: 2 +- proto: BorgCharger + entities: + - uid: 891 + components: + - type: Transform + pos: -49.5,-47.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 893 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 894 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 895 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 896 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 897 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 898 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 12252 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 13476 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 + - uid: 13477 + components: + - type: Transform + pos: 0.5,42.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 20 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.45,-0.45 + - 0.45,-0.45 + - 0.45,0.45 + - -0.45,0.45 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 190 + hard: True + restitution: 0 + friction: 0.4 +- proto: BorgChargerCircuitboard + entities: + - uid: 899 + components: + - type: Transform + pos: -1.5039806,-38.410362 + parent: 2 +- proto: BorgModuleTool + entities: + - uid: 900 + components: + - type: Transform + pos: -1.5674117,-38.408733 + parent: 2 +- proto: BoxBeaker + entities: + - uid: 901 + components: + - type: Transform + pos: -9.506798,0.5485736 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -47.730766,3.646596 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -32.540424,-15.455739 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -53.345055,3.6781838 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -58.698154,-36.464516 + parent: 2 + - uid: 907 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 922 + components: + - type: Transform + pos: 15.445474,-2.3285303 + parent: 2 +- proto: BoxBeanbag + entities: + - uid: 923 + components: + - type: Transform + pos: -13.457502,-1.489913 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 924 + components: + - type: Transform + pos: -28.394625,6.716665 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -28.607391,6.5251756 + parent: 2 + - uid: 927 + components: + - type: Transform + parent: 926 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 928 + components: + - type: Transform + parent: 926 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 931 + components: + - type: Transform + pos: -28.511032,10.552446 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -28.370407,10.661821 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 3.4628732,-11.40443 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 28.674082,15.751678 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 28.440039,15.581465 + parent: 2 + - uid: 11360 + components: + - type: Transform + pos: -74.3273,46.7119 + parent: 2 + - uid: 16162 + components: + - type: Transform + pos: -27.451082,-15.436052 + parent: 2 +- proto: BoxCartridgeCap + entities: + - uid: 989 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False +- proto: BoxFlare + entities: + - uid: 992 + components: + - type: Transform + pos: 6.4327817,-36.29597 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 994 + components: + - type: Transform + pos: -46.500443,-39.36945 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: -30.279167,-54.375156 + parent: 2 +- proto: BoxFolderBase + entities: + - uid: 997 + components: + - type: Transform + pos: -44.330975,6.5596285 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 15.407455,-51.342197 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 24.679329,5.540976 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 28.616688,-11.787163 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 27.694834,-24.324415 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 26.627474,-22.489326 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 16.629572,-44.51078 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 10.463625,-44.473957 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: -53.65386,49.57472 + parent: 2 + - uid: 11626 + components: + - type: Transform + pos: -38.34085,-17.427397 + parent: 2 + - uid: 12162 + components: + - type: Transform + pos: -30.603582,-24.435307 + parent: 2 + - uid: 15827 + components: + - type: Transform + pos: 12.615266,18.635654 + parent: 2 + - uid: 20345 + components: + - type: Transform + pos: -74.29967,-18.570316 + parent: 2 + - uid: 20465 + components: + - type: Transform + pos: -71.36247,-15.4812 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 1004 + components: + - type: Transform + pos: -31.665695,11.546588 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 1005 + components: + - type: Transform + pos: -18.330599,-21.268225 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 11.682751,-25.3567 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: -3.488987,-27.417933 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: -9.305561,11.711022 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: -46.426502,-45.391495 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 11.5097275,-21.463758 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -10.484612,-21.413164 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -44.46967,6.3074613 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 24.91744,-42.1869 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 33.64468,-21.329943 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 1015 + components: + - type: Transform + pos: -41.85209,-6.2225575 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -39.58638,-52.358604 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -35.71019,-35.491615 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 5.514037,-17.949476 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 13.266333,-15.351248 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: -11.4701395,-21.366747 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: -17.499966,-2.4028902 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -43.425083,-4.364555 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -43.23722,9.59876 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -47.478462,-44.451805 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: -25.531164,-52.319046 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -26.531164,-33.376286 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: -19.489067,-38.39506 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 24.7292,-33.417538 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 34.524952,7.324978 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 28.610384,-11.761947 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 27.37332,-24.381153 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 26.618076,-22.508238 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 33.64468,-21.31103 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 33.34208,-21.519068 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 17.675097,-43.261787 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 15.6785345,-51.38633 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 34.60924,-63.465073 + parent: 2 + - uid: 9999 + components: + - type: Transform + pos: 11.60291,-43.403316 + parent: 2 + - uid: 10824 + components: + - type: Transform + pos: -0.6449487,-52.384403 + parent: 2 + - uid: 12258 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -51.397957,-20.359114 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: -1.4159534,6.5461698 + parent: 2 + - uid: 18391 + components: + - type: Transform + pos: -44.453728,17.657328 + parent: 2 + - uid: 18868 + components: + - type: Transform + pos: -53.516464,-9.4666395 + parent: 2 + - uid: 26697 + components: + - type: Transform + pos: -11.362714,-35.46745 + parent: 2 + - uid: 27383 + components: + - type: Transform + pos: 33.506172,12.591927 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 1039 + components: + - type: Transform + pos: -9.610367,11.552299 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 28.611376,-1.5690074 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 1041 + components: + - type: Transform + pos: -19.481478,-44.437706 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -46.660545,-45.561707 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: -14.486385,-21.49129 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: -3.4579697,-14.393316 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 11.679941,-21.338663 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: -18.532331,-21.406918 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: -15.485684,-36.40173 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: -39.55486,-52.364906 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: -26.54497,-33.41295 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: -53.472702,-38.336334 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: -29.469503,-51.43534 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: -37.64473,-40.37779 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 34.512344,7.2997613 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 33.370445,-21.528524 + parent: 2 + - uid: 14116 + components: + - type: Transform + pos: 46.35961,-33.433495 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 1055 + components: + - type: Transform + pos: -39.3756,15.620555 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 3.666696,-21.496456 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: -43.48036,-4.4787645 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -44.63988,6.446153 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -30.85195,5.5351505 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: -29.478163,-2.4095178 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -30.484816,-6.4476724 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -40.515247,-38.867584 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 1063 + components: + - type: Transform + pos: -7.3250237,11.590197 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -11.367336,-20.413164 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 24.835485,-42.394936 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -27.56327,-6.686114 + parent: 2 + - uid: 14119 + components: + - type: Transform + pos: 46.520042,-41.428265 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 1067 + components: + - type: Transform + pos: 11.493626,-25.97136 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -37.620636,-50.37807 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: -30.607292,-54.42203 + parent: 2 +- proto: BoxHeadset + entities: + - uid: 1071 + components: + - type: Transform + pos: -2.7730346,-23.537645 + parent: 2 +- proto: BoxHug + entities: + - uid: 1072 + components: + - type: Transform + pos: -65.320816,-32.307644 + parent: 2 + - uid: 13813 + components: + - type: Transform + pos: 41.516895,-42.364853 + parent: 2 +- proto: BoxID + entities: + - uid: 1073 + components: + - type: Transform + pos: -2.3042846,-23.36577 + parent: 2 +- proto: BoxInflatable + entities: + - uid: 1074 + components: + - type: Transform + pos: 3.6835194,-11.253131 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 11361 + components: + - type: Transform + pos: -74.58262,46.605515 + parent: 2 +- proto: BoxLightbulb + entities: + - uid: 1076 + components: + - type: Transform + parent: 1075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1080 + components: + - type: Transform + pos: 17.331163,-32.277233 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 31.678772,-21.392353 + parent: 2 + - uid: 16366 + components: + - type: Transform + pos: -52.49907,-45.501434 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 1077 + components: + - type: Transform + parent: 1075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1082 + components: + - type: Transform + pos: 26.332438,-32.48296 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 18.574043,-48.34691 + parent: 2 + - uid: 1085 + components: + - type: Transform + parent: 1084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10818 + components: + - type: Transform + pos: -0.37999606,-54.316868 + parent: 2 + - uid: 10942 + components: + - type: Transform + pos: 11.521126,-41.3467 + parent: 2 + - uid: 12219 + components: + - type: Transform + pos: -25.500164,-21.423779 + parent: 2 + - uid: 16400 + components: + - type: Transform + pos: 38.48249,25.469671 + parent: 2 + - uid: 17486 + components: + - type: Transform + pos: 32.44102,-75.5273 + parent: 2 + - uid: 17487 + components: + - type: Transform + pos: 32.65977,-75.41792 + parent: 2 + - uid: 18420 + components: + - type: Transform + parent: 18418 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxLighttube + entities: + - uid: 1078 + components: + - type: Transform + parent: 1075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1088 + components: + - type: Transform + pos: 17.646372,-32.478966 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 31.359623,-21.222141 + parent: 2 +- proto: BoxMagazineRifle + entities: + - uid: 1090 + components: + - type: Transform + pos: -34.84035,-54.342155 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -34.34035,-54.32653 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -34.563156,-54.34578 + parent: 2 +- proto: BoxMousetrap + entities: + - uid: 1093 + components: + - type: Transform + pos: 3.3304856,-11.164872 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 31.667042,-34.52542 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 31.547262,-34.317383 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 1096 + components: + - type: Transform + pos: 15.615686,-2.264701 + parent: 2 +- proto: BoxNitrileGloves + entities: + - uid: 1097 + components: + - type: Transform + pos: -41.56003,-6.321806 + parent: 2 +- proto: BoxPillCanister + entities: + - uid: 964 + components: + - type: Transform + parent: 942 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1098 + components: + - type: Transform + pos: -45.440784,3.6655085 + parent: 2 +- proto: BoxSechud + entities: + - uid: 1099 + components: + - type: Transform + pos: -30.794792,-54.468906 + parent: 2 +- proto: BoxShellTranquilizer + entities: + - uid: 1101 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxSyringe + entities: + - uid: 1110 + components: + - type: Transform + pos: -47.390343,3.6024668 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -32.428543,-15.328116 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -58.3861,-36.365223 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -71.38218,-35.326164 + parent: 2 +- proto: BoxTrashbag + entities: + - uid: 18132 + components: + - type: Transform + pos: -13.403646,20.60028 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 1114 + components: + - type: Transform + pos: -42.501423,-54.18563 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 1115 + components: + - type: Transform + pos: -15.50201,-21.39754 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -33.40964,-45.199425 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: -9.485653,-16.434757 + parent: 2 + - uid: 12197 + components: + - type: Transform + pos: -29.533983,-19.414936 + parent: 2 +- proto: BriefcaseBrownFilled + entities: + - uid: 1117 + components: + - type: Transform + pos: -47.51161,-46.2003 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 21.750105,-35.37008 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -46.521618,9.59969 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -19.393219,-19.212036 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -19.542156,-19.360973 + parent: 2 + - uid: 12159 + components: + - type: Transform + pos: -36.514008,-23.201927 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: -57.50615,-9.374149 + parent: 2 +- proto: BrigTimer + entities: + - uid: 6395 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 30243 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 30244 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 30293 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 30294 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 2 + - uid: 30295 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 +- proto: BrigTimerElectronics + entities: + - uid: 1123 + components: + - type: Transform + pos: -4.454656,-34.479248 + parent: 2 +- proto: BrokenEnergyShield + entities: + - uid: 11919 + components: + - type: Transform + pos: -97.91666,51.54347 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: 0.040668756,60.320877 + parent: 2 +- proto: Brutepack + entities: + - uid: 18461 + components: + - type: Transform + pos: -70.40625,6.583782 + parent: 2 +- proto: Bucket + entities: + - uid: 1124 + components: + - type: Transform + pos: 30.984694,-33.032925 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 28.43906,-35.419598 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: -84.52957,-44.54603 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 13.378329,-3.3380103 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 19.67662,0.0075856447 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 19.301064,-7.280448 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 14.531878,-11.846231 + parent: 2 + - uid: 11145 + components: + - type: Transform + pos: -20.585854,11.500495 + parent: 2 + - uid: 11146 + components: + - type: Transform + pos: -20.288979,11.562995 + parent: 2 + - uid: 11147 + components: + - type: Transform + pos: -20.476479,11.76612 + parent: 2 + - uid: 17671 + components: + - type: Transform + pos: 36.532646,-5.3305697 + parent: 2 + - uid: 18129 + components: + - type: Transform + pos: -15.435047,18.544716 + parent: 2 + - uid: 18135 + components: + - type: Transform + pos: -12.544271,20.47528 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 266 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 58.5,-6.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 59.5,-6.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: -78.5,-38.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: -77.5,-38.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: -76.5,-38.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: -79.5,-37.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: -79.5,-36.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: -75.5,60.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -61.5,-38.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 9735 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 13977 + components: + - type: Transform + pos: 21.5,-71.5 + parent: 2 + - uid: 14024 + components: + - type: Transform + pos: 24.5,-78.5 + parent: 2 + - uid: 14025 + components: + - type: Transform + pos: 24.5,-74.5 + parent: 2 + - uid: 14026 + components: + - type: Transform + pos: 24.5,-75.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: 24.5,-76.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 24.5,-77.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + pos: 25.5,-76.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + pos: 27.5,-76.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + pos: 26.5,-76.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + pos: 23.5,-76.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: 21.5,-76.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 20.5,-76.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 19.5,-76.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + pos: 22.5,-76.5 + parent: 2 + - uid: 16857 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - uid: 17345 + components: + - type: Transform + pos: 35.5,-60.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: 24.5,-79.5 + parent: 2 + - uid: 17439 + components: + - type: Transform + pos: 35.5,-59.5 + parent: 2 + - uid: 17441 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - uid: 17442 + components: + - type: Transform + pos: 35.5,-62.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: 34.5,-62.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + pos: 33.5,-62.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + pos: 37.5,-63.5 + parent: 2 + - uid: 17448 + components: + - type: Transform + pos: 38.5,-63.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: 39.5,-63.5 + parent: 2 + - uid: 17450 + components: + - type: Transform + pos: 40.5,-63.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: 41.5,-63.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + pos: 41.5,-62.5 + parent: 2 + - uid: 17453 + components: + - type: Transform + pos: 41.5,-61.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: 37.5,-61.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 17456 + components: + - type: Transform + pos: 39.5,-61.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + pos: 39.5,-60.5 + parent: 2 + - uid: 19108 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 2 + - uid: 19660 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 19662 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 19670 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 20442 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 20659 + components: + - type: Transform + pos: -68.5,5.5 + parent: 2 + - uid: 20895 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 20924 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 2 + - uid: 20925 + components: + - type: Transform + pos: 27.5,-70.5 + parent: 2 + - uid: 20926 + components: + - type: Transform + pos: 26.5,-70.5 + parent: 2 + - uid: 20927 + components: + - type: Transform + pos: 25.5,-70.5 + parent: 2 + - uid: 20928 + components: + - type: Transform + pos: 24.5,-70.5 + parent: 2 + - uid: 20929 + components: + - type: Transform + pos: 23.5,-70.5 + parent: 2 + - uid: 20930 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 2 + - uid: 20931 + components: + - type: Transform + pos: 21.5,-70.5 + parent: 2 + - uid: 20932 + components: + - type: Transform + pos: 20.5,-70.5 + parent: 2 + - uid: 20933 + components: + - type: Transform + pos: 19.5,-70.5 + parent: 2 + - uid: 20934 + components: + - type: Transform + pos: 18.5,-70.5 + parent: 2 + - uid: 20935 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 2 + - uid: 20936 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 2 + - uid: 20937 + components: + - type: Transform + pos: 26.5,-67.5 + parent: 2 + - uid: 20938 + components: + - type: Transform + pos: 25.5,-67.5 + parent: 2 + - uid: 20939 + components: + - type: Transform + pos: 24.5,-67.5 + parent: 2 + - uid: 20940 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 2 + - uid: 20941 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 2 + - uid: 20942 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 2 + - uid: 20943 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 2 + - uid: 20944 + components: + - type: Transform + pos: 19.5,-67.5 + parent: 2 + - uid: 20945 + components: + - type: Transform + pos: 18.5,-67.5 + parent: 2 + - uid: 20946 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 2 + - uid: 20947 + components: + - type: Transform + pos: 17.5,-70.5 + parent: 2 + - uid: 20948 + components: + - type: Transform + pos: 17.5,-69.5 + parent: 2 + - uid: 20949 + components: + - type: Transform + pos: 17.5,-68.5 + parent: 2 + - uid: 20950 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 20951 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 + - uid: 20952 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - uid: 20953 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 20954 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 20955 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 20956 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 2 + - uid: 20957 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 2 + - uid: 20958 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 + - uid: 20959 + components: + - type: Transform + pos: 18.5,-65.5 + parent: 2 + - uid: 20960 + components: + - type: Transform + pos: 19.5,-65.5 + parent: 2 + - uid: 20961 + components: + - type: Transform + pos: 20.5,-65.5 + parent: 2 + - uid: 20962 + components: + - type: Transform + pos: 21.5,-65.5 + parent: 2 + - uid: 20963 + components: + - type: Transform + pos: 22.5,-65.5 + parent: 2 + - uid: 20964 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 2 + - uid: 20965 + components: + - type: Transform + pos: 24.5,-65.5 + parent: 2 + - uid: 20966 + components: + - type: Transform + pos: 25.5,-65.5 + parent: 2 + - uid: 20967 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 2 + - uid: 20968 + components: + - type: Transform + pos: 27.5,-65.5 + parent: 2 + - uid: 20969 + components: + - type: Transform + pos: 28.5,-65.5 + parent: 2 + - uid: 20970 + components: + - type: Transform + pos: 28.5,-64.5 + parent: 2 + - uid: 20971 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 2 + - uid: 20972 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 2 + - uid: 20973 + components: + - type: Transform + pos: 28.5,-61.5 + parent: 2 + - uid: 20974 + components: + - type: Transform + pos: 28.5,-60.5 + parent: 2 + - uid: 20975 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 + - uid: 20976 + components: + - type: Transform + pos: 28.5,-58.5 + parent: 2 + - uid: 20977 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 20978 + components: + - type: Transform + pos: 28.5,-56.5 + parent: 2 + - uid: 20979 + components: + - type: Transform + pos: 28.5,-55.5 + parent: 2 + - uid: 20980 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - uid: 20981 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 20982 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 20983 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 20984 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 20985 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 + - uid: 20986 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 20987 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - uid: 20988 + components: + - type: Transform + pos: 19.5,-55.5 + parent: 2 + - uid: 20989 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 + - uid: 20990 + components: + - type: Transform + pos: 17.5,-55.5 + parent: 2 + - uid: 20991 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 + - uid: 20992 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 20993 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - uid: 20994 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 + - uid: 20995 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 + - uid: 20996 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - uid: 20997 + components: + - type: Transform + pos: 22.5,-58.5 + parent: 2 + - uid: 20998 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - uid: 20999 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 21000 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 2 + - uid: 21001 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 21002 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 21003 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 2 + - uid: 21004 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 + - uid: 21005 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 21011 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 21012 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 21013 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 21014 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 21015 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 2 + - uid: 21016 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 21017 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 21018 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 21019 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 21020 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 21021 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 21022 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 21023 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 21024 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - uid: 21025 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - uid: 21026 + components: + - type: Transform + pos: -8.5,-57.5 + parent: 2 + - uid: 21027 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 21028 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 21029 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 21030 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 21031 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 21032 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 21033 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 21034 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 21035 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 21036 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 21037 + components: + - type: Transform + pos: -0.5,-59.5 + parent: 2 + - uid: 21038 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 21039 + components: + - type: Transform + pos: 1.5,-59.5 + parent: 2 + - uid: 21040 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 2 + - uid: 21041 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - uid: 21044 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 21045 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - uid: 21046 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 21047 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 21048 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 21049 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 2 + - uid: 21050 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 21051 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 21052 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 21053 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 21054 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 21055 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 21056 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 21057 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 21058 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 21059 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 21060 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 + - uid: 21062 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 21063 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 + - uid: 21064 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - uid: 21065 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 21066 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 21067 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - uid: 21068 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - uid: 21069 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 21070 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - uid: 21071 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 21072 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 2 + - uid: 21073 + components: + - type: Transform + pos: -9.5,-61.5 + parent: 2 + - uid: 21074 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - uid: 21075 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 2 + - uid: 21076 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 2 + - uid: 21077 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 21078 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - uid: 21079 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 21080 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 21081 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - uid: 21082 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 2 + - uid: 21083 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 2 + - uid: 21084 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - uid: 21085 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 21086 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 21087 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 21088 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 21089 + components: + - type: Transform + pos: -10.5,-57.5 + parent: 2 + - uid: 21090 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 21091 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 2 + - uid: 21092 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - uid: 21093 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 2 + - uid: 21094 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 21095 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 2 + - uid: 21096 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 2 + - uid: 21097 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 2 + - uid: 21099 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 21100 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - uid: 21101 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 21102 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 21103 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 21104 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 2 + - uid: 21105 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 21106 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 21107 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 21108 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 21109 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 21110 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 21111 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 21112 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - uid: 21113 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 21114 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 2 + - uid: 21115 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 2 + - uid: 21116 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 21117 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 21118 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 21119 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - uid: 21121 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 21122 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 21123 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 21124 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 21125 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 21126 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 21127 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 + - uid: 21128 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - uid: 21129 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 21132 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 21133 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 21134 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - uid: 21135 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - uid: 21136 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 + - uid: 21137 + components: + - type: Transform + pos: 13.5,-50.5 + parent: 2 + - uid: 21141 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 21142 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 2 + - uid: 21143 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 2 + - uid: 21144 + components: + - type: Transform + pos: 16.5,-51.5 + parent: 2 + - uid: 21145 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - uid: 21148 + components: + - type: Transform + pos: 15.5,-52.5 + parent: 2 + - uid: 21149 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 2 + - uid: 21150 + components: + - type: Transform + pos: 17.5,-52.5 + parent: 2 + - uid: 21151 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 2 + - uid: 21152 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 2 + - uid: 21153 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 + - uid: 21154 + components: + - type: Transform + pos: 21.5,-52.5 + parent: 2 + - uid: 21157 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 2 + - uid: 21158 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 2 + - uid: 21159 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 2 + - uid: 21160 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 2 + - uid: 21161 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + pos: 15.5,-50.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + pos: 22.5,-52.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + pos: 24.5,-52.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 + - uid: 21172 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 21173 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 2 + - uid: 21174 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 2 + - uid: 21175 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 2 + - uid: 21176 + components: + - type: Transform + pos: 27.5,-49.5 + parent: 2 + - uid: 21177 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 21178 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 21179 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 + - uid: 21180 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 21182 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 2 + - uid: 21183 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 21184 + components: + - type: Transform + pos: 24.5,-49.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 2 + - uid: 21186 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 2 + - uid: 21188 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 21189 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 21190 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 21191 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 2 + - uid: 21192 + components: + - type: Transform + pos: 20.5,-45.5 + parent: 2 + - uid: 21193 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 21194 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 2 + - uid: 21195 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 2 + - uid: 21196 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - uid: 21197 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 21198 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 21199 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - uid: 21200 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 2 + - uid: 21204 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 + - uid: 21205 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 2 + - uid: 21206 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 + - uid: 21207 + components: + - type: Transform + pos: 20.5,-45.5 + parent: 2 + - uid: 21208 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 + - uid: 21209 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 2 + - uid: 21210 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - uid: 21212 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 21213 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 21214 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 21215 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 21216 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 21217 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 21218 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 21221 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 + - uid: 21222 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 21224 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 21225 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 21226 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 21227 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 21233 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - uid: 21234 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 21235 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - uid: 21236 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + pos: 30.5,-43.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 21239 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 21240 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 + - uid: 21241 + components: + - type: Transform + pos: 30.5,-47.5 + parent: 2 + - uid: 21242 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 2 + - uid: 21244 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 21247 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - uid: 21249 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 21250 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 21252 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 21253 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 2 + - uid: 21254 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 21256 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + pos: 31.5,-61.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 2 + - uid: 21260 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - uid: 21261 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - uid: 21262 + components: + - type: Transform + pos: 31.5,-66.5 + parent: 2 + - uid: 21263 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 2 + - uid: 21264 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 21265 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 2 + - uid: 21266 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 2 + - uid: 21268 + components: + - type: Transform + pos: 31.5,-70.5 + parent: 2 + - uid: 21269 + components: + - type: Transform + pos: 31.5,-71.5 + parent: 2 + - uid: 21270 + components: + - type: Transform + pos: 31.5,-72.5 + parent: 2 + - uid: 21271 + components: + - type: Transform + pos: 31.5,-73.5 + parent: 2 + - uid: 21273 + components: + - type: Transform + pos: 30.5,-72.5 + parent: 2 + - uid: 21274 + components: + - type: Transform + pos: 31.5,-72.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + pos: 32.5,-72.5 + parent: 2 + - uid: 21276 + components: + - type: Transform + pos: 33.5,-72.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + pos: 34.5,-72.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + pos: 35.5,-72.5 + parent: 2 + - uid: 21280 + components: + - type: Transform + pos: 30.5,-75.5 + parent: 2 + - uid: 21281 + components: + - type: Transform + pos: 30.5,-73.5 + parent: 2 + - uid: 21282 + components: + - type: Transform + pos: 30.5,-74.5 + parent: 2 + - uid: 21283 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + pos: 35.5,-75.5 + parent: 2 + - uid: 21285 + components: + - type: Transform + pos: 35.5,-74.5 + parent: 2 + - uid: 21286 + components: + - type: Transform + pos: 35.5,-73.5 + parent: 2 + - uid: 21288 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 21293 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 21295 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 21296 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 21299 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 21303 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 21304 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 21305 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 21306 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - uid: 21307 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 2 + - uid: 21308 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 21309 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 21310 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 21311 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - uid: 21312 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 21313 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 2 + - uid: 21314 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 21315 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 21316 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 21317 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 21318 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 21319 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 + - uid: 21320 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - uid: 21321 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 + - uid: 21322 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 + - uid: 21323 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 21325 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 21326 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 21327 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 21328 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 21329 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 21330 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 21331 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 21332 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 21333 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 21334 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 21335 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 21336 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 21337 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 21338 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 21339 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 21340 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 21341 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 21342 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 21343 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 21347 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 21348 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 21350 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 21352 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 21354 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 21355 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 21359 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 21360 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 21362 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 21364 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 21366 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 21368 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 21369 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 21370 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - uid: 21371 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 21372 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 21373 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 21377 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 21378 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 21379 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 21380 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 21383 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 21391 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 21392 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 21393 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 21394 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 21395 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 21396 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 21397 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 21398 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 21399 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 21400 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 21401 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 21402 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - uid: 21403 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 21404 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - uid: 21405 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 2 + - uid: 21406 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - uid: 21407 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - uid: 21408 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 21409 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 21410 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 21411 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 21412 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 2 + - uid: 21413 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - uid: 21414 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 2 + - uid: 21415 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 21416 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 2 + - uid: 21417 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 21418 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 2 + - uid: 21419 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 21420 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 + - uid: 21425 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 21426 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 21427 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 21428 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 21429 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 21430 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 21431 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 21432 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 21433 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 21434 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 21435 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 21436 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 21437 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 21443 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 21445 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 21446 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 21451 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 21453 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 21454 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 21455 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 21456 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 21457 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 21459 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 21460 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 21461 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 21462 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 21463 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 21464 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 21465 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 21466 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 21467 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 21472 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 21473 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 21474 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 21475 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 21476 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 2 + - uid: 21477 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 21478 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 21479 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 21480 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 21481 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 2 + - uid: 21482 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 21483 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 2 + - uid: 21484 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 21485 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 21486 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 21487 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 2 + - uid: 21488 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 21489 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 21490 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 21491 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - uid: 21492 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 21493 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 21494 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 21495 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 21496 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 21497 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 21498 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 21499 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 21500 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 21501 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: -11.5,-31.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: -13.5,-31.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 2 + - uid: 21515 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 21521 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 21543 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 21544 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: 9.5,-60.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: 9.5,-58.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + pos: 9.5,-57.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 2 + - uid: 21603 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 21604 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 21605 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 21606 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 21608 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 21609 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 21611 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 21613 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 21614 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 21615 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 21616 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 2 + - uid: 21617 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 21620 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 21622 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 21623 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 21624 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 21628 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 21629 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 21630 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 21631 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 21632 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 21633 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 21634 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 21635 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 21636 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 21643 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 21669 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 21670 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 21671 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 21672 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 21675 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 21676 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 21677 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 21678 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 21679 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 21680 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 21710 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 21716 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 21740 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 21741 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 21742 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 21743 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 21744 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 21745 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 21746 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 21747 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 21748 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 21749 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 21750 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 21751 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 21754 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 21755 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 21756 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 21758 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 21760 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 21761 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 21762 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 21764 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 21765 + components: + - type: Transform + pos: -10.5,4.5 + parent: 2 + - uid: 21766 + components: + - type: Transform + pos: -9.5,4.5 + parent: 2 + - uid: 21767 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 21768 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 21769 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 21770 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 21771 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 21772 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 21773 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 21774 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 21775 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 21776 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 21777 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 21778 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 21779 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 21780 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 21781 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 21782 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 21783 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 21785 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 21786 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 21789 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 21791 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 21792 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 21793 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 21794 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 21795 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 21796 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 21797 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 + - uid: 21798 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 21799 + components: + - type: Transform + pos: -26.5,7.5 + parent: 2 + - uid: 21800 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 21802 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - uid: 21804 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 21805 + components: + - type: Transform + pos: -24.5,8.5 + parent: 2 + - uid: 21806 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 21807 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 21808 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 21809 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 21810 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 21812 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 21813 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 21814 + components: + - type: Transform + pos: -21.5,10.5 + parent: 2 + - uid: 21815 + components: + - type: Transform + pos: -21.5,9.5 + parent: 2 + - uid: 21816 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 21817 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 21818 + components: + - type: Transform + pos: -21.5,6.5 + parent: 2 + - uid: 21837 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 21839 + components: + - type: Transform + pos: -25.5,18.5 + parent: 2 + - uid: 21840 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 21841 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 21842 + components: + - type: Transform + pos: -28.5,18.5 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: -29.5,18.5 + parent: 2 + - uid: 21844 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 21846 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 21847 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 21848 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 21849 + components: + - type: Transform + pos: -27.5,16.5 + parent: 2 + - uid: 21850 + components: + - type: Transform + pos: -26.5,16.5 + parent: 2 + - uid: 21851 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 + - uid: 21852 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 21853 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 21854 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 21855 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - uid: 21856 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 21857 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 21858 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - uid: 21859 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 21865 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 21869 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 21870 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 21871 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 21872 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 21873 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 21874 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 21875 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 21877 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 21878 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 21881 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 21886 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 21887 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 21888 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 21889 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 21890 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 21891 + components: + - type: Transform + pos: -24.5,4.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 21893 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 21906 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 21916 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 21917 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 21919 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - uid: 21926 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 21928 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 21929 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 21933 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 21934 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 21935 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 21936 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 21937 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 21941 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 21944 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 21948 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 21949 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 21950 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 21958 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 21967 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 21969 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 21970 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 21971 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 21972 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 21974 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 21975 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 21977 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 21978 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 21979 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 21981 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 21983 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 21984 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 21985 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - uid: 21986 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 21987 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 21988 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 21989 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - uid: 21990 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 21991 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 21992 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 21994 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - uid: 22009 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 22013 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 22015 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + pos: -65.5,-19.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: -64.5,-19.5 + parent: 2 + - uid: 22022 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 22023 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 22024 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 22025 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 22026 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 22028 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 22029 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 22030 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 22031 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 22032 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 22033 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 22034 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 22035 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 22036 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 22037 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 22038 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 22039 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 22040 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 22041 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 22042 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 22043 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 22044 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 22045 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 22046 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 22047 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 22048 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 2 + - uid: 22049 + components: + - type: Transform + pos: -61.5,-23.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 22051 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 22052 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 22053 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 22054 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 22056 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 22057 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 22058 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 22059 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 22060 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 2 + - uid: 22061 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 2 + - uid: 22062 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 22065 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 22066 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 2 + - uid: 22067 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 + - uid: 22068 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - uid: 22069 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 2 + - uid: 22070 + components: + - type: Transform + pos: -63.5,-20.5 + parent: 2 + - uid: 22071 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 2 + - uid: 22072 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 22073 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 2 + - uid: 22074 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 2 + - uid: 22075 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 + - uid: 22076 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 22077 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 22079 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 22080 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 22081 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 22082 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 22083 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 22084 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 22085 + components: + - type: Transform + pos: -61.5,-24.5 + parent: 2 + - uid: 22086 + components: + - type: Transform + pos: -60.5,-24.5 + parent: 2 + - uid: 22087 + components: + - type: Transform + pos: -59.5,-24.5 + parent: 2 + - uid: 22088 + components: + - type: Transform + pos: -58.5,-24.5 + parent: 2 + - uid: 22089 + components: + - type: Transform + pos: -57.5,-24.5 + parent: 2 + - uid: 22090 + components: + - type: Transform + pos: -56.5,-24.5 + parent: 2 + - uid: 22091 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 2 + - uid: 22092 + components: + - type: Transform + pos: -54.5,-24.5 + parent: 2 + - uid: 22093 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - uid: 22094 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 2 + - uid: 22095 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 + - uid: 22097 + components: + - type: Transform + pos: -53.5,-20.5 + parent: 2 + - uid: 22098 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 22099 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 2 + - uid: 22100 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 22102 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 22104 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 22105 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - uid: 22106 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 22107 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - uid: 22109 + components: + - type: Transform + pos: -60.5,-15.5 + parent: 2 + - uid: 22110 + components: + - type: Transform + pos: -61.5,-15.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + pos: -61.5,-16.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + pos: -61.5,-17.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 2 + - uid: 22114 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 22115 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 + - uid: 22116 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 22117 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 22119 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 2 + - uid: 22120 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - uid: 22121 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 22122 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 22123 + components: + - type: Transform + pos: -54.5,-21.5 + parent: 2 + - uid: 22124 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 22125 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 22126 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 22127 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 22128 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 22129 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 22139 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 22143 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 22144 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 22145 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 22146 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 22147 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 + - uid: 22148 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 22149 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 22150 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 22151 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 22152 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 2 + - uid: 22153 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 22155 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - uid: 22156 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 22157 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 22160 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 22161 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 22163 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 22164 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 22165 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - uid: 22168 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 22169 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - uid: 22170 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 22174 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 22175 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 22176 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 22177 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 22178 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 22179 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 22180 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 22181 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 22182 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 22183 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 22185 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 22186 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 22187 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 22188 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 22190 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 + - uid: 22191 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 22192 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 22193 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - uid: 22194 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 + - uid: 22195 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 22199 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 22200 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 22201 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 22202 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 22203 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 22204 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 22205 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 22206 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 22207 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 22208 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 22210 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 22211 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 22212 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 22215 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 22216 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 22217 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 22218 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 22219 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 22220 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 22221 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 22222 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 22223 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 22224 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 22225 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 2 + - uid: 22226 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 22227 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 22228 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 22229 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 22230 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 22231 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 + - uid: 22232 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 2 + - uid: 22233 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - uid: 22234 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 22235 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 2 + - uid: 22243 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 22247 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 22248 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 22249 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 22250 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 22251 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 22252 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 22256 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 22257 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 2 + - uid: 22258 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 + - uid: 22259 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 2 + - uid: 22260 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - uid: 22261 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 2 + - uid: 22262 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 22263 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 22264 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - uid: 22265 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - uid: 22267 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 22269 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - uid: 22270 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 22272 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 22277 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - uid: 22278 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 22279 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 22280 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 22281 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 22287 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 2 + - uid: 22288 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 22289 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 2 + - uid: 22290 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 22291 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 2 + - uid: 22292 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 2 + - uid: 22293 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 22294 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 22295 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 22296 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 22300 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 22301 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 22302 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 2 + - uid: 22304 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 22305 + components: + - type: Transform + pos: 42.5,-40.5 + parent: 2 + - uid: 22306 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: 39.5,-35.5 + parent: 2 + - uid: 22309 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 22310 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 22311 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 22312 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 2 + - uid: 22313 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 2 + - uid: 22314 + components: + - type: Transform + pos: 41.5,-40.5 + parent: 2 + - uid: 22318 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 22319 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 22320 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 22321 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 22322 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 2 + - uid: 22323 + components: + - type: Transform + pos: 44.5,-40.5 + parent: 2 + - uid: 22324 + components: + - type: Transform + pos: 45.5,-40.5 + parent: 2 + - uid: 22325 + components: + - type: Transform + pos: 46.5,-40.5 + parent: 2 + - uid: 22326 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - uid: 22327 + components: + - type: Transform + pos: 48.5,-40.5 + parent: 2 + - uid: 22328 + components: + - type: Transform + pos: 49.5,-40.5 + parent: 2 + - uid: 22329 + components: + - type: Transform + pos: 49.5,-39.5 + parent: 2 + - uid: 22330 + components: + - type: Transform + pos: 49.5,-38.5 + parent: 2 + - uid: 22331 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 22332 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 22333 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 22334 + components: + - type: Transform + pos: 49.5,-34.5 + parent: 2 + - uid: 22336 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 2 + - uid: 22337 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 + - uid: 22338 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 2 + - uid: 22339 + components: + - type: Transform + pos: 48.5,-33.5 + parent: 2 + - uid: 22340 + components: + - type: Transform + pos: 48.5,-32.5 + parent: 2 + - uid: 22341 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - uid: 22342 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 22343 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 2 + - uid: 22344 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 2 + - uid: 22345 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - uid: 22349 + components: + - type: Transform + pos: 42.5,-42.5 + parent: 2 + - uid: 22350 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 22351 + components: + - type: Transform + pos: 41.5,-43.5 + parent: 2 + - uid: 22352 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 22353 + components: + - type: Transform + pos: 39.5,-43.5 + parent: 2 + - uid: 22354 + components: + - type: Transform + pos: 38.5,-43.5 + parent: 2 + - uid: 22355 + components: + - type: Transform + pos: 37.5,-43.5 + parent: 2 + - uid: 22356 + components: + - type: Transform + pos: 44.5,-41.5 + parent: 2 + - uid: 22357 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 + - uid: 22358 + components: + - type: Transform + pos: 44.5,-43.5 + parent: 2 + - uid: 22359 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 22360 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 22362 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - uid: 22363 + components: + - type: Transform + pos: 37.5,-45.5 + parent: 2 + - uid: 22364 + components: + - type: Transform + pos: 37.5,-46.5 + parent: 2 + - uid: 22365 + components: + - type: Transform + pos: 44.5,-46.5 + parent: 2 + - uid: 22366 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 22369 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 22370 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 22371 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 22386 + components: + - type: Transform + pos: 48.5,-41.5 + parent: 2 + - uid: 22387 + components: + - type: Transform + pos: 48.5,-42.5 + parent: 2 + - uid: 22388 + components: + - type: Transform + pos: 48.5,-43.5 + parent: 2 + - uid: 22390 + components: + - type: Transform + pos: 47.5,-43.5 + parent: 2 + - uid: 22391 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 22392 + components: + - type: Transform + pos: 50.5,-42.5 + parent: 2 + - uid: 22393 + components: + - type: Transform + pos: 51.5,-42.5 + parent: 2 + - uid: 22394 + components: + - type: Transform + pos: 52.5,-42.5 + parent: 2 + - uid: 22395 + components: + - type: Transform + pos: 53.5,-42.5 + parent: 2 + - uid: 22396 + components: + - type: Transform + pos: 53.5,-40.5 + parent: 2 + - uid: 22397 + components: + - type: Transform + pos: 52.5,-40.5 + parent: 2 + - uid: 22398 + components: + - type: Transform + pos: 51.5,-40.5 + parent: 2 + - uid: 22399 + components: + - type: Transform + pos: 50.5,-40.5 + parent: 2 + - uid: 22400 + components: + - type: Transform + pos: 50.5,-34.5 + parent: 2 + - uid: 22401 + components: + - type: Transform + pos: 51.5,-34.5 + parent: 2 + - uid: 22402 + components: + - type: Transform + pos: 52.5,-34.5 + parent: 2 + - uid: 22403 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 2 + - uid: 22404 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 22405 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 22406 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 + - uid: 22407 + components: + - type: Transform + pos: 50.5,-32.5 + parent: 2 + - uid: 22408 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 22409 + components: + - type: Transform + pos: 46.5,-43.5 + parent: 2 + - uid: 22445 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 22451 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 22452 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 22453 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 22454 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 22455 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 22456 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 22457 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 22458 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 22459 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 22461 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 22462 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 22463 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 22464 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 22465 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 22466 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 22467 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 22469 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 22470 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 2 + - uid: 22471 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 22474 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 22476 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 22477 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 22478 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 22479 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 22480 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 22486 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 22487 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 22488 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 22489 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 22490 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 22491 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 22492 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 22493 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 22494 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 22495 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 22496 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 22497 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 22498 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 22499 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 22500 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 22501 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 22502 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 22506 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 22507 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 22508 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 22509 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 22510 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 22511 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 22512 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 22513 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 22514 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 22515 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 22516 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 22517 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 22519 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 22520 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 22521 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 22523 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 22524 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 22525 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 22526 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 22527 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 22529 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 22530 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 22531 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 22532 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 22533 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 22534 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 22535 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 22536 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 22537 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 22538 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 22540 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 22541 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 22542 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 22543 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 22544 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 22545 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 22546 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 22547 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 22548 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 22549 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 22550 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 22551 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 22552 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 22553 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 22554 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 22555 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 22557 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 22558 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 22559 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 22560 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 22561 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 22562 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 22563 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 22564 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 22565 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 22567 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 22568 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 22569 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 22570 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 22571 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 22572 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 22573 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 22574 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 22575 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 22576 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 22577 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 22578 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 22579 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 22580 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 22581 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 22582 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 22583 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 22584 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 22585 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 22586 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 22592 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 22593 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 22594 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 22595 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 22596 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 22597 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 22598 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 22599 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 22600 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 22601 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 22602 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 22604 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 22605 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 22606 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 22614 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 22615 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 22616 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 22617 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 22619 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 22621 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 22622 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 22623 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 22624 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 22625 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 22626 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 22627 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 22628 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 22629 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 22630 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 22631 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 22632 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 22633 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 22634 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 22638 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 22641 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 22642 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 22643 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 22644 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 22645 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 22647 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 22649 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 22650 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 22656 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 22657 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 22658 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 22660 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 22662 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 22663 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 22664 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 22668 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 22669 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 22670 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 22671 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 22679 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 22680 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 22684 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 22688 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 22690 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 22693 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 22694 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 22696 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 22697 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 22698 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 22700 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 22701 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 22702 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 22703 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 22704 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 22705 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 22708 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 22709 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 22710 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 22711 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 22712 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 22713 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 22714 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 22715 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 22716 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 22717 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 22718 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 22720 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 22721 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 22723 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 22724 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 22725 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 22726 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 2 + - uid: 22727 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 + - uid: 22728 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 22729 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 22730 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 22731 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 22732 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 22733 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 22734 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 22741 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 22743 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - uid: 22754 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 22755 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 22760 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 22761 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 22762 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 22763 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 22764 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 22765 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 22766 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 22767 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 22768 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 22769 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 22770 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 22771 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 22772 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 22773 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 22776 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 22777 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 22778 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 22779 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 22780 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 22781 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 22783 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 22784 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 22785 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 22786 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 22787 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 22788 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 22790 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 22791 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 22792 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 22793 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 22794 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 22795 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 22796 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 22797 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 22798 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 22816 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 22817 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 22818 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 22819 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 22820 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 22821 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 22822 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 22823 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 22824 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 22825 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 22826 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 22827 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 22828 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 22829 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 22830 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 22831 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 22832 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 22833 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 22834 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 22835 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 22836 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 22837 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 22860 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 22861 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 22862 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 22863 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 22864 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 22865 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 22866 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 22867 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 22870 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 22871 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 22872 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 22873 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 22874 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 22875 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 22878 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 22879 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 22880 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 22881 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 22882 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 22883 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 22884 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 22885 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 22886 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 22887 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 22888 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - uid: 22890 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 22891 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 22892 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 22893 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 22894 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 22895 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 22896 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 22897 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 22898 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 22899 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 22900 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 22901 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 22902 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 22903 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 22904 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 22905 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 22906 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 22909 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 22910 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 22911 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 22912 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 22913 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 22914 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 22915 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 22916 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 22917 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 22918 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 22919 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 22920 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 22921 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 22922 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 22923 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 22924 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 22925 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 22926 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 22927 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 22928 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 22929 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 22930 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 22931 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 22932 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 22933 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 22934 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 22935 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 22936 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 22937 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 22939 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 22940 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 22946 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 22947 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 22948 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 22949 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 22950 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 22951 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 22952 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 22953 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 22954 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 22955 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 22956 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 22957 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - uid: 22958 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 22959 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 22960 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 22961 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 22962 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 22963 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 22964 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 22965 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 22966 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 22974 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 22975 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 22976 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 22978 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 22979 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 22980 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 22982 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 22983 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 22984 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 22985 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 22986 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 22987 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 22988 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 22989 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 22990 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 22991 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 22995 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 22996 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 22997 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 22998 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - uid: 22999 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 23000 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 2 + - uid: 23001 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 + - uid: 23002 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 23004 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 23005 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 23006 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 2 + - uid: 23007 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - uid: 23008 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - uid: 23009 + components: + - type: Transform + pos: -40.5,-54.5 + parent: 2 + - uid: 23010 + components: + - type: Transform + pos: -43.5,-51.5 + parent: 2 + - uid: 23011 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 + - uid: 23012 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 23013 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 2 + - uid: 23014 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 23015 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 23016 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 23017 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 23018 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 + - uid: 23019 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 23020 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - uid: 23021 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 23022 + components: + - type: Transform + pos: -42.5,-53.5 + parent: 2 + - uid: 23023 + components: + - type: Transform + pos: -43.5,-53.5 + parent: 2 + - uid: 23027 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 23028 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 23029 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 23030 + components: + - type: Transform + pos: -45.5,-50.5 + parent: 2 + - uid: 23032 + components: + - type: Transform + pos: -44.5,-47.5 + parent: 2 + - uid: 23033 + components: + - type: Transform + pos: -44.5,-46.5 + parent: 2 + - uid: 23034 + components: + - type: Transform + pos: -44.5,-45.5 + parent: 2 + - uid: 23035 + components: + - type: Transform + pos: -44.5,-44.5 + parent: 2 + - uid: 23036 + components: + - type: Transform + pos: -44.5,-43.5 + parent: 2 + - uid: 23037 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 23038 + components: + - type: Transform + pos: -44.5,-41.5 + parent: 2 + - uid: 23039 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 23040 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 + - uid: 23041 + components: + - type: Transform + pos: -43.5,-44.5 + parent: 2 + - uid: 23042 + components: + - type: Transform + pos: -44.5,-44.5 + parent: 2 + - uid: 23043 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 23044 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 23045 + components: + - type: Transform + pos: -47.5,-44.5 + parent: 2 + - uid: 23046 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 23047 + components: + - type: Transform + pos: -49.5,-44.5 + parent: 2 + - uid: 23051 + components: + - type: Transform + pos: -49.5,-41.5 + parent: 2 + - uid: 23052 + components: + - type: Transform + pos: -48.5,-41.5 + parent: 2 + - uid: 23053 + components: + - type: Transform + pos: -47.5,-41.5 + parent: 2 + - uid: 23054 + components: + - type: Transform + pos: -46.5,-41.5 + parent: 2 + - uid: 23055 + components: + - type: Transform + pos: -45.5,-41.5 + parent: 2 + - uid: 23056 + components: + - type: Transform + pos: -44.5,-41.5 + parent: 2 + - uid: 23057 + components: + - type: Transform + pos: -43.5,-41.5 + parent: 2 + - uid: 23058 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 23059 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 23060 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 23061 + components: + - type: Transform + pos: -49.5,-48.5 + parent: 2 + - uid: 23062 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 23063 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 + - uid: 23064 + components: + - type: Transform + pos: -46.5,-48.5 + parent: 2 + - uid: 23066 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - uid: 23067 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 23068 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 2 + - uid: 23069 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 + - uid: 23070 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 23071 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 + - uid: 23072 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 23073 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 + - uid: 23074 + components: + - type: Transform + pos: -45.5,-33.5 + parent: 2 + - uid: 23075 + components: + - type: Transform + pos: -44.5,-33.5 + parent: 2 + - uid: 23076 + components: + - type: Transform + pos: -43.5,-33.5 + parent: 2 + - uid: 23077 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - uid: 23078 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 23079 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 2 + - uid: 23080 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - uid: 23081 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 23082 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 + - uid: 23083 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 23084 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 2 + - uid: 23085 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 23086 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 23087 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 23088 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 23089 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 23090 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 23091 + components: + - type: Transform + pos: -46.5,-34.5 + parent: 2 + - uid: 23092 + components: + - type: Transform + pos: -46.5,-35.5 + parent: 2 + - uid: 23093 + components: + - type: Transform + pos: -46.5,-36.5 + parent: 2 + - uid: 23094 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - uid: 23095 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - uid: 23096 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 23098 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 23099 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 23100 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 2 + - uid: 23101 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 23102 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 23103 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 23104 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 2 + - uid: 23105 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 23106 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 23108 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 23109 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 23111 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 23112 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 23113 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 23114 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - uid: 23115 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 23116 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 23117 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 2 + - uid: 23118 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 23119 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 2 + - uid: 23120 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 2 + - uid: 23121 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 2 + - uid: 23122 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - uid: 23123 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 23124 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 2 + - uid: 23125 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 23126 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 23127 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 2 + - uid: 23128 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 23129 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 23130 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 23131 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 23132 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 23133 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 23134 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 23135 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 23136 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 23140 + components: + - type: Transform + pos: -90.5,-27.5 + parent: 2 + - uid: 23141 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 23142 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 23143 + components: + - type: Transform + pos: -70.5,-34.5 + parent: 2 + - uid: 23144 + components: + - type: Transform + pos: -71.5,-34.5 + parent: 2 + - uid: 23145 + components: + - type: Transform + pos: -72.5,-34.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + pos: -58.5,-34.5 + parent: 2 + - uid: 23147 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 2 + - uid: 23148 + components: + - type: Transform + pos: -60.5,-34.5 + parent: 2 + - uid: 23149 + components: + - type: Transform + pos: -61.5,-34.5 + parent: 2 + - uid: 23150 + components: + - type: Transform + pos: -62.5,-34.5 + parent: 2 + - uid: 23151 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 23152 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 + - uid: 23153 + components: + - type: Transform + pos: -65.5,-34.5 + parent: 2 + - uid: 23154 + components: + - type: Transform + pos: -66.5,-34.5 + parent: 2 + - uid: 23155 + components: + - type: Transform + pos: -67.5,-34.5 + parent: 2 + - uid: 23156 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 + - uid: 23157 + components: + - type: Transform + pos: -69.5,-34.5 + parent: 2 + - uid: 23158 + components: + - type: Transform + pos: -56.5,-34.5 + parent: 2 + - uid: 23159 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 + - uid: 23160 + components: + - type: Transform + pos: -54.5,-34.5 + parent: 2 + - uid: 23161 + components: + - type: Transform + pos: -53.5,-34.5 + parent: 2 + - uid: 23162 + components: + - type: Transform + pos: -52.5,-34.5 + parent: 2 + - uid: 23163 + components: + - type: Transform + pos: -55.5,-37.5 + parent: 2 + - uid: 23164 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 + - uid: 23165 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 2 + - uid: 23166 + components: + - type: Transform + pos: -54.5,-37.5 + parent: 2 + - uid: 23167 + components: + - type: Transform + pos: -54.5,-38.5 + parent: 2 + - uid: 23168 + components: + - type: Transform + pos: -54.5,-39.5 + parent: 2 + - uid: 23169 + components: + - type: Transform + pos: -54.5,-40.5 + parent: 2 + - uid: 23170 + components: + - type: Transform + pos: -54.5,-41.5 + parent: 2 + - uid: 23171 + components: + - type: Transform + pos: -55.5,-39.5 + parent: 2 + - uid: 23172 + components: + - type: Transform + pos: -56.5,-39.5 + parent: 2 + - uid: 23173 + components: + - type: Transform + pos: -74.5,-33.5 + parent: 2 + - uid: 23174 + components: + - type: Transform + pos: -74.5,-34.5 + parent: 2 + - uid: 23175 + components: + - type: Transform + pos: -75.5,-34.5 + parent: 2 + - uid: 23176 + components: + - type: Transform + pos: -76.5,-34.5 + parent: 2 + - uid: 23177 + components: + - type: Transform + pos: -77.5,-34.5 + parent: 2 + - uid: 23180 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 23184 + components: + - type: Transform + pos: -75.5,-37.5 + parent: 2 + - uid: 23185 + components: + - type: Transform + pos: -74.5,-37.5 + parent: 2 + - uid: 23186 + components: + - type: Transform + pos: -73.5,-37.5 + parent: 2 + - uid: 23187 + components: + - type: Transform + pos: -72.5,-37.5 + parent: 2 + - uid: 23188 + components: + - type: Transform + pos: -72.5,-38.5 + parent: 2 + - uid: 23189 + components: + - type: Transform + pos: -72.5,-39.5 + parent: 2 + - uid: 23190 + components: + - type: Transform + pos: -72.5,-40.5 + parent: 2 + - uid: 23191 + components: + - type: Transform + pos: -78.5,-40.5 + parent: 2 + - uid: 23192 + components: + - type: Transform + pos: -77.5,-40.5 + parent: 2 + - uid: 23193 + components: + - type: Transform + pos: -76.5,-40.5 + parent: 2 + - uid: 23194 + components: + - type: Transform + pos: -75.5,-40.5 + parent: 2 + - uid: 23195 + components: + - type: Transform + pos: -74.5,-40.5 + parent: 2 + - uid: 23196 + components: + - type: Transform + pos: -73.5,-40.5 + parent: 2 + - uid: 23197 + components: + - type: Transform + pos: -72.5,-41.5 + parent: 2 + - uid: 23198 + components: + - type: Transform + pos: -72.5,-42.5 + parent: 2 + - uid: 23199 + components: + - type: Transform + pos: -77.5,-42.5 + parent: 2 + - uid: 23200 + components: + - type: Transform + pos: -76.5,-42.5 + parent: 2 + - uid: 23201 + components: + - type: Transform + pos: -75.5,-42.5 + parent: 2 + - uid: 23202 + components: + - type: Transform + pos: -74.5,-42.5 + parent: 2 + - uid: 23203 + components: + - type: Transform + pos: -73.5,-42.5 + parent: 2 + - uid: 23204 + components: + - type: Transform + pos: -71.5,-42.5 + parent: 2 + - uid: 23205 + components: + - type: Transform + pos: -70.5,-42.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: -69.5,-42.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: -68.5,-42.5 + parent: 2 + - uid: 23208 + components: + - type: Transform + pos: -67.5,-42.5 + parent: 2 + - uid: 23209 + components: + - type: Transform + pos: -67.5,-41.5 + parent: 2 + - uid: 23210 + components: + - type: Transform + pos: -67.5,-40.5 + parent: 2 + - uid: 23211 + components: + - type: Transform + pos: -67.5,-39.5 + parent: 2 + - uid: 23212 + components: + - type: Transform + pos: -67.5,-38.5 + parent: 2 + - uid: 23213 + components: + - type: Transform + pos: -67.5,-37.5 + parent: 2 + - uid: 23214 + components: + - type: Transform + pos: -79.5,-39.5 + parent: 2 + - uid: 23215 + components: + - type: Transform + pos: -79.5,-38.5 + parent: 2 + - uid: 23216 + components: + - type: Transform + pos: -92.5,-38.5 + parent: 2 + - uid: 23217 + components: + - type: Transform + pos: -80.5,-38.5 + parent: 2 + - uid: 23218 + components: + - type: Transform + pos: -81.5,-38.5 + parent: 2 + - uid: 23219 + components: + - type: Transform + pos: -82.5,-38.5 + parent: 2 + - uid: 23220 + components: + - type: Transform + pos: -83.5,-38.5 + parent: 2 + - uid: 23221 + components: + - type: Transform + pos: -84.5,-38.5 + parent: 2 + - uid: 23222 + components: + - type: Transform + pos: -85.5,-38.5 + parent: 2 + - uid: 23223 + components: + - type: Transform + pos: -86.5,-38.5 + parent: 2 + - uid: 23224 + components: + - type: Transform + pos: -87.5,-38.5 + parent: 2 + - uid: 23225 + components: + - type: Transform + pos: -88.5,-38.5 + parent: 2 + - uid: 23226 + components: + - type: Transform + pos: -89.5,-38.5 + parent: 2 + - uid: 23227 + components: + - type: Transform + pos: -90.5,-38.5 + parent: 2 + - uid: 23228 + components: + - type: Transform + pos: -91.5,-38.5 + parent: 2 + - uid: 23229 + components: + - type: Transform + pos: -86.5,-39.5 + parent: 2 + - uid: 23230 + components: + - type: Transform + pos: -86.5,-40.5 + parent: 2 + - uid: 23231 + components: + - type: Transform + pos: -86.5,-41.5 + parent: 2 + - uid: 23232 + components: + - type: Transform + pos: -86.5,-42.5 + parent: 2 + - uid: 23233 + components: + - type: Transform + pos: -86.5,-43.5 + parent: 2 + - uid: 23234 + components: + - type: Transform + pos: -88.5,-43.5 + parent: 2 + - uid: 23235 + components: + - type: Transform + pos: -87.5,-43.5 + parent: 2 + - uid: 23236 + components: + - type: Transform + pos: -85.5,-43.5 + parent: 2 + - uid: 23237 + components: + - type: Transform + pos: -84.5,-43.5 + parent: 2 + - uid: 23238 + components: + - type: Transform + pos: -84.5,-44.5 + parent: 2 + - uid: 23239 + components: + - type: Transform + pos: -84.5,-45.5 + parent: 2 + - uid: 23240 + components: + - type: Transform + pos: -84.5,-46.5 + parent: 2 + - uid: 23241 + components: + - type: Transform + pos: -84.5,-47.5 + parent: 2 + - uid: 23243 + components: + - type: Transform + pos: -91.5,-27.5 + parent: 2 + - uid: 23244 + components: + - type: Transform + pos: -90.5,-26.5 + parent: 2 + - uid: 23245 + components: + - type: Transform + pos: -89.5,-26.5 + parent: 2 + - uid: 23246 + components: + - type: Transform + pos: -88.5,-26.5 + parent: 2 + - uid: 23247 + components: + - type: Transform + pos: -91.5,-28.5 + parent: 2 + - uid: 23248 + components: + - type: Transform + pos: -91.5,-29.5 + parent: 2 + - uid: 23249 + components: + - type: Transform + pos: -90.5,-29.5 + parent: 2 + - uid: 23250 + components: + - type: Transform + pos: -89.5,-29.5 + parent: 2 + - uid: 23251 + components: + - type: Transform + pos: -88.5,-29.5 + parent: 2 + - uid: 23254 + components: + - type: Transform + pos: -92.5,-27.5 + parent: 2 + - uid: 23256 + components: + - type: Transform + pos: -92.5,-26.5 + parent: 2 + - uid: 23257 + components: + - type: Transform + pos: -93.5,-26.5 + parent: 2 + - uid: 23258 + components: + - type: Transform + pos: -94.5,-26.5 + parent: 2 + - uid: 23259 + components: + - type: Transform + pos: -92.5,-29.5 + parent: 2 + - uid: 23260 + components: + - type: Transform + pos: -93.5,-29.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: -94.5,-29.5 + parent: 2 + - uid: 23262 + components: + - type: Transform + pos: -95.5,-29.5 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: -96.5,-29.5 + parent: 2 + - uid: 23266 + components: + - type: Transform + pos: -92.5,-30.5 + parent: 2 + - uid: 23267 + components: + - type: Transform + pos: -92.5,-31.5 + parent: 2 + - uid: 23268 + components: + - type: Transform + pos: -92.5,-32.5 + parent: 2 + - uid: 23269 + components: + - type: Transform + pos: -92.5,-33.5 + parent: 2 + - uid: 23270 + components: + - type: Transform + pos: -93.5,-33.5 + parent: 2 + - uid: 23271 + components: + - type: Transform + pos: -94.5,-33.5 + parent: 2 + - uid: 23272 + components: + - type: Transform + pos: -95.5,-33.5 + parent: 2 + - uid: 23273 + components: + - type: Transform + pos: -96.5,-33.5 + parent: 2 + - uid: 23276 + components: + - type: Transform + pos: -92.5,-34.5 + parent: 2 + - uid: 23277 + components: + - type: Transform + pos: -91.5,-34.5 + parent: 2 + - uid: 23278 + components: + - type: Transform + pos: -90.5,-34.5 + parent: 2 + - uid: 23279 + components: + - type: Transform + pos: -89.5,-34.5 + parent: 2 + - uid: 23280 + components: + - type: Transform + pos: -88.5,-34.5 + parent: 2 + - uid: 23281 + components: + - type: Transform + pos: -87.5,-34.5 + parent: 2 + - uid: 23282 + components: + - type: Transform + pos: -86.5,-34.5 + parent: 2 + - uid: 23283 + components: + - type: Transform + pos: -85.5,-34.5 + parent: 2 + - uid: 23287 + components: + - type: Transform + pos: -92.5,-35.5 + parent: 2 + - uid: 23289 + components: + - type: Transform + pos: -92.5,-36.5 + parent: 2 + - uid: 23290 + components: + - type: Transform + pos: -84.5,-33.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + pos: -83.5,-33.5 + parent: 2 + - uid: 23292 + components: + - type: Transform + pos: -81.5,-33.5 + parent: 2 + - uid: 23293 + components: + - type: Transform + pos: -82.5,-33.5 + parent: 2 + - uid: 23294 + components: + - type: Transform + pos: -82.5,-34.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + pos: -82.5,-35.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + pos: -82.5,-36.5 + parent: 2 + - uid: 23298 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 23299 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 23300 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - uid: 23301 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 23302 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 23303 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 23304 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 23305 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 23306 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 23307 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 23308 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 23309 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 23310 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 23311 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 + - uid: 23312 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 23313 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 23314 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 23315 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 23316 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 23317 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 23318 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 23319 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 23320 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 23321 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 23322 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 23323 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 23324 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 23325 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 23326 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 23328 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 23329 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 23330 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 23331 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 23332 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 23333 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 23334 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 23335 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 23336 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 23337 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 23338 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 23339 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 23340 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 23341 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 23342 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 23343 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 23344 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 23345 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 23346 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 23347 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 23348 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 23349 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 23350 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 23351 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 23352 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 23353 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 23354 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 23355 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 23356 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 23357 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 23358 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 23359 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 23360 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 23361 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 23362 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 23363 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 23364 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 23365 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 23366 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 23367 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 23368 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 23369 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 23370 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 23371 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 23372 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 23373 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 23374 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 23375 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - uid: 23376 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 23377 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 23378 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 23379 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 23380 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 23381 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 23382 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 23383 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 23384 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 23385 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 23386 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 23387 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 23388 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 23389 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 23390 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 23391 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 23392 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 23393 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 23394 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 23395 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 23396 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 23397 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 23398 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 23399 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 23401 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 23402 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 23403 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 23404 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 23405 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 23406 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 23407 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 23408 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 23409 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 23410 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 23411 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 23412 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - uid: 23413 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 23414 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 23415 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 23416 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 23417 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 23418 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 23419 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 23420 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 23421 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 23422 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 23423 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 23424 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 23425 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 23426 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 23427 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 23428 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 23429 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 23430 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 23431 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 23432 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 23433 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 23434 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 23435 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 23436 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 23437 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 23438 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 23439 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 23440 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 23441 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 23442 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 23443 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 23444 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 23445 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 23446 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 23447 + components: + - type: Transform + pos: -38.5,14.5 + parent: 2 + - uid: 23448 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 23449 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 23450 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 23451 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 23452 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 23453 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 23454 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 23461 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 23462 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 23463 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 23464 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 23465 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 23466 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 23467 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 23468 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 + - uid: 23469 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 23470 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 23471 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 23472 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 23474 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 23475 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 23476 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 + - uid: 23477 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 + - uid: 23478 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 23479 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 23480 + components: + - type: Transform + pos: -29.5,12.5 + parent: 2 + - uid: 23481 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 23482 + components: + - type: Transform + pos: -28.5,11.5 + parent: 2 + - uid: 23483 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 23484 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 23485 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 23486 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 23487 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 23488 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 23489 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 23490 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 23491 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 23492 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 23493 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 23494 + components: + - type: Transform + pos: -58.5,3.5 + parent: 2 + - uid: 23495 + components: + - type: Transform + pos: -59.5,3.5 + parent: 2 + - uid: 23496 + components: + - type: Transform + pos: -60.5,3.5 + parent: 2 + - uid: 23497 + components: + - type: Transform + pos: -61.5,3.5 + parent: 2 + - uid: 23498 + components: + - type: Transform + pos: -62.5,3.5 + parent: 2 + - uid: 23499 + components: + - type: Transform + pos: -63.5,3.5 + parent: 2 + - uid: 23500 + components: + - type: Transform + pos: -64.5,3.5 + parent: 2 + - uid: 23501 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 23502 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 23503 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 23504 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 23505 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 23506 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 23507 + components: + - type: Transform + pos: -60.5,0.5 + parent: 2 + - uid: 23508 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - uid: 23509 + components: + - type: Transform + pos: -62.5,0.5 + parent: 2 + - uid: 23510 + components: + - type: Transform + pos: -63.5,0.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + pos: -64.5,0.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + pos: -64.5,-0.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + pos: -64.5,-1.5 + parent: 2 + - uid: 23514 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 + - uid: 23515 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 23518 + components: + - type: Transform + pos: -62.5,-1.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 23520 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 23521 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 23522 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + pos: -63.5,-1.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 23529 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + pos: -63.5,-3.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + pos: -57.5,-39.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + pos: -57.5,-40.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + pos: -57.5,-38.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + pos: -43.5,-50.5 + parent: 2 + - uid: 23544 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 23546 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 2 + - uid: 23547 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 + - uid: 23548 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 23549 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 23550 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 23551 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 23552 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 23553 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 23554 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 23555 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 23556 + components: + - type: Transform + pos: -32.5,-53.5 + parent: 2 + - uid: 23557 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 + - uid: 23558 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - uid: 23559 + components: + - type: Transform + pos: -27.5,-52.5 + parent: 2 + - uid: 23560 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 23561 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 + - uid: 23562 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - uid: 23563 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 + - uid: 23564 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 23565 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 23566 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 23567 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 23568 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 23569 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 23570 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 23571 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 23572 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 2 + - uid: 23573 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 23574 + components: + - type: Transform + pos: -20.5,-56.5 + parent: 2 + - uid: 23575 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 2 + - uid: 23576 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 2 + - uid: 23577 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 2 + - uid: 23578 + components: + - type: Transform + pos: -24.5,-56.5 + parent: 2 + - uid: 23579 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 23580 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 23581 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 23582 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 23583 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 23584 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 23585 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 23587 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 23588 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 23589 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 23590 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 23591 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 23592 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 23593 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 23594 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 23595 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 23596 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 23597 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - uid: 23598 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - uid: 23600 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 23601 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 23602 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 23603 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 23604 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 23606 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 23607 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 23609 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 23610 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 23611 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 2 + - uid: 23612 + components: + - type: Transform + pos: 43.5,-25.5 + parent: 2 + - uid: 23613 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 23614 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 23615 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 23616 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 23617 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 23618 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 23619 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 23620 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 23621 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 23622 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 23623 + components: + - type: Transform + pos: 37.5,-22.5 + parent: 2 + - uid: 23624 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 2 + - uid: 23625 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - uid: 23626 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 23627 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 23628 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - uid: 23629 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 + - uid: 23630 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 23631 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 23632 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 23633 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 23635 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 23636 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 + - uid: 23637 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 23638 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 23643 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - uid: 23644 + components: + - type: Transform + pos: 43.5,-20.5 + parent: 2 + - uid: 23645 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 23646 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 23647 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 23648 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 23649 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 2 + - uid: 23650 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 23652 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 23653 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 23658 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 23659 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 23660 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 + - uid: 23661 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 23663 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 23664 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 23666 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 23670 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 2 + - uid: 23678 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 23679 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 23680 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 23681 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 23682 + components: + - type: Transform + pos: 58.5,-10.5 + parent: 2 + - uid: 23683 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 23684 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 23685 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 23686 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 23687 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 23688 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 23689 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 23690 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 23693 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 23694 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 23695 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 23696 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 23697 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 23698 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 23699 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 23700 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 23701 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 23702 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 23703 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 23704 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 23705 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 23706 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 23707 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 23708 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 23709 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 23710 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 23711 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 23712 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 23713 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 23714 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 23715 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 23716 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 23717 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 23719 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 23720 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 23721 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 23722 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 23725 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 23726 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 23727 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 23728 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 23729 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 23730 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 23731 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 23732 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 23733 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 23734 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 23761 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 23762 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 23763 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 23764 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 23765 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 23766 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 23767 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 23768 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 23769 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 23770 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 23771 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 23772 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 23773 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 23774 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 23775 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 23776 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 23777 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 23778 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 23779 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 23780 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 23781 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 23782 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 23783 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 23784 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 23785 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 23786 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 23787 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 23788 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 23789 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 23790 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 23791 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 23792 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 23793 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 23794 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 23795 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 23796 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 23797 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 23798 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 23799 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 23800 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 23801 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 23802 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 23803 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 23804 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 23805 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 23806 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 23807 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 23808 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 23809 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 23810 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 23813 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 23814 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 23816 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 23817 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 23818 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 23819 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 23820 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - uid: 23821 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 23822 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 23823 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 23824 + components: + - type: Transform + pos: 49.5,3.5 + parent: 2 + - uid: 23825 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 23826 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 + - uid: 23827 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 23828 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 23829 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 23830 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 23831 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 23832 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 23833 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 23834 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 23835 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 23836 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - uid: 23838 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 23839 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 2 + - uid: 23840 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 23841 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 23848 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 23849 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - uid: 23850 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 23851 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 2 + - uid: 23854 + components: + - type: Transform + pos: 43.5,-27.5 + parent: 2 + - uid: 23855 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 23857 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 + - uid: 23859 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 23860 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 23861 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 23862 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 23863 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 2 + - uid: 23864 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 23865 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 23866 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 23867 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + pos: 43.5,-29.5 + parent: 2 + - uid: 23870 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 23872 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 23875 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 23877 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 23885 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 23886 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 23887 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 23888 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 23889 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 23890 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 23891 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 23892 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 23893 + components: + - type: Transform + pos: 53.5,1.5 + parent: 2 + - uid: 23894 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 23895 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 23896 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 23897 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 23898 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 2 + - uid: 23899 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 23900 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 23901 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 2 + - uid: 23902 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - uid: 23903 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 23904 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 23905 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 23906 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - uid: 23907 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 23908 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 23909 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 23910 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 23911 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 23912 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 23913 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 23914 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - uid: 23916 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 23917 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 23918 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 23919 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 23920 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 23921 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 23922 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 23923 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 23924 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 23925 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 23926 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 23929 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 23930 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 23931 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 23934 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 23935 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 23936 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 23937 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 23938 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 23939 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 23940 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 23941 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 23942 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 23943 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 23944 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 23945 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 23946 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 23947 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 23948 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 23949 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 23950 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 23951 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 23952 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 23953 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 23954 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 23955 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 23956 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 23957 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 23958 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 23959 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 23960 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 23961 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 23962 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 23963 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 23964 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 23965 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 23966 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 23967 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 23968 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 23969 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 23970 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 23971 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 23972 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 23973 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 23974 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 23975 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 23976 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 23977 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 23979 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 23981 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 23983 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 23984 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 23985 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 23986 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 + - uid: 23987 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 23988 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 23989 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 23990 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 23991 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 23992 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 23993 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 23994 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 23995 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 + - uid: 23996 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 23997 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 23998 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 23999 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 24000 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 24003 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 24004 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 24005 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 24006 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 24007 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 24008 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 24009 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 24010 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 24011 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 24012 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 24013 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 24014 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 24015 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 24016 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 24017 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 24018 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 24019 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 24023 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 24025 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 24026 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 24027 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 24028 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 24029 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 24037 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 24038 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 24048 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 24049 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 24050 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 24051 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 24052 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 24053 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 24054 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 24055 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 24056 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 24057 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 24060 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 24062 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 24064 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 24065 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 24066 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 24067 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 24068 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 24069 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 24070 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 24071 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 24072 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 24073 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 24074 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 24075 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 24076 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 24077 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 24078 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 24106 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 24107 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 24108 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 24109 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 24110 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 24111 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 24112 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 24113 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 24114 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 24115 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 24116 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 24117 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 24118 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 24119 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - uid: 24120 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 24121 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 24122 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 24123 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 24124 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 24125 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 24126 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 24127 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 24128 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 24129 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 24130 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 24131 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 24132 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 24133 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 24134 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 24135 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 24136 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 24137 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 24138 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 24140 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 24141 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 24142 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 24143 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 24144 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 24145 + components: + - type: Transform + pos: -1.5,11.5 + parent: 2 + - uid: 24146 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 24147 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 24148 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 24149 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 24150 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 24151 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 24152 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 24153 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 24154 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 24155 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 24156 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 24157 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 24158 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 24159 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 24160 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 24161 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 24162 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 24163 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 24164 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 24165 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 24166 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 24167 + components: + - type: Transform + pos: -14.5,10.5 + parent: 2 + - uid: 24168 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 + - uid: 24169 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 24170 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 24171 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 24172 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 24173 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 24176 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 24177 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 24178 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 24179 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 24180 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 24181 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 24182 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 24183 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 24184 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 24185 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 24186 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 24187 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 24188 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 24189 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 24190 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 24191 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 24192 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 24193 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 24194 + components: + - type: Transform + pos: 32.5,22.5 + parent: 2 + - uid: 24195 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - uid: 24196 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 24197 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 24198 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 24199 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 24200 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 24201 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 24202 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 24203 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 24204 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 24205 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 24206 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 24207 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 24208 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 24209 + components: + - type: Transform + pos: 33.5,33.5 + parent: 2 + - uid: 24210 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 24211 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 24212 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 24213 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 24214 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 24217 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 24218 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 24219 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 24220 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 24221 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - uid: 24222 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 24223 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 24224 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 24225 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 24226 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 24227 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 24228 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 24229 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 24230 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 24231 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 24232 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 24233 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 24234 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 24235 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 24236 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 24237 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 24238 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 24239 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 24240 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 24241 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 24242 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 24243 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 24244 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 24245 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 24246 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 24247 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 24248 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 24249 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 24250 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 24251 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 24252 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 24253 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 24254 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 24255 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 24256 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 24257 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 24258 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 24259 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 24260 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 24261 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 24262 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 24263 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 24264 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 24265 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 24266 + components: + - type: Transform + pos: 19.5,27.5 + parent: 2 + - uid: 24267 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 24268 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 24271 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 + - uid: 24272 + components: + - type: Transform + pos: 20.5,25.5 + parent: 2 + - uid: 24273 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - uid: 24274 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 24275 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 24276 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 24277 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 24278 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 24279 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 24280 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 24281 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 24282 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 24283 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 24284 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 24285 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 24286 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 24287 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - uid: 24288 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 24289 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 24290 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 24291 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 24292 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 24293 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 24294 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 24295 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 24296 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 24298 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 24299 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 24300 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 24301 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 24302 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 24303 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 24304 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 24307 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 24309 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 24310 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 24312 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 24313 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 24314 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 24315 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 24316 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 24317 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 24318 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 24319 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 24320 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 24321 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 24322 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 24323 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 24324 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 24325 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 24326 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 24327 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 24328 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 24329 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 24330 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 24331 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 24332 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 24333 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 24334 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 24335 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 24336 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 24337 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 24338 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 24339 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 24340 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 24341 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 24342 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 24343 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 24344 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 24345 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 24346 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 24347 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 24348 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 24349 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 24350 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 24351 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 24352 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 24353 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 24354 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 24355 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 24356 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - uid: 24357 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 24358 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 24359 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 24360 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 24361 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 24362 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 24363 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 24364 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 24365 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 24366 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 24367 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 24368 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 24369 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 24370 + components: + - type: Transform + pos: -48.5,12.5 + parent: 2 + - uid: 24371 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 24372 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 24373 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 24374 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 24375 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 24376 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 24377 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 24378 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 24379 + components: + - type: Transform + pos: -52.5,18.5 + parent: 2 + - uid: 24380 + components: + - type: Transform + pos: -53.5,18.5 + parent: 2 + - uid: 24382 + components: + - type: Transform + pos: -53.5,17.5 + parent: 2 + - uid: 24384 + components: + - type: Transform + pos: -53.5,16.5 + parent: 2 + - uid: 24385 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 24386 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 24387 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 24388 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 24389 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 24390 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 24391 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 + - uid: 24392 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 24393 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 24394 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 24395 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 24396 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 24397 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 24398 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 24399 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 24400 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 24401 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 24402 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 24403 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 24404 + components: + - type: Transform + pos: -67.5,5.5 + parent: 2 + - uid: 24405 + components: + - type: Transform + pos: -67.5,4.5 + parent: 2 + - uid: 24406 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 + - uid: 24407 + components: + - type: Transform + pos: -67.5,2.5 + parent: 2 + - uid: 24408 + components: + - type: Transform + pos: -67.5,1.5 + parent: 2 + - uid: 24409 + components: + - type: Transform + pos: -67.5,0.5 + parent: 2 + - uid: 24410 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 24411 + components: + - type: Transform + pos: -67.5,-1.5 + parent: 2 + - uid: 24412 + components: + - type: Transform + pos: -69.5,5.5 + parent: 2 + - uid: 24413 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 24414 + components: + - type: Transform + pos: -68.5,-1.5 + parent: 2 + - uid: 24415 + components: + - type: Transform + pos: -68.5,-3.5 + parent: 2 + - uid: 24416 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 24417 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 24418 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 24419 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 24420 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 24421 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 24422 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 24423 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 24424 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 24425 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 24426 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 24427 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 24428 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 24429 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 24430 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 24431 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 24432 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 24433 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 24434 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 24435 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 24436 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 24437 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 24438 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 24439 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 24440 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 24441 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 24442 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 24443 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 24444 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 24445 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 24446 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 24447 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 24448 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 24449 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 24450 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 24451 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 24452 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 24453 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 24454 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 24455 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 24456 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 24457 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 24458 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 24465 + components: + - type: Transform + pos: -63.5,-40.5 + parent: 2 + - uid: 24466 + components: + - type: Transform + pos: -62.5,-40.5 + parent: 2 + - uid: 24467 + components: + - type: Transform + pos: -61.5,-40.5 + parent: 2 + - uid: 24468 + components: + - type: Transform + pos: -62.5,-39.5 + parent: 2 + - uid: 24469 + components: + - type: Transform + pos: -62.5,-38.5 + parent: 2 + - uid: 24470 + components: + - type: Transform + pos: -62.5,-25.5 + parent: 2 + - uid: 24471 + components: + - type: Transform + pos: -62.5,-26.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 2 + - uid: 24473 + components: + - type: Transform + pos: -63.5,-27.5 + parent: 2 + - uid: 24474 + components: + - type: Transform + pos: -63.5,-28.5 + parent: 2 + - uid: 24475 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 24476 + components: + - type: Transform + pos: -63.5,-30.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: -63.5,-31.5 + parent: 2 + - uid: 24478 + components: + - type: Transform + pos: -63.5,-32.5 + parent: 2 + - uid: 24479 + components: + - type: Transform + pos: -62.5,-32.5 + parent: 2 + - uid: 24480 + components: + - type: Transform + pos: -61.5,-27.5 + parent: 2 + - uid: 24481 + components: + - type: Transform + pos: -62.5,-27.5 + parent: 2 + - uid: 24482 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 2 + - uid: 24483 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 24484 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 24485 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 2 + - uid: 24486 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 24487 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - uid: 24488 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 24489 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 24490 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 24491 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 2 + - uid: 24492 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 24493 + components: + - type: Transform + pos: -51.5,-26.5 + parent: 2 + - uid: 24494 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 24495 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 24496 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 24497 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 24499 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 24500 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 24501 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 24502 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 24503 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 24504 + components: + - type: Transform + pos: -48.5,-32.5 + parent: 2 + - uid: 24505 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 2 + - uid: 24507 + components: + - type: Transform + pos: -53.5,-42.5 + parent: 2 + - uid: 24508 + components: + - type: Transform + pos: -53.5,-43.5 + parent: 2 + - uid: 24509 + components: + - type: Transform + pos: -55.5,-43.5 + parent: 2 + - uid: 24510 + components: + - type: Transform + pos: -54.5,-43.5 + parent: 2 + - uid: 24511 + components: + - type: Transform + pos: -55.5,-44.5 + parent: 2 + - uid: 24512 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 24513 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 24514 + components: + - type: Transform + pos: -55.5,-47.5 + parent: 2 + - uid: 24515 + components: + - type: Transform + pos: -52.5,-43.5 + parent: 2 + - uid: 24516 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 24517 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 24518 + components: + - type: Transform + pos: -51.5,-41.5 + parent: 2 + - uid: 24519 + components: + - type: Transform + pos: -51.5,-40.5 + parent: 2 + - uid: 24520 + components: + - type: Transform + pos: -51.5,-39.5 + parent: 2 + - uid: 24521 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 24522 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - uid: 24523 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - uid: 24524 + components: + - type: Transform + pos: -52.5,-44.5 + parent: 2 + - uid: 24525 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - uid: 24526 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 24527 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 + - uid: 24528 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - uid: 24529 + components: + - type: Transform + pos: -52.5,-49.5 + parent: 2 + - uid: 24530 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - uid: 24531 + components: + - type: Transform + pos: -51.5,-50.5 + parent: 2 + - uid: 24532 + components: + - type: Transform + pos: -50.5,-50.5 + parent: 2 + - uid: 24533 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 + - uid: 24542 + components: + - type: Transform + pos: -53.5,-52.5 + parent: 2 + - uid: 24544 + components: + - type: Transform + pos: -54.5,-52.5 + parent: 2 + - uid: 24545 + components: + - type: Transform + pos: -55.5,-52.5 + parent: 2 + - uid: 24546 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 24548 + components: + - type: Transform + pos: -9.5,40.5 + parent: 2 + - uid: 24549 + components: + - type: Transform + pos: -55.5,-50.5 + parent: 2 + - uid: 24550 + components: + - type: Transform + pos: -54.5,-50.5 + parent: 2 + - uid: 24551 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 + - uid: 24552 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 24553 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 + - uid: 24554 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 24555 + components: + - type: Transform + pos: -64.5,-24.5 + parent: 2 + - uid: 24556 + components: + - type: Transform + pos: -65.5,-24.5 + parent: 2 + - uid: 24557 + components: + - type: Transform + pos: -66.5,-24.5 + parent: 2 + - uid: 24558 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - uid: 24559 + components: + - type: Transform + pos: -66.5,-22.5 + parent: 2 + - uid: 24560 + components: + - type: Transform + pos: -66.5,-21.5 + parent: 2 + - uid: 24561 + components: + - type: Transform + pos: -66.5,-20.5 + parent: 2 + - uid: 24562 + components: + - type: Transform + pos: -67.5,-20.5 + parent: 2 + - uid: 24563 + components: + - type: Transform + pos: -68.5,-20.5 + parent: 2 + - uid: 24564 + components: + - type: Transform + pos: -69.5,-20.5 + parent: 2 + - uid: 24565 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 2 + - uid: 24566 + components: + - type: Transform + pos: -69.5,-17.5 + parent: 2 + - uid: 24567 + components: + - type: Transform + pos: -69.5,-16.5 + parent: 2 + - uid: 24568 + components: + - type: Transform + pos: -69.5,-15.5 + parent: 2 + - uid: 24569 + components: + - type: Transform + pos: -68.5,-15.5 + parent: 2 + - uid: 24570 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 24571 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 24572 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 24573 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 24574 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - uid: 24575 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 24576 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 24577 + components: + - type: Transform + pos: -65.5,-10.5 + parent: 2 + - uid: 24578 + components: + - type: Transform + pos: -66.5,-10.5 + parent: 2 + - uid: 24579 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 24580 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 + - uid: 24581 + components: + - type: Transform + pos: -64.5,-11.5 + parent: 2 + - uid: 24582 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 24583 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 24588 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 24589 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 24590 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 24591 + components: + - type: Transform + pos: -14.5,-70.5 + parent: 2 + - uid: 24592 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - uid: 24593 + components: + - type: Transform + pos: -14.5,-72.5 + parent: 2 + - uid: 24594 + components: + - type: Transform + pos: -14.5,-73.5 + parent: 2 + - uid: 24595 + components: + - type: Transform + pos: -14.5,-74.5 + parent: 2 + - uid: 24596 + components: + - type: Transform + pos: -14.5,-75.5 + parent: 2 + - uid: 24597 + components: + - type: Transform + pos: -14.5,-76.5 + parent: 2 + - uid: 24598 + components: + - type: Transform + pos: -15.5,-76.5 + parent: 2 + - uid: 24599 + components: + - type: Transform + pos: -16.5,-76.5 + parent: 2 + - uid: 24600 + components: + - type: Transform + pos: -17.5,-76.5 + parent: 2 + - uid: 24601 + components: + - type: Transform + pos: -18.5,-76.5 + parent: 2 + - uid: 24602 + components: + - type: Transform + pos: -19.5,-76.5 + parent: 2 + - uid: 24603 + components: + - type: Transform + pos: -19.5,-75.5 + parent: 2 + - uid: 24604 + components: + - type: Transform + pos: -19.5,-74.5 + parent: 2 + - uid: 24605 + components: + - type: Transform + pos: -19.5,-73.5 + parent: 2 + - uid: 24606 + components: + - type: Transform + pos: -19.5,-72.5 + parent: 2 + - uid: 24607 + components: + - type: Transform + pos: -19.5,-71.5 + parent: 2 + - uid: 24608 + components: + - type: Transform + pos: -19.5,-70.5 + parent: 2 + - uid: 24609 + components: + - type: Transform + pos: -19.5,-69.5 + parent: 2 + - uid: 24610 + components: + - type: Transform + pos: -19.5,-68.5 + parent: 2 + - uid: 24611 + components: + - type: Transform + pos: -19.5,-67.5 + parent: 2 + - uid: 24612 + components: + - type: Transform + pos: -18.5,-67.5 + parent: 2 + - uid: 24613 + components: + - type: Transform + pos: -17.5,-67.5 + parent: 2 + - uid: 24614 + components: + - type: Transform + pos: -16.5,-67.5 + parent: 2 + - uid: 24615 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 24616 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - uid: 24617 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 24618 + components: + - type: Transform + pos: -14.5,-66.5 + parent: 2 + - uid: 24619 + components: + - type: Transform + pos: -14.5,-65.5 + parent: 2 + - uid: 24620 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 24621 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 24622 + components: + - type: Transform + pos: -11.5,-65.5 + parent: 2 + - uid: 24623 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 2 + - uid: 24624 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 + - uid: 24625 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 24626 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - uid: 24627 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 24628 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 24629 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - uid: 24630 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 2 + - uid: 24631 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 2 + - uid: 24632 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 2 + - uid: 24633 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - uid: 24634 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 24635 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 24636 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - uid: 24637 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 24638 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 24639 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 24640 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - uid: 24641 + components: + - type: Transform + pos: -0.5,-64.5 + parent: 2 + - uid: 24642 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 24643 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 + - uid: 24644 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 2 + - uid: 24645 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 24646 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 24647 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 24648 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 24649 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 24650 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 24651 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 24652 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 24653 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 24654 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 24655 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 24656 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 2 + - uid: 24657 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - uid: 24658 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 2 + - uid: 24659 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 2 + - uid: 24660 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 24661 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 24662 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 24663 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - uid: 24664 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 2 + - uid: 24665 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - uid: 24668 + components: + - type: Transform + pos: -13.5,-70.5 + parent: 2 + - uid: 24673 + components: + - type: Transform + pos: -12.5,-70.5 + parent: 2 + - uid: 24674 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 24675 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 2 + - uid: 24676 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 24677 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 24678 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - uid: 24679 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 24680 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 24681 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 24682 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 24683 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 24684 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 24685 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 24686 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 24687 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 24688 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 24689 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 24690 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 24691 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 24692 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 24693 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 24694 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - uid: 24695 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 24696 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 24697 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 24698 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 24699 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 24701 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 24704 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 24705 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 24706 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 24707 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 24708 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 + - uid: 24709 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 + - uid: 24710 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 24711 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - uid: 24712 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 24713 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 24714 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 24758 + components: + - type: Transform + pos: 18.5,-72.5 + parent: 2 + - uid: 24870 + components: + - type: Transform + pos: -18.5,-30.5 + parent: 2 + - uid: 24894 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 24895 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 24896 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 24897 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 24898 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 24899 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 24900 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 24935 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 26496 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 2 + - uid: 26497 + components: + - type: Transform + pos: 18.5,-62.5 + parent: 2 + - uid: 26664 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 26701 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 2 + - uid: 26710 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 26711 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 26712 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 26713 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 26714 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 26715 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 26716 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 26717 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 26718 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 26719 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 26720 + components: + - type: Transform + pos: -17.5,-35.5 + parent: 2 + - uid: 26721 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 26722 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 26723 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 26724 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 26725 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 26726 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - uid: 26727 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 26728 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 26729 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 26730 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 26731 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 26732 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 26733 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 26734 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 26735 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 26736 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 26737 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 26738 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 26739 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 26740 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 26741 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 26742 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 26743 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 26744 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 26771 + components: + - type: Transform + pos: 48.5,-34.5 + parent: 2 + - uid: 26782 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 26783 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 2 + - uid: 26784 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 2 + - uid: 26785 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 2 + - uid: 26869 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 26870 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 26871 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 26872 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 26873 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 26874 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 26918 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 2 + - uid: 27210 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 2 + - uid: 27211 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 2 + - uid: 27212 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 27213 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - uid: 27214 + components: + - type: Transform + pos: -65.5,47.5 + parent: 2 + - uid: 27430 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 27506 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 27507 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 27508 + components: + - type: Transform + pos: -47.5,-46.5 + parent: 2 + - uid: 27509 + components: + - type: Transform + pos: -46.5,-46.5 + parent: 2 + - uid: 27510 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - uid: 27511 + components: + - type: Transform + pos: -44.5,-34.5 + parent: 2 + - uid: 27512 + components: + - type: Transform + pos: -44.5,-35.5 + parent: 2 + - uid: 27513 + components: + - type: Transform + pos: -44.5,-36.5 + parent: 2 + - uid: 27514 + components: + - type: Transform + pos: -44.5,-37.5 + parent: 2 + - uid: 27515 + components: + - type: Transform + pos: -44.5,-38.5 + parent: 2 + - uid: 27516 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - uid: 27517 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 27518 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 27519 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 27520 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 27521 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 27522 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 27523 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 27524 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 27525 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - uid: 27526 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 27527 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 27528 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 27529 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 27530 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 27531 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 27532 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 27533 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 27534 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 27535 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 27536 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 27537 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 27538 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 27539 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 27540 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 27541 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 27542 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - uid: 27543 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 27544 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 27545 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 27684 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 28248 + components: + - type: Transform + pos: -53.5,52.5 + parent: 2 + - uid: 28249 + components: + - type: Transform + pos: -53.5,51.5 + parent: 2 + - uid: 28250 + components: + - type: Transform + pos: -54.5,51.5 + parent: 2 + - uid: 28251 + components: + - type: Transform + pos: -55.5,51.5 + parent: 2 + - uid: 28252 + components: + - type: Transform + pos: -55.5,50.5 + parent: 2 + - uid: 28253 + components: + - type: Transform + pos: -55.5,49.5 + parent: 2 + - uid: 28254 + components: + - type: Transform + pos: -55.5,48.5 + parent: 2 + - uid: 28255 + components: + - type: Transform + pos: -55.5,47.5 + parent: 2 + - uid: 28256 + components: + - type: Transform + pos: -55.5,46.5 + parent: 2 + - uid: 28257 + components: + - type: Transform + pos: -55.5,45.5 + parent: 2 + - uid: 28258 + components: + - type: Transform + pos: -55.5,44.5 + parent: 2 + - uid: 28259 + components: + - type: Transform + pos: -56.5,46.5 + parent: 2 + - uid: 28260 + components: + - type: Transform + pos: -56.5,46.5 + parent: 2 + - uid: 28261 + components: + - type: Transform + pos: -57.5,46.5 + parent: 2 + - uid: 28262 + components: + - type: Transform + pos: -58.5,46.5 + parent: 2 + - uid: 28263 + components: + - type: Transform + pos: -59.5,46.5 + parent: 2 + - uid: 28264 + components: + - type: Transform + pos: -60.5,46.5 + parent: 2 + - uid: 28265 + components: + - type: Transform + pos: -61.5,46.5 + parent: 2 + - uid: 28266 + components: + - type: Transform + pos: -62.5,46.5 + parent: 2 + - uid: 28267 + components: + - type: Transform + pos: -63.5,46.5 + parent: 2 + - uid: 28268 + components: + - type: Transform + pos: -64.5,46.5 + parent: 2 + - uid: 28269 + components: + - type: Transform + pos: -65.5,46.5 + parent: 2 + - uid: 28270 + components: + - type: Transform + pos: -66.5,46.5 + parent: 2 + - uid: 28271 + components: + - type: Transform + pos: -56.5,44.5 + parent: 2 + - uid: 28272 + components: + - type: Transform + pos: -57.5,44.5 + parent: 2 + - uid: 28273 + components: + - type: Transform + pos: -58.5,44.5 + parent: 2 + - uid: 28274 + components: + - type: Transform + pos: -59.5,44.5 + parent: 2 + - uid: 28275 + components: + - type: Transform + pos: -60.5,44.5 + parent: 2 + - uid: 28276 + components: + - type: Transform + pos: -61.5,44.5 + parent: 2 + - uid: 28277 + components: + - type: Transform + pos: -62.5,44.5 + parent: 2 + - uid: 28278 + components: + - type: Transform + pos: -63.5,44.5 + parent: 2 + - uid: 28279 + components: + - type: Transform + pos: -64.5,44.5 + parent: 2 + - uid: 28280 + components: + - type: Transform + pos: -65.5,44.5 + parent: 2 + - uid: 28281 + components: + - type: Transform + pos: -66.5,44.5 + parent: 2 + - uid: 28282 + components: + - type: Transform + pos: -67.5,44.5 + parent: 2 + - uid: 28283 + components: + - type: Transform + pos: -67.5,46.5 + parent: 2 + - uid: 28284 + components: + - type: Transform + pos: -72.5,55.5 + parent: 2 + - uid: 28285 + components: + - type: Transform + pos: -65.5,49.5 + parent: 2 + - uid: 28288 + components: + - type: Transform + pos: -64.5,49.5 + parent: 2 + - uid: 28289 + components: + - type: Transform + pos: -63.5,49.5 + parent: 2 + - uid: 28290 + components: + - type: Transform + pos: -62.5,49.5 + parent: 2 + - uid: 28291 + components: + - type: Transform + pos: -61.5,49.5 + parent: 2 + - uid: 28292 + components: + - type: Transform + pos: -60.5,49.5 + parent: 2 + - uid: 28293 + components: + - type: Transform + pos: -59.5,49.5 + parent: 2 + - uid: 28294 + components: + - type: Transform + pos: -71.5,55.5 + parent: 2 + - uid: 28295 + components: + - type: Transform + pos: -57.5,49.5 + parent: 2 + - uid: 28297 + components: + - type: Transform + pos: -65.5,50.5 + parent: 2 + - uid: 28298 + components: + - type: Transform + pos: -65.5,51.5 + parent: 2 + - uid: 28299 + components: + - type: Transform + pos: -64.5,51.5 + parent: 2 + - uid: 28300 + components: + - type: Transform + pos: -63.5,51.5 + parent: 2 + - uid: 28301 + components: + - type: Transform + pos: -62.5,51.5 + parent: 2 + - uid: 28302 + components: + - type: Transform + pos: -61.5,51.5 + parent: 2 + - uid: 28303 + components: + - type: Transform + pos: -60.5,51.5 + parent: 2 + - uid: 28304 + components: + - type: Transform + pos: -59.5,51.5 + parent: 2 + - uid: 28305 + components: + - type: Transform + pos: -58.5,51.5 + parent: 2 + - uid: 28306 + components: + - type: Transform + pos: -57.5,51.5 + parent: 2 + - uid: 28310 + components: + - type: Transform + pos: -71.5,54.5 + parent: 2 + - uid: 28311 + components: + - type: Transform + pos: -71.5,53.5 + parent: 2 + - uid: 28312 + components: + - type: Transform + pos: -71.5,52.5 + parent: 2 + - uid: 28313 + components: + - type: Transform + pos: -71.5,51.5 + parent: 2 + - uid: 28314 + components: + - type: Transform + pos: -71.5,50.5 + parent: 2 + - uid: 28315 + components: + - type: Transform + pos: -71.5,49.5 + parent: 2 + - uid: 28316 + components: + - type: Transform + pos: -70.5,49.5 + parent: 2 + - uid: 28317 + components: + - type: Transform + pos: -69.5,49.5 + parent: 2 + - uid: 28318 + components: + - type: Transform + pos: -68.5,49.5 + parent: 2 + - uid: 28319 + components: + - type: Transform + pos: -67.5,49.5 + parent: 2 + - uid: 28320 + components: + - type: Transform + pos: -66.5,49.5 + parent: 2 + - uid: 28321 + components: + - type: Transform + pos: -65.5,52.5 + parent: 2 + - uid: 28322 + components: + - type: Transform + pos: -65.5,53.5 + parent: 2 + - uid: 28323 + components: + - type: Transform + pos: -64.5,53.5 + parent: 2 + - uid: 28324 + components: + - type: Transform + pos: -63.5,53.5 + parent: 2 + - uid: 28325 + components: + - type: Transform + pos: -62.5,53.5 + parent: 2 + - uid: 28326 + components: + - type: Transform + pos: -68.5,53.5 + parent: 2 + - uid: 28327 + components: + - type: Transform + pos: -67.5,53.5 + parent: 2 + - uid: 28328 + components: + - type: Transform + pos: -66.5,53.5 + parent: 2 + - uid: 28329 + components: + - type: Transform + pos: -68.5,55.5 + parent: 2 + - uid: 28330 + components: + - type: Transform + pos: -67.5,55.5 + parent: 2 + - uid: 28331 + components: + - type: Transform + pos: -66.5,55.5 + parent: 2 + - uid: 28332 + components: + - type: Transform + pos: -65.5,55.5 + parent: 2 + - uid: 28333 + components: + - type: Transform + pos: -64.5,55.5 + parent: 2 + - uid: 28334 + components: + - type: Transform + pos: -63.5,55.5 + parent: 2 + - uid: 28335 + components: + - type: Transform + pos: -62.5,55.5 + parent: 2 + - uid: 28336 + components: + - type: Transform + pos: -66.5,54.5 + parent: 2 + - uid: 28337 + components: + - type: Transform + pos: -62.5,57.5 + parent: 2 + - uid: 28338 + components: + - type: Transform + pos: -63.5,57.5 + parent: 2 + - uid: 28339 + components: + - type: Transform + pos: -64.5,57.5 + parent: 2 + - uid: 28340 + components: + - type: Transform + pos: -65.5,57.5 + parent: 2 + - uid: 28341 + components: + - type: Transform + pos: -66.5,57.5 + parent: 2 + - uid: 28342 + components: + - type: Transform + pos: -67.5,57.5 + parent: 2 + - uid: 28343 + components: + - type: Transform + pos: -68.5,57.5 + parent: 2 + - uid: 28344 + components: + - type: Transform + pos: -65.5,56.5 + parent: 2 + - uid: 28345 + components: + - type: Transform + pos: -62.5,59.5 + parent: 2 + - uid: 28346 + components: + - type: Transform + pos: -63.5,59.5 + parent: 2 + - uid: 28347 + components: + - type: Transform + pos: -64.5,59.5 + parent: 2 + - uid: 28348 + components: + - type: Transform + pos: -65.5,59.5 + parent: 2 + - uid: 28349 + components: + - type: Transform + pos: -66.5,59.5 + parent: 2 + - uid: 28350 + components: + - type: Transform + pos: -67.5,59.5 + parent: 2 + - uid: 28351 + components: + - type: Transform + pos: -68.5,59.5 + parent: 2 + - uid: 28352 + components: + - type: Transform + pos: -69.5,59.5 + parent: 2 + - uid: 28353 + components: + - type: Transform + pos: -70.5,59.5 + parent: 2 + - uid: 28354 + components: + - type: Transform + pos: -71.5,59.5 + parent: 2 + - uid: 28355 + components: + - type: Transform + pos: -66.5,58.5 + parent: 2 + - uid: 28356 + components: + - type: Transform + pos: -62.5,61.5 + parent: 2 + - uid: 28357 + components: + - type: Transform + pos: -63.5,61.5 + parent: 2 + - uid: 28358 + components: + - type: Transform + pos: -64.5,61.5 + parent: 2 + - uid: 28359 + components: + - type: Transform + pos: -65.5,61.5 + parent: 2 + - uid: 28360 + components: + - type: Transform + pos: -63.5,60.5 + parent: 2 + - uid: 28363 + components: + - type: Transform + pos: -74.5,52.5 + parent: 2 + - uid: 28364 + components: + - type: Transform + pos: -74.5,51.5 + parent: 2 + - uid: 28365 + components: + - type: Transform + pos: -74.5,50.5 + parent: 2 + - uid: 28366 + components: + - type: Transform + pos: -74.5,49.5 + parent: 2 + - uid: 28367 + components: + - type: Transform + pos: -74.5,48.5 + parent: 2 + - uid: 28369 + components: + - type: Transform + pos: -75.5,50.5 + parent: 2 + - uid: 28371 + components: + - type: Transform + pos: -76.5,51.5 + parent: 2 + - uid: 28372 + components: + - type: Transform + pos: -76.5,50.5 + parent: 2 + - uid: 28373 + components: + - type: Transform + pos: -76.5,49.5 + parent: 2 + - uid: 28374 + components: + - type: Transform + pos: -76.5,48.5 + parent: 2 + - uid: 28376 + components: + - type: Transform + pos: -77.5,48.5 + parent: 2 + - uid: 28377 + components: + - type: Transform + pos: -78.5,48.5 + parent: 2 + - uid: 28378 + components: + - type: Transform + pos: -79.5,48.5 + parent: 2 + - uid: 28379 + components: + - type: Transform + pos: -80.5,48.5 + parent: 2 + - uid: 28380 + components: + - type: Transform + pos: -81.5,48.5 + parent: 2 + - uid: 28381 + components: + - type: Transform + pos: -81.5,49.5 + parent: 2 + - uid: 28382 + components: + - type: Transform + pos: -81.5,50.5 + parent: 2 + - uid: 28383 + components: + - type: Transform + pos: -81.5,51.5 + parent: 2 + - uid: 28385 + components: + - type: Transform + pos: -79.5,49.5 + parent: 2 + - uid: 28386 + components: + - type: Transform + pos: -79.5,50.5 + parent: 2 + - uid: 28387 + components: + - type: Transform + pos: -79.5,51.5 + parent: 2 + - uid: 28389 + components: + - type: Transform + pos: -75.5,48.5 + parent: 2 + - uid: 28391 + components: + - type: Transform + pos: -75.5,47.5 + parent: 2 + - uid: 28392 + components: + - type: Transform + pos: -75.5,46.5 + parent: 2 + - uid: 28393 + components: + - type: Transform + pos: -75.5,45.5 + parent: 2 + - uid: 28394 + components: + - type: Transform + pos: -75.5,44.5 + parent: 2 + - uid: 28395 + components: + - type: Transform + pos: -75.5,43.5 + parent: 2 + - uid: 28397 + components: + - type: Transform + pos: -77.5,57.5 + parent: 2 + - uid: 28398 + components: + - type: Transform + pos: -76.5,57.5 + parent: 2 + - uid: 28399 + components: + - type: Transform + pos: -75.5,57.5 + parent: 2 + - uid: 28400 + components: + - type: Transform + pos: -74.5,57.5 + parent: 2 + - uid: 28401 + components: + - type: Transform + pos: -73.5,57.5 + parent: 2 + - uid: 28402 + components: + - type: Transform + pos: -73.5,58.5 + parent: 2 + - uid: 28403 + components: + - type: Transform + pos: -73.5,59.5 + parent: 2 + - uid: 28404 + components: + - type: Transform + pos: -73.5,60.5 + parent: 2 + - uid: 28407 + components: + - type: Transform + pos: -74.5,60.5 + parent: 2 + - uid: 28409 + components: + - type: Transform + pos: -76.5,60.5 + parent: 2 + - uid: 28410 + components: + - type: Transform + pos: -76.5,59.5 + parent: 2 + - uid: 28411 + components: + - type: Transform + pos: -77.5,59.5 + parent: 2 + - uid: 28412 + components: + - type: Transform + pos: -78.5,59.5 + parent: 2 + - uid: 28413 + components: + - type: Transform + pos: -79.5,59.5 + parent: 2 + - uid: 28414 + components: + - type: Transform + pos: -80.5,59.5 + parent: 2 + - uid: 28416 + components: + - type: Transform + pos: -75.5,56.5 + parent: 2 + - uid: 28419 + components: + - type: Transform + pos: -75.5,55.5 + parent: 2 + - uid: 28420 + components: + - type: Transform + pos: -75.5,54.5 + parent: 2 + - uid: 28421 + components: + - type: Transform + pos: -75.5,53.5 + parent: 2 + - uid: 28422 + components: + - type: Transform + pos: -76.5,54.5 + parent: 2 + - uid: 28423 + components: + - type: Transform + pos: -77.5,54.5 + parent: 2 + - uid: 28424 + components: + - type: Transform + pos: -74.5,54.5 + parent: 2 + - uid: 28425 + components: + - type: Transform + pos: -73.5,54.5 + parent: 2 + - uid: 28426 + components: + - type: Transform + pos: -72.5,54.5 + parent: 2 + - uid: 28763 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 28914 + components: + - type: Transform + pos: 36.5,-70.5 + parent: 2 + - uid: 28915 + components: + - type: Transform + pos: 36.5,-69.5 + parent: 2 + - uid: 28916 + components: + - type: Transform + pos: 36.5,-68.5 + parent: 2 + - uid: 28917 + components: + - type: Transform + pos: 36.5,-67.5 + parent: 2 + - uid: 28918 + components: + - type: Transform + pos: 37.5,-68.5 + parent: 2 + - uid: 28919 + components: + - type: Transform + pos: 38.5,-69.5 + parent: 2 + - uid: 28920 + components: + - type: Transform + pos: 38.5,-68.5 + parent: 2 + - uid: 28921 + components: + - type: Transform + pos: 38.5,-67.5 + parent: 2 + - uid: 28922 + components: + - type: Transform + pos: 39.5,-68.5 + parent: 2 + - uid: 28923 + components: + - type: Transform + pos: 40.5,-68.5 + parent: 2 + - uid: 28924 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 28928 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 28934 + components: + - type: Transform + pos: -29.5,14.5 + parent: 2 + - uid: 28935 + components: + - type: Transform + pos: -31.5,14.5 + parent: 2 + - uid: 29041 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 29045 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 + - uid: 29046 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - uid: 29047 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 29048 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 29049 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 29050 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 29051 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 29052 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 29053 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 29054 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 29055 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 29056 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 29057 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 29058 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 29059 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 29060 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - uid: 29061 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 29062 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 29063 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 29064 + components: + - type: Transform + pos: -10.5,44.5 + parent: 2 + - uid: 29065 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 29066 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 29067 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 29068 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 29069 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 29070 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 29071 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 29072 + components: + - type: Transform + pos: -8.5,47.5 + parent: 2 + - uid: 29073 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 29074 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 29075 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 29076 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 29077 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 29078 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 29079 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - uid: 29080 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 + - uid: 29081 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 29082 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 29083 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 29084 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - uid: 29085 + components: + - type: Transform + pos: 0.5,45.5 + parent: 2 + - uid: 29086 + components: + - type: Transform + pos: 1.5,45.5 + parent: 2 + - uid: 29087 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 29088 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 29089 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 29090 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 29091 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - uid: 29092 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - uid: 29093 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 29094 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 29095 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 29096 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 29097 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 29098 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - uid: 29099 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 29100 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 29101 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 29102 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 29103 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 29104 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 29105 + components: + - type: Transform + pos: -7.5,55.5 + parent: 2 + - uid: 29106 + components: + - type: Transform + pos: -7.5,56.5 + parent: 2 + - uid: 29107 + components: + - type: Transform + pos: -7.5,57.5 + parent: 2 + - uid: 29108 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 29109 + components: + - type: Transform + pos: -3.5,49.5 + parent: 2 + - uid: 29110 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 29111 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 29112 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - uid: 29113 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 29114 + components: + - type: Transform + pos: -1.5,51.5 + parent: 2 + - uid: 29115 + components: + - type: Transform + pos: -1.5,52.5 + parent: 2 + - uid: 29116 + components: + - type: Transform + pos: -1.5,53.5 + parent: 2 + - uid: 29117 + components: + - type: Transform + pos: -1.5,54.5 + parent: 2 + - uid: 29118 + components: + - type: Transform + pos: -1.5,55.5 + parent: 2 + - uid: 29119 + components: + - type: Transform + pos: -1.5,56.5 + parent: 2 + - uid: 29120 + components: + - type: Transform + pos: -1.5,57.5 + parent: 2 + - uid: 29121 + components: + - type: Transform + pos: -6.5,57.5 + parent: 2 + - uid: 29122 + components: + - type: Transform + pos: -5.5,57.5 + parent: 2 + - uid: 29123 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 29124 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 29125 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 29126 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 + - uid: 29127 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 + - uid: 29128 + components: + - type: Transform + pos: -2.5,53.5 + parent: 2 + - uid: 29129 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 29130 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - uid: 29131 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 29132 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 29136 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 29137 + components: + - type: Transform + pos: 53.5,4.5 + parent: 2 + - uid: 29138 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 29262 + components: + - type: Transform + pos: -56.5,-51.5 + parent: 2 + - uid: 29386 + components: + - type: Transform + pos: -26.5,-75.5 + parent: 2 + - uid: 29387 + components: + - type: Transform + pos: -25.5,-75.5 + parent: 2 + - uid: 29388 + components: + - type: Transform + pos: -24.5,-75.5 + parent: 2 + - uid: 29389 + components: + - type: Transform + pos: -23.5,-75.5 + parent: 2 + - uid: 29390 + components: + - type: Transform + pos: -22.5,-75.5 + parent: 2 + - uid: 29391 + components: + - type: Transform + pos: -21.5,-75.5 + parent: 2 + - uid: 29392 + components: + - type: Transform + pos: -20.5,-75.5 + parent: 2 + - uid: 29395 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 29396 + components: + - type: Transform + pos: -21.5,-68.5 + parent: 2 + - uid: 29397 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 29398 + components: + - type: Transform + pos: -23.5,-68.5 + parent: 2 + - uid: 29399 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 29400 + components: + - type: Transform + pos: -25.5,-68.5 + parent: 2 + - uid: 29401 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 29760 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 29761 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 29762 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 29763 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 + - uid: 29764 + components: + - type: Transform + pos: -39.5,26.5 + parent: 2 + - uid: 29765 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 29766 + components: + - type: Transform + pos: -40.5,25.5 + parent: 2 + - uid: 29767 + components: + - type: Transform + pos: -40.5,24.5 + parent: 2 + - uid: 29768 + components: + - type: Transform + pos: -40.5,23.5 + parent: 2 + - uid: 29769 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 29770 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 + - uid: 29771 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 29772 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 29773 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 29774 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 + - uid: 29775 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 + - uid: 29776 + components: + - type: Transform + pos: -35.5,22.5 + parent: 2 + - uid: 29777 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - uid: 29778 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 29779 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 29780 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 29781 + components: + - type: Transform + pos: -37.5,19.5 + parent: 2 + - uid: 29782 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 29783 + components: + - type: Transform + pos: -36.5,22.5 + parent: 2 + - uid: 29784 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - uid: 29785 + components: + - type: Transform + pos: -36.5,24.5 + parent: 2 + - uid: 29786 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 + - uid: 29787 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - uid: 29788 + components: + - type: Transform + pos: -42.5,22.5 + parent: 2 + - uid: 29789 + components: + - type: Transform + pos: -41.5,24.5 + parent: 2 + - uid: 29790 + components: + - type: Transform + pos: -42.5,24.5 + parent: 2 + - uid: 29791 + components: + - type: Transform + pos: -39.5,24.5 + parent: 2 + - uid: 29792 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - uid: 29840 + components: + - type: Transform + pos: -58.5,49.5 + parent: 2 + - uid: 29841 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 29952 + components: + - type: Transform + pos: 35.5,-43.5 + parent: 2 + - uid: 29953 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 + - uid: 29954 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 2 + - uid: 29955 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 29956 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 2 + - uid: 29958 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 29959 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 + - uid: 29960 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 29970 + components: + - type: Transform + pos: 19.5,-72.5 + parent: 2 + - uid: 29971 + components: + - type: Transform + pos: 20.5,-72.5 + parent: 2 + - uid: 29972 + components: + - type: Transform + pos: 21.5,-72.5 + parent: 2 + - uid: 29973 + components: + - type: Transform + pos: 22.5,-72.5 + parent: 2 + - uid: 29974 + components: + - type: Transform + pos: 23.5,-72.5 + parent: 2 + - uid: 29975 + components: + - type: Transform + pos: 24.5,-72.5 + parent: 2 + - uid: 29976 + components: + - type: Transform + pos: 25.5,-72.5 + parent: 2 + - uid: 29977 + components: + - type: Transform + pos: 26.5,-72.5 + parent: 2 + - uid: 30144 + components: + - type: Transform + pos: 40.5,15.5 + parent: 2 + - uid: 30145 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 30146 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 30147 + components: + - type: Transform + pos: 43.5,15.5 + parent: 2 + - uid: 30148 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 30149 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 30150 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 30151 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 30278 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 2 + - uid: 30314 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 30315 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 + - uid: 30316 + components: + - type: Transform + pos: 39.5,-40.5 + parent: 2 + - uid: 30317 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 30318 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 2 + - uid: 30319 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 30320 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 30321 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 30322 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 30323 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 30328 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 30329 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 30330 + components: + - type: Transform + pos: -49.5,19.5 + parent: 2 + - uid: 30331 + components: + - type: Transform + pos: -49.5,20.5 + parent: 2 + - uid: 30332 + components: + - type: Transform + pos: -48.5,20.5 + parent: 2 + - uid: 30333 + components: + - type: Transform + pos: -47.5,20.5 + parent: 2 + - uid: 30334 + components: + - type: Transform + pos: -46.5,20.5 + parent: 2 + - uid: 30335 + components: + - type: Transform + pos: -45.5,20.5 + parent: 2 + - uid: 30336 + components: + - type: Transform + pos: -58.5,-51.5 + parent: 2 + - uid: 30337 + components: + - type: Transform + pos: -59.5,-51.5 + parent: 2 + - uid: 30338 + components: + - type: Transform + pos: -60.5,-38.5 + parent: 2 + - uid: 30339 + components: + - type: Transform + pos: -66.5,-42.5 + parent: 2 + - uid: 30355 + components: + - type: Transform + pos: -79.5,-35.5 + parent: 2 + - uid: 30356 + components: + - type: Transform + pos: -79.5,-34.5 + parent: 2 + - uid: 30357 + components: + - type: Transform + pos: -79.5,-33.5 + parent: 2 + - uid: 30358 + components: + - type: Transform + pos: -83.5,-46.5 + parent: 2 + - uid: 30391 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 30392 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 30482 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 30483 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - uid: 30484 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 30485 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 30486 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 30487 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 30488 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 + - uid: 30489 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 30490 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 30491 + components: + - type: Transform + pos: 32.5,37.5 + parent: 2 + - uid: 30492 + components: + - type: Transform + pos: 33.5,37.5 + parent: 2 + - uid: 30493 + components: + - type: Transform + pos: 28.5,37.5 + parent: 2 + - uid: 30494 + components: + - type: Transform + pos: 27.5,37.5 + parent: 2 + - uid: 30495 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 30496 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 30497 + components: + - type: Transform + pos: 35.5,28.5 + parent: 2 + - uid: 30498 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 30499 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 30500 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 30501 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 30502 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 30503 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 30504 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 30505 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 30506 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 30507 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 30508 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 30509 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 30510 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 30511 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 30512 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 30513 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 30514 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 30515 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 30516 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 30517 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 30518 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 30519 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 30520 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 30521 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 30522 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 30523 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 30524 + components: + - type: Transform + pos: 48.5,26.5 + parent: 2 + - uid: 30525 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 30526 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 30527 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 30528 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 30529 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 30530 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 30531 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 30532 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 30533 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 30534 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 30535 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 30536 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 30537 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 30538 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 30539 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 30540 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 30541 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 30542 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 30543 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 30544 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 30545 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 30546 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 30547 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 30548 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 30553 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 + - uid: 30554 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 30555 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 30556 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 30557 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 30558 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 30559 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 30560 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 30561 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 30562 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 30563 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 30564 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 30565 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 30566 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 30567 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 30568 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 30569 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 30570 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 30571 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 30572 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 30573 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 30574 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 30575 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 30576 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 30577 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 30578 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 30579 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 30580 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 30581 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 30582 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 30583 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 30584 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 30585 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 30586 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 30587 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 30588 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 30589 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 30590 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 30591 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 30592 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 30593 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 30594 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 30595 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 30596 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 30597 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 30598 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 30599 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 30600 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 + - uid: 30601 + components: + - type: Transform + pos: -14.5,19.5 + parent: 2 + - uid: 30602 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - uid: 30603 + components: + - type: Transform + pos: -9.5,20.5 + parent: 2 + - uid: 30604 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 30605 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 30606 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 + - uid: 30607 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 30608 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 30609 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 30610 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 30611 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 30612 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 30613 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 30614 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 30615 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 30616 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 30617 + components: + - type: Transform + pos: -20.5,23.5 + parent: 2 + - uid: 30618 + components: + - type: Transform + pos: -21.5,23.5 + parent: 2 + - uid: 30619 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 30620 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 30621 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 30622 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 30623 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 30624 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 30625 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 30626 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 30627 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 30628 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 30629 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 30630 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 30631 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 30632 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 30633 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 30634 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 30635 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 30636 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 30637 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 30638 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 + - uid: 30639 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 30640 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 30641 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 30642 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 30643 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 30644 + components: + - type: Transform + pos: -69.5,-4.5 + parent: 2 + - uid: 30645 + components: + - type: Transform + pos: -70.5,-4.5 + parent: 2 + - uid: 30646 + components: + - type: Transform + pos: -71.5,-4.5 + parent: 2 + - uid: 30647 + components: + - type: Transform + pos: -71.5,-3.5 + parent: 2 + - uid: 30648 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - uid: 30649 + components: + - type: Transform + pos: -70.5,5.5 + parent: 2 + - uid: 30650 + components: + - type: Transform + pos: -71.5,5.5 + parent: 2 + - uid: 30651 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 30652 + components: + - type: Transform + pos: -70.5,3.5 + parent: 2 + - uid: 30653 + components: + - type: Transform + pos: -70.5,2.5 + parent: 2 + - uid: 30654 + components: + - type: Transform + pos: -70.5,1.5 + parent: 2 + - uid: 30655 + components: + - type: Transform + pos: -70.5,0.5 + parent: 2 + - uid: 30656 + components: + - type: Transform + pos: -71.5,2.5 + parent: 2 + - uid: 30657 + components: + - type: Transform + pos: -69.5,1.5 + parent: 2 + - uid: 30658 + components: + - type: Transform + pos: -72.5,2.5 + parent: 2 + - uid: 30659 + components: + - type: Transform + pos: -73.5,2.5 + parent: 2 + - uid: 30660 + components: + - type: Transform + pos: -74.5,2.5 + parent: 2 + - uid: 30661 + components: + - type: Transform + pos: -75.5,2.5 + parent: 2 + - uid: 30662 + components: + - type: Transform + pos: -76.5,2.5 + parent: 2 + - uid: 30663 + components: + - type: Transform + pos: -75.5,1.5 + parent: 2 + - uid: 30664 + components: + - type: Transform + pos: -75.5,0.5 + parent: 2 + - uid: 30694 + components: + - type: Transform + pos: -80.5,-15.5 + parent: 2 + - uid: 30695 + components: + - type: Transform + pos: -79.5,-15.5 + parent: 2 + - uid: 30696 + components: + - type: Transform + pos: -78.5,-15.5 + parent: 2 + - uid: 30697 + components: + - type: Transform + pos: -78.5,-16.5 + parent: 2 + - uid: 30698 + components: + - type: Transform + pos: -77.5,-16.5 + parent: 2 + - uid: 30699 + components: + - type: Transform + pos: -76.5,-16.5 + parent: 2 + - uid: 30700 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - uid: 30701 + components: + - type: Transform + pos: -74.5,-16.5 + parent: 2 + - uid: 30702 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 + - uid: 30703 + components: + - type: Transform + pos: -75.5,-18.5 + parent: 2 + - uid: 30704 + components: + - type: Transform + pos: -73.5,-16.5 + parent: 2 + - uid: 30705 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - uid: 30706 + components: + - type: Transform + pos: -71.5,-16.5 + parent: 2 + - uid: 30707 + components: + - type: Transform + pos: -70.5,-20.5 + parent: 2 + - uid: 30708 + components: + - type: Transform + pos: -71.5,-20.5 + parent: 2 + - uid: 30709 + components: + - type: Transform + pos: -72.5,-20.5 + parent: 2 + - uid: 30710 + components: + - type: Transform + pos: -73.5,-20.5 + parent: 2 + - uid: 30711 + components: + - type: Transform + pos: -73.5,-21.5 + parent: 2 + - uid: 30712 + components: + - type: Transform + pos: -73.5,-22.5 + parent: 2 + - uid: 30713 + components: + - type: Transform + pos: -73.5,-23.5 + parent: 2 + - uid: 30714 + components: + - type: Transform + pos: -73.5,-24.5 + parent: 2 + - uid: 30715 + components: + - type: Transform + pos: -74.5,-24.5 + parent: 2 + - uid: 30716 + components: + - type: Transform + pos: -75.5,-24.5 + parent: 2 + - uid: 30717 + components: + - type: Transform + pos: -76.5,-24.5 + parent: 2 + - uid: 30718 + components: + - type: Transform + pos: -77.5,-24.5 + parent: 2 + - uid: 30719 + components: + - type: Transform + pos: -77.5,-23.5 + parent: 2 + - uid: 30720 + components: + - type: Transform + pos: -72.5,-24.5 + parent: 2 + - uid: 30721 + components: + - type: Transform + pos: -72.5,-25.5 + parent: 2 + - uid: 30722 + components: + - type: Transform + pos: -71.5,-25.5 + parent: 2 + - uid: 30723 + components: + - type: Transform + pos: -70.5,-25.5 + parent: 2 + - uid: 30724 + components: + - type: Transform + pos: -69.5,-25.5 + parent: 2 + - uid: 30725 + components: + - type: Transform + pos: -70.5,-24.5 + parent: 2 + - uid: 30726 + components: + - type: Transform + pos: -70.5,-23.5 + parent: 2 + - uid: 30727 + components: + - type: Transform + pos: -70.5,-22.5 + parent: 2 + - uid: 30728 + components: + - type: Transform + pos: -70.5,-26.5 + parent: 2 + - uid: 30729 + components: + - type: Transform + pos: -70.5,-27.5 + parent: 2 + - uid: 30730 + components: + - type: Transform + pos: -70.5,-28.5 + parent: 2 + - uid: 30731 + components: + - type: Transform + pos: -70.5,-29.5 + parent: 2 + - uid: 30732 + components: + - type: Transform + pos: -70.5,-30.5 + parent: 2 + - uid: 30733 + components: + - type: Transform + pos: -70.5,-31.5 + parent: 2 + - uid: 30734 + components: + - type: Transform + pos: -71.5,-29.5 + parent: 2 + - uid: 30735 + components: + - type: Transform + pos: -72.5,-29.5 + parent: 2 + - uid: 30736 + components: + - type: Transform + pos: -73.5,-29.5 + parent: 2 + - uid: 30737 + components: + - type: Transform + pos: -68.5,-25.5 + parent: 2 + - uid: 30738 + components: + - type: Transform + pos: -68.5,-26.5 + parent: 2 + - uid: 30739 + components: + - type: Transform + pos: -67.5,-26.5 + parent: 2 + - uid: 30740 + components: + - type: Transform + pos: -66.5,-26.5 + parent: 2 + - uid: 30741 + components: + - type: Transform + pos: -66.5,-27.5 + parent: 2 + - uid: 30742 + components: + - type: Transform + pos: -66.5,-28.5 + parent: 2 + - uid: 30743 + components: + - type: Transform + pos: -66.5,-29.5 + parent: 2 + - uid: 30744 + components: + - type: Transform + pos: -67.5,-29.5 + parent: 2 + - uid: 30745 + components: + - type: Transform + pos: -68.5,-29.5 + parent: 2 + - uid: 30746 + components: + - type: Transform + pos: -63.5,-18.5 + parent: 2 + - uid: 30747 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 30748 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 30749 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 30750 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 30751 + components: + - type: Transform + pos: -58.5,-12.5 + parent: 2 + - uid: 30752 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 30753 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 2 + - uid: 30754 + components: + - type: Transform + pos: 43.5,14.5 + parent: 2 + - uid: 30755 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 30756 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 30757 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 30758 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 2 + - uid: 30759 + components: + - type: Transform + pos: -11.5,-63.5 + parent: 2 + - uid: 30760 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 30761 + components: + - type: Transform + pos: -9.5,-63.5 + parent: 2 + - uid: 30762 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 30763 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 30764 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 30765 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 30766 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 30767 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 30768 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 30769 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 30770 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 30771 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 30772 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 30773 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 30774 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 30775 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 30776 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 30777 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 30778 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 30779 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 30780 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - uid: 30807 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 30808 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 30809 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 30814 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 30818 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 30819 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 30821 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 30825 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 30826 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 30827 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 31015 + components: + - type: Transform + pos: 19.5,-78.5 + parent: 2 + - uid: 31016 + components: + - type: Transform + pos: 21.5,-78.5 + parent: 2 + - uid: 31017 + components: + - type: Transform + pos: 20.5,-78.5 + parent: 2 + - uid: 31018 + components: + - type: Transform + pos: 22.5,-78.5 + parent: 2 + - uid: 31019 + components: + - type: Transform + pos: 23.5,-78.5 + parent: 2 + - uid: 31020 + components: + - type: Transform + pos: 25.5,-78.5 + parent: 2 + - uid: 31021 + components: + - type: Transform + pos: 26.5,-78.5 + parent: 2 + - uid: 31022 + components: + - type: Transform + pos: 27.5,-78.5 + parent: 2 + - uid: 31023 + components: + - type: Transform + pos: 27.5,-77.5 + parent: 2 + - uid: 31024 + components: + - type: Transform + pos: 27.5,-75.5 + parent: 2 + - uid: 31025 + components: + - type: Transform + pos: 27.5,-74.5 + parent: 2 + - uid: 31026 + components: + - type: Transform + pos: 26.5,-74.5 + parent: 2 + - uid: 31027 + components: + - type: Transform + pos: 25.5,-74.5 + parent: 2 + - uid: 31028 + components: + - type: Transform + pos: 23.5,-74.5 + parent: 2 + - uid: 31029 + components: + - type: Transform + pos: 21.5,-74.5 + parent: 2 + - uid: 31030 + components: + - type: Transform + pos: 20.5,-74.5 + parent: 2 + - uid: 31031 + components: + - type: Transform + pos: 19.5,-74.5 + parent: 2 + - uid: 31032 + components: + - type: Transform + pos: 22.5,-74.5 + parent: 2 + - uid: 31033 + components: + - type: Transform + pos: 19.5,-75.5 + parent: 2 + - uid: 31034 + components: + - type: Transform + pos: 19.5,-77.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 1132 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1135 + components: + - type: Transform + pos: 23.589,-44.5478 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: -21.48829,-12.4825325 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -21.50484,-14.338059 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -1.523819,-34.30806 + parent: 2 + - uid: 1140 + components: + - type: Transform + parent: 1139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1146 + components: + - type: Transform + pos: 18.570833,10.546236 + parent: 2 + - uid: 12458 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -64.53887,-17.256573 + parent: 2 + - uid: 15829 + components: + - type: Transform + pos: 17.564425,18.441505 + parent: 2 +- proto: CableHV + entities: + - uid: 459 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -74.5,-50.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -74.5,-48.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: -74.5,-47.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -74.5,-46.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -73.5,-50.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -73.5,-49.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -73.5,-48.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -73.5,-47.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: -73.5,-46.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -71.5,-46.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -71.5,-47.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -71.5,-48.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -71.5,-49.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -71.5,-50.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: -70.5,-46.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: -70.5,-47.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: -70.5,-48.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -70.5,-49.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: -70.5,-50.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -68.5,-50.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -68.5,-49.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -68.5,-48.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -68.5,-47.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: -68.5,-46.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -67.5,-50.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -67.5,-49.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -67.5,-48.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -67.5,-47.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -67.5,-46.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -67.5,-52.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -67.5,-53.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -67.5,-54.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -67.5,-55.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -67.5,-56.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: -68.5,-52.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -68.5,-53.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -68.5,-54.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -68.5,-55.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -68.5,-56.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: -70.5,-56.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: -70.5,-55.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -70.5,-54.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -70.5,-53.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: -70.5,-52.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -71.5,-56.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -71.5,-55.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -71.5,-54.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -71.5,-53.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: -71.5,-52.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -73.5,-52.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -73.5,-53.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -73.5,-54.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -73.5,-55.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -73.5,-56.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -74.5,-53.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -74.5,-54.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -74.5,-55.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -74.5,-56.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -77.5,-51.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -76.5,-51.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -68.5,64.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: 28.5,-56.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 8779 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: 29.5,-55.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + pos: 22.5,-58.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 + - uid: 10986 + components: + - type: Transform + pos: -67.5,64.5 + parent: 2 + - uid: 10988 + components: + - type: Transform + pos: -66.5,63.5 + parent: 2 + - uid: 10989 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - uid: 11822 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: -62.5,18.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: -62.5,20.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + pos: -62.5,21.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: -62.5,22.5 + parent: 2 + - uid: 12608 + components: + - type: Transform + pos: -64.5,22.5 + parent: 2 + - uid: 12609 + components: + - type: Transform + pos: -64.5,21.5 + parent: 2 + - uid: 12610 + components: + - type: Transform + pos: -64.5,20.5 + parent: 2 + - uid: 12611 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 12612 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 12615 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + pos: -64.5,13.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: -62.5,12.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: -62.5,13.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + pos: -62.5,16.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + pos: -66.5,13.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + pos: -66.5,15.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + pos: -68.5,15.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + pos: -68.5,11.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + pos: -70.5,12.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + pos: -70.5,13.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + pos: -70.5,14.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + pos: -70.5,16.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: -72.5,16.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + pos: -72.5,14.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + pos: -72.5,13.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: -72.5,12.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: -70.5,18.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: -70.5,19.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: -70.5,21.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: -70.5,22.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + pos: -72.5,22.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: -72.5,21.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + pos: -72.5,20.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + pos: -72.5,19.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: -72.5,18.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + pos: -68.5,19.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + pos: -68.5,20.5 + parent: 2 + - uid: 12658 + components: + - type: Transform + pos: -68.5,21.5 + parent: 2 + - uid: 12659 + components: + - type: Transform + pos: -68.5,22.5 + parent: 2 + - uid: 12660 + components: + - type: Transform + pos: -68.5,23.5 + parent: 2 + - uid: 12661 + components: + - type: Transform + pos: -66.5,23.5 + parent: 2 + - uid: 12662 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 + - uid: 12663 + components: + - type: Transform + pos: -66.5,21.5 + parent: 2 + - uid: 12664 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 12665 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - uid: 12666 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 + - uid: 13888 + components: + - type: Transform + pos: 24.5,-75.5 + parent: 2 + - uid: 13889 + components: + - type: Transform + pos: 24.5,-77.5 + parent: 2 + - uid: 13890 + components: + - type: Transform + pos: 24.5,-76.5 + parent: 2 + - uid: 13891 + components: + - type: Transform + pos: 26.5,-76.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + pos: 25.5,-76.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: 23.5,-76.5 + parent: 2 + - uid: 13894 + components: + - type: Transform + pos: 22.5,-76.5 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: 21.5,-76.5 + parent: 2 + - uid: 13896 + components: + - type: Transform + pos: 24.5,-76.5 + parent: 2 + - uid: 13897 + components: + - type: Transform + pos: 20.5,-76.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: 24.5,-74.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: 24.5,-73.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + pos: 52.5,-71.5 + parent: 2 + - uid: 14328 + components: + - type: Transform + pos: 52.5,-72.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: 52.5,-73.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + pos: 52.5,-70.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + pos: 50.5,-70.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + pos: 50.5,-71.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + pos: 50.5,-72.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: 50.5,-73.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: 50.5,-74.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: 50.5,-75.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: 52.5,-75.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: 52.5,-74.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: 54.5,-74.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: 54.5,-73.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: 54.5,-72.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + pos: 54.5,-71.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + pos: 54.5,-70.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: 54.5,-69.5 + parent: 2 + - uid: 14357 + components: + - type: Transform + pos: 56.5,-69.5 + parent: 2 + - uid: 14358 + components: + - type: Transform + pos: 56.5,-70.5 + parent: 2 + - uid: 14359 + components: + - type: Transform + pos: 56.5,-71.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + pos: 56.5,-72.5 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: 56.5,-73.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: 56.5,-68.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + pos: 56.5,-67.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + pos: 56.5,-66.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: 56.5,-65.5 + parent: 2 + - uid: 14366 + components: + - type: Transform + pos: 56.5,-64.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: 56.5,-74.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: 54.5,-67.5 + parent: 2 + - uid: 14370 + components: + - type: Transform + pos: 54.5,-66.5 + parent: 2 + - uid: 14371 + components: + - type: Transform + pos: 54.5,-65.5 + parent: 2 + - uid: 14372 + components: + - type: Transform + pos: 54.5,-64.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: 54.5,-63.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: 52.5,-66.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + pos: 52.5,-65.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + pos: 52.5,-64.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 14378 + components: + - type: Transform + pos: 52.5,-62.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + pos: 50.5,-62.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + pos: 50.5,-63.5 + parent: 2 + - uid: 14381 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: 50.5,-66.5 + parent: 2 + - uid: 14384 + components: + - type: Transform + pos: 48.5,-67.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: 48.5,-66.5 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: 48.5,-65.5 + parent: 2 + - uid: 14387 + components: + - type: Transform + pos: 48.5,-64.5 + parent: 2 + - uid: 14388 + components: + - type: Transform + pos: 48.5,-63.5 + parent: 2 + - uid: 14389 + components: + - type: Transform + pos: 46.5,-63.5 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: 46.5,-64.5 + parent: 2 + - uid: 14391 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + pos: 46.5,-66.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + pos: 46.5,-67.5 + parent: 2 + - uid: 14394 + components: + - type: Transform + pos: 46.5,-69.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: 46.5,-70.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + pos: 46.5,-71.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + pos: 46.5,-72.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: 46.5,-73.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + pos: 46.5,-74.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: 48.5,-74.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 48.5,-73.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: 48.5,-72.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: 48.5,-71.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + pos: 48.5,-70.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: 48.5,-69.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 51.5,-70.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 51.5,-69.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: 51.5,-66.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: 51.5,-67.5 + parent: 2 + - uid: 15135 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 15137 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 15158 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 15161 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 15162 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 15163 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 15164 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 15165 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 15166 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 15167 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 15169 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 15170 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 15171 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 15173 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - uid: 15174 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 + - uid: 15177 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 15178 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 15179 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 15180 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 + - uid: 15182 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 15183 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 15184 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 15185 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 15187 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 15188 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 15189 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 15190 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 15191 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 15193 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 15194 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 15195 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - uid: 15196 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 15197 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 + - uid: 15198 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 15200 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 15201 + components: + - type: Transform + pos: 67.5,14.5 + parent: 2 + - uid: 15202 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + pos: 67.5,12.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: 67.5,10.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + pos: 69.5,10.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: 69.5,11.5 + parent: 2 + - uid: 15208 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 + - uid: 15209 + components: + - type: Transform + pos: 69.5,13.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + pos: 69.5,14.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 15213 + components: + - type: Transform + pos: 69.5,17.5 + parent: 2 + - uid: 15214 + components: + - type: Transform + pos: 69.5,18.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - uid: 15216 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 15217 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: 67.5,17.5 + parent: 2 + - uid: 15221 + components: + - type: Transform + pos: 67.5,16.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -50.5,31.5 + parent: 2 + - uid: 16447 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 + - uid: 16451 + components: + - type: Transform + pos: 28.5,-55.5 + parent: 2 + - uid: 16454 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 + - uid: 16460 + components: + - type: Transform + pos: 25.5,-71.5 + parent: 2 + - uid: 16462 + components: + - type: Transform + pos: 27.5,-70.5 + parent: 2 + - uid: 16465 + components: + - type: Transform + pos: 27.5,-68.5 + parent: 2 + - uid: 16466 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 2 + - uid: 16467 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 2 + - uid: 16468 + components: + - type: Transform + pos: 27.5,-65.5 + parent: 2 + - uid: 16469 + components: + - type: Transform + pos: 27.5,-64.5 + parent: 2 + - uid: 16470 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 2 + - uid: 16471 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 16472 + components: + - type: Transform + pos: 27.5,-61.5 + parent: 2 + - uid: 16473 + components: + - type: Transform + pos: 27.5,-60.5 + parent: 2 + - uid: 16474 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 16475 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 2 + - uid: 16476 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 2 + - uid: 16477 + components: + - type: Transform + pos: 30.5,-62.5 + parent: 2 + - uid: 16478 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: 31.5,-61.5 + parent: 2 + - uid: 16480 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 16481 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 16482 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 16483 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 2 + - uid: 16484 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 16485 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 16486 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 16488 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - uid: 16489 + components: + - type: Transform + pos: 30.5,-52.5 + parent: 2 + - uid: 16490 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 16491 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 16492 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - uid: 16493 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 16494 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 16495 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 16496 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 16497 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 + - uid: 16498 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 16499 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - uid: 16500 + components: + - type: Transform + pos: 19.5,-55.5 + parent: 2 + - uid: 16501 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 2 + - uid: 16502 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 2 + - uid: 16503 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 2 + - uid: 16508 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 + - uid: 16509 + components: + - type: Transform + pos: 18.5,-47.5 + parent: 2 + - uid: 16510 + components: + - type: Transform + pos: 17.5,-47.5 + parent: 2 + - uid: 16511 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 2 + - uid: 16512 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 16513 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 16514 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 16515 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 16516 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 16517 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 16518 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 16519 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 16520 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 16521 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 2 + - uid: 16522 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 2 + - uid: 16523 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 16524 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 16525 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 16526 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 16527 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 + - uid: 16529 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 16532 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 16533 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 16534 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 16535 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 16536 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 16537 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 16538 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 16539 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 16540 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 16544 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 16545 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 16546 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 16550 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 16551 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 16552 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 16553 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 16554 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 16555 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 16556 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 16557 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 16558 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 16560 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 16561 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 16562 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 16563 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 16564 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 16565 + components: + - type: Transform + pos: -14.5,-29.5 + parent: 2 + - uid: 16566 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 2 + - uid: 16567 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 16568 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - uid: 16569 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 16571 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 16572 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 16573 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 16574 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 16575 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 16576 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 16577 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 16578 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 16579 + components: + - type: Transform + pos: -22.5,-24.5 + parent: 2 + - uid: 16580 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 + - uid: 16581 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 16588 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 16589 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 2 + - uid: 16590 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 16592 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 2 + - uid: 16593 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - uid: 16596 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 16597 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 16598 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 16599 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 16600 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 16601 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 16602 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 16603 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 16604 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 16605 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 16606 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 16607 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 16608 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 16609 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 16610 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 16611 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 16612 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 16613 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 16614 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 16615 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 16616 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 16617 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 16618 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 16619 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 16620 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 16621 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 16622 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 16623 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 16624 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 16625 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 16626 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 16627 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 16628 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 16629 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 16630 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 16631 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 16632 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 16633 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 16634 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 16635 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 16636 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 16637 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 16638 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 16639 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 16640 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 16642 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 16643 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 16644 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 16645 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 16646 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 16647 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 16648 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 16649 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 16650 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 16651 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 16652 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 16654 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 16655 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 16656 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 16657 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 16658 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 16659 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 16660 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 16661 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 16663 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 16664 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 16665 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 16666 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 16667 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 16669 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 16670 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 16671 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 16672 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 16673 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 16674 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 16675 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 16676 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 16677 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 16678 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 16679 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 16680 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 16681 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 16682 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 16683 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 16684 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 16685 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 16687 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 16688 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 16689 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 16690 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 16691 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 16692 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 16693 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 16694 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 16695 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 16696 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 16697 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 16698 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 16699 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 16700 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 16701 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 16704 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 16708 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 16709 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 16710 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 16711 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 16712 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 16713 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 16714 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 16715 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 16716 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 16717 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 16718 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 16719 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 16720 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 16721 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 16722 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 16723 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 16724 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 16725 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 16726 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 16727 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 16978 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 + - uid: 16981 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 16983 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 16984 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 16985 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 16986 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 16989 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 16996 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 16997 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + pos: -23.5,3.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 17001 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 17002 + components: + - type: Transform + pos: -23.5,7.5 + parent: 2 + - uid: 17003 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 17004 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 17005 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 17007 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 17010 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: -24.5,20.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + pos: -23.5,20.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: -21.5,20.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: -22.5,20.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: -28.5,17.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 17022 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 17026 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + pos: -30.5,27.5 + parent: 2 + - uid: 17030 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 17038 + components: + - type: Transform + pos: -50.5,30.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + pos: -35.5,30.5 + parent: 2 + - uid: 17040 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + pos: -37.5,30.5 + parent: 2 + - uid: 17042 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + pos: -45.5,30.5 + parent: 2 + - uid: 17050 + components: + - type: Transform + pos: -46.5,30.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + pos: -47.5,30.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + pos: -48.5,30.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + pos: -50.5,35.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + pos: -50.5,39.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + pos: -50.5,42.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: -50.5,43.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -50.5,44.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: -50.5,46.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + pos: -50.5,47.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: -50.5,48.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + pos: -50.5,49.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -50.5,51.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + pos: -50.5,52.5 + parent: 2 + - uid: 17074 + components: + - type: Transform + pos: -50.5,53.5 + parent: 2 + - uid: 17075 + components: + - type: Transform + pos: -50.5,54.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + pos: -51.5,54.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: -52.5,54.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + pos: -53.5,54.5 + parent: 2 + - uid: 17080 + components: + - type: Transform + pos: -54.5,54.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + pos: -55.5,54.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + pos: -55.5,55.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: -55.5,56.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + pos: -55.5,57.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: -55.5,58.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -56.5,58.5 + parent: 2 + - uid: 17087 + components: + - type: Transform + pos: -57.5,58.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + pos: -58.5,58.5 + parent: 2 + - uid: 17089 + components: + - type: Transform + pos: -59.5,58.5 + parent: 2 + - uid: 17090 + components: + - type: Transform + pos: -60.5,58.5 + parent: 2 + - uid: 17091 + components: + - type: Transform + pos: -61.5,58.5 + parent: 2 + - uid: 17092 + components: + - type: Transform + pos: -62.5,58.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + pos: -63.5,58.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: -64.5,58.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: -65.5,58.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + pos: -66.5,58.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + pos: -67.5,58.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + pos: -68.5,58.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + pos: -69.5,58.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + pos: -69.5,59.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + pos: -69.5,60.5 + parent: 2 + - uid: 17102 + components: + - type: Transform + pos: -69.5,61.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + pos: -68.5,62.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + pos: -69.5,62.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + pos: -67.5,62.5 + parent: 2 + - uid: 17106 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: -67.5,63.5 + parent: 2 + - uid: 17108 + components: + - type: Transform + pos: -69.5,64.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 17110 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 17111 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 17112 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 17114 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 17115 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 17116 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 17117 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 + - uid: 17131 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 17132 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 17133 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 17134 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 17135 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 17136 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 17138 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 17139 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 17154 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - uid: 17155 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 17156 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 17157 + components: + - type: Transform + pos: -18.5,19.5 + parent: 2 + - uid: 17158 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + pos: -26.5,20.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + pos: -27.5,20.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + pos: -28.5,20.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + pos: -29.5,20.5 + parent: 2 + - uid: 17163 + components: + - type: Transform + pos: -31.5,20.5 + parent: 2 + - uid: 17164 + components: + - type: Transform + pos: -32.5,20.5 + parent: 2 + - uid: 17165 + components: + - type: Transform + pos: -33.5,20.5 + parent: 2 + - uid: 17166 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 17167 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 17168 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 17170 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 17171 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 17172 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 17173 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 17175 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 17176 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 17177 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 17178 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 17179 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 17180 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 17181 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 17185 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 17186 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 17189 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 17191 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 17195 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 17196 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 17197 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 17199 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 17201 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 17202 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 17203 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 17206 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 17207 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 17208 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 17209 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 17210 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 17211 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 17214 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 17215 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 17216 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 17218 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 17219 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 17220 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 17221 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + pos: -65.5,-11.5 + parent: 2 + - uid: 17227 + components: + - type: Transform + pos: -64.5,-11.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 17229 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + pos: -68.5,-14.5 + parent: 2 + - uid: 17237 + components: + - type: Transform + pos: -68.5,-15.5 + parent: 2 + - uid: 17238 + components: + - type: Transform + pos: -69.5,-15.5 + parent: 2 + - uid: 17239 + components: + - type: Transform + pos: -69.5,-16.5 + parent: 2 + - uid: 17240 + components: + - type: Transform + pos: -69.5,-17.5 + parent: 2 + - uid: 17241 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 2 + - uid: 17242 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 2 + - uid: 17243 + components: + - type: Transform + pos: -69.5,-20.5 + parent: 2 + - uid: 17244 + components: + - type: Transform + pos: -68.5,-20.5 + parent: 2 + - uid: 17245 + components: + - type: Transform + pos: -67.5,-20.5 + parent: 2 + - uid: 17246 + components: + - type: Transform + pos: -66.5,-20.5 + parent: 2 + - uid: 17247 + components: + - type: Transform + pos: -66.5,-21.5 + parent: 2 + - uid: 17248 + components: + - type: Transform + pos: -66.5,-22.5 + parent: 2 + - uid: 17249 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - uid: 17250 + components: + - type: Transform + pos: -66.5,-24.5 + parent: 2 + - uid: 17251 + components: + - type: Transform + pos: -65.5,-24.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + pos: -64.5,-24.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + pos: -62.5,-26.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 2 + - uid: 17271 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 17272 + components: + - type: Transform + pos: -51.5,-26.5 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 17274 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 17276 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 17277 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 17278 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 17279 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 17280 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 2 + - uid: 17281 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 2 + - uid: 17282 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 2 + - uid: 17283 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: -50.5,-35.5 + parent: 2 + - uid: 17286 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 2 + - uid: 17287 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - uid: 17288 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - uid: 17289 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 17290 + components: + - type: Transform + pos: -51.5,-39.5 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: -51.5,-40.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: -51.5,-41.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + pos: -52.5,-43.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + pos: -53.5,-43.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + pos: -54.5,-43.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + pos: -55.5,-43.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + pos: -55.5,-44.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + pos: -55.5,-47.5 + parent: 2 + - uid: 17304 + components: + - type: Transform + pos: -55.5,-48.5 + parent: 2 + - uid: 17305 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 17311 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 17314 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 17316 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 17317 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 17319 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 17320 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 17322 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 17323 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 + - uid: 17324 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 17325 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 17326 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - uid: 17327 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 17328 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 17329 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 17331 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 17332 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + pos: 34.5,-39.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + pos: 34.5,-62.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + pos: 33.5,-62.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + pos: 35.5,-60.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 17350 + components: + - type: Transform + pos: 53.5,15.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 17352 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - uid: 17353 + components: + - type: Transform + pos: 50.5,15.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 17356 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 17357 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 17358 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 17364 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 17365 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 17367 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 17368 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + pos: 34.5,-61.5 + parent: 2 + - uid: 17370 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 17375 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 17379 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 17380 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 17384 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 17389 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 17390 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 17392 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 17394 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + pos: -56.5,17.5 + parent: 2 + - uid: 17401 + components: + - type: Transform + pos: -55.5,17.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 17407 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 17409 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + pos: -57.5,17.5 + parent: 2 + - uid: 17412 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 17414 + components: + - type: Transform + pos: -61.5,-51.5 + parent: 2 + - uid: 17415 + components: + - type: Transform + pos: -60.5,-51.5 + parent: 2 + - uid: 17416 + components: + - type: Transform + pos: -59.5,-51.5 + parent: 2 + - uid: 17417 + components: + - type: Transform + pos: -58.5,-51.5 + parent: 2 + - uid: 17418 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 17419 + components: + - type: Transform + pos: -56.5,-51.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: -54.5,-51.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: -53.5,-51.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: -52.5,-51.5 + parent: 2 + - uid: 17424 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - uid: 17425 + components: + - type: Transform + pos: -52.5,-49.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - uid: 17430 + components: + - type: Transform + pos: -52.5,-44.5 + parent: 2 + - uid: 17438 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: 43.5,-68.5 + parent: 2 + - uid: 17519 + components: + - type: Transform + pos: 42.5,-68.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: 41.5,-68.5 + parent: 2 + - uid: 17521 + components: + - type: Transform + pos: 40.5,-68.5 + parent: 2 + - uid: 17522 + components: + - type: Transform + pos: 39.5,-68.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + pos: 38.5,-68.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + pos: 36.5,-68.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + pos: 35.5,-68.5 + parent: 2 + - uid: 17527 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + pos: 31.5,-66.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - uid: 17535 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + pos: 36.5,-67.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + pos: 38.5,-67.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + pos: 37.5,-67.5 + parent: 2 + - uid: 17629 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 17633 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 17635 + components: + - type: Transform + pos: 43.5,-29.5 + parent: 2 + - uid: 17647 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - uid: 17648 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 17649 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 + - uid: 17650 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 17651 + components: + - type: Transform + pos: 31.5,-47.5 + parent: 2 + - uid: 17652 + components: + - type: Transform + pos: 30.5,-47.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + pos: 30.5,-43.5 + parent: 2 + - uid: 17657 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 17658 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 17898 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - uid: 17899 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 17900 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 17901 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 17902 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 17903 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 17904 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 17905 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 17906 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 17907 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 17908 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 17909 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 17910 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 17911 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 17912 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 + - uid: 17913 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 2 + - uid: 17914 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 + - uid: 17915 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 + - uid: 17916 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 17927 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 18405 + components: + - type: Transform + pos: -54.5,16.5 + parent: 2 + - uid: 18406 + components: + - type: Transform + pos: -53.5,16.5 + parent: 2 + - uid: 18407 + components: + - type: Transform + pos: -52.5,17.5 + parent: 2 + - uid: 18408 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 18540 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 18928 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 18929 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 18931 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 18934 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 18935 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 18936 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 18937 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 18938 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 18939 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 19347 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 20783 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 23179 + components: + - type: Transform + pos: 17.5,-72.5 + parent: 2 + - uid: 23735 + components: + - type: Transform + pos: 18.5,-72.5 + parent: 2 + - uid: 23736 + components: + - type: Transform + pos: 19.5,-72.5 + parent: 2 + - uid: 23737 + components: + - type: Transform + pos: 20.5,-72.5 + parent: 2 + - uid: 23738 + components: + - type: Transform + pos: 21.5,-72.5 + parent: 2 + - uid: 23739 + components: + - type: Transform + pos: 22.5,-72.5 + parent: 2 + - uid: 23740 + components: + - type: Transform + pos: 23.5,-72.5 + parent: 2 + - uid: 23741 + components: + - type: Transform + pos: 24.5,-72.5 + parent: 2 + - uid: 23742 + components: + - type: Transform + pos: 25.5,-72.5 + parent: 2 + - uid: 23743 + components: + - type: Transform + pos: 26.5,-72.5 + parent: 2 + - uid: 23744 + components: + - type: Transform + pos: 26.5,-71.5 + parent: 2 + - uid: 23745 + components: + - type: Transform + pos: 26.5,-70.5 + parent: 2 + - uid: 23746 + components: + - type: Transform + pos: 25.5,-70.5 + parent: 2 + - uid: 23747 + components: + - type: Transform + pos: 24.5,-70.5 + parent: 2 + - uid: 23748 + components: + - type: Transform + pos: 23.5,-70.5 + parent: 2 + - uid: 23749 + components: + - type: Transform + pos: 22.5,-70.5 + parent: 2 + - uid: 23750 + components: + - type: Transform + pos: 21.5,-70.5 + parent: 2 + - uid: 23751 + components: + - type: Transform + pos: 20.5,-70.5 + parent: 2 + - uid: 23752 + components: + - type: Transform + pos: 19.5,-70.5 + parent: 2 + - uid: 23753 + components: + - type: Transform + pos: 18.5,-70.5 + parent: 2 + - uid: 23754 + components: + - type: Transform + pos: 17.5,-70.5 + parent: 2 + - uid: 23755 + components: + - type: Transform + pos: 17.5,-71.5 + parent: 2 + - uid: 23756 + components: + - type: Transform + pos: 19.5,-71.5 + parent: 2 + - uid: 23757 + components: + - type: Transform + pos: 21.5,-71.5 + parent: 2 + - uid: 23758 + components: + - type: Transform + pos: 23.5,-71.5 + parent: 2 + - uid: 23759 + components: + - type: Transform + pos: 23.5,-69.5 + parent: 2 + - uid: 23760 + components: + - type: Transform + pos: 23.5,-68.5 + parent: 2 + - uid: 23842 + components: + - type: Transform + pos: 24.5,-68.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 2 + - uid: 24215 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 2 + - uid: 24216 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 2 + - uid: 24383 + components: + - type: Transform + pos: 22.5,-68.5 + parent: 2 + - uid: 24547 + components: + - type: Transform + pos: 21.5,-68.5 + parent: 2 + - uid: 24759 + components: + - type: Transform + pos: 20.5,-68.5 + parent: 2 + - uid: 24760 + components: + - type: Transform + pos: 19.5,-68.5 + parent: 2 + - uid: 25102 + components: + - type: Transform + pos: 18.5,-68.5 + parent: 2 + - uid: 25447 + components: + - type: Transform + pos: 17.5,-68.5 + parent: 2 + - uid: 25806 + components: + - type: Transform + pos: 17.5,-69.5 + parent: 2 + - uid: 25868 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 2 + - uid: 25893 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 2 + - uid: 25974 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 2 + - uid: 28939 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 28940 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 28941 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - uid: 28942 + components: + - type: Transform + pos: -4.5,56.5 + parent: 2 + - uid: 28943 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 + - uid: 28944 + components: + - type: Transform + pos: -6.5,56.5 + parent: 2 + - uid: 28945 + components: + - type: Transform + pos: -7.5,56.5 + parent: 2 + - uid: 28946 + components: + - type: Transform + pos: -7.5,55.5 + parent: 2 + - uid: 28947 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 28948 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 28949 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 28950 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 28951 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 28952 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - uid: 28953 + components: + - type: Transform + pos: -5.5,50.5 + parent: 2 + - uid: 28954 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 28955 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 28956 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 28957 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 28958 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 28959 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 28960 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 28961 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 28962 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 28963 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 28964 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 + - uid: 28965 + components: + - type: Transform + pos: -4.5,39.5 + parent: 2 + - uid: 28966 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 28967 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 28968 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 28969 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 28970 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 28971 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 28972 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 28973 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 28974 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 28975 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 28976 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 28977 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 28978 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 28979 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 28980 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 28981 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 28982 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 28983 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 28984 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 28985 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 28986 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 28987 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 28988 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 28989 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 28990 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 28991 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 28992 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 28993 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 28994 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 28995 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 28996 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 28997 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 + - uid: 28998 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 28999 + components: + - type: Transform + pos: -10.5,15.5 + parent: 2 + - uid: 29000 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - uid: 29001 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 + - uid: 29002 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 29003 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 29004 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 29005 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 29006 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - uid: 29007 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 29008 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - uid: 29743 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 30839 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - uid: 30840 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - uid: 30841 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 30842 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 + - uid: 30843 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 30844 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - uid: 30845 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 30846 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 30847 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 30848 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 30849 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 30850 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 30851 + components: + - type: Transform + pos: -56.5,-47.5 + parent: 2 + - uid: 30854 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 30855 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 30856 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 30857 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 1133 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1216 + components: + - type: Transform + pos: 23.428246,-44.29248 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -21.474108,-12.354873 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -21.494991,-14.499998 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: -1.523819,-34.22611 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 18.421898,10.673895 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 24.929834,-55.500965 + parent: 2 + - uid: 12456 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -64.49474,-17.262877 + parent: 2 + - uid: 15913 + components: + - type: Transform + pos: 17.479317,18.696823 + parent: 2 + - uid: 18595 + components: + - type: Transform + pos: -61.509407,16.478907 + parent: 2 + - uid: 20576 + components: + - type: Transform + pos: -62.48842,-49.446716 + parent: 2 + - uid: 20615 + components: + - type: Transform + pos: 43.815727,-70.466515 + parent: 2 +- proto: CableMV + entities: + - uid: 316 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -79.5,-39.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 29.5,-58.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: -77.5,-38.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: 28.5,-58.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: -23.5,16.5 + parent: 2 + - uid: 10990 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - uid: 15944 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 16190 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 16582 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 16585 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 16586 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 16587 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 16595 + components: + - type: Transform + pos: -62.5,-26.5 + parent: 2 + - uid: 16729 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 16730 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 16731 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 16732 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 16733 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 16734 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 16735 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 16736 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - uid: 16737 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 16738 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 16739 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 16740 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 16741 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 16742 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 16743 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 16744 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 16745 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 16747 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 16748 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 16749 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 16750 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 16752 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 2 + - uid: 16753 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 16754 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 16755 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 16756 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 16757 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 16758 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 16759 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - uid: 16762 + components: + - type: Transform + pos: -8.5,-57.5 + parent: 2 + - uid: 16763 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 16764 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 16765 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 16766 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 2 + - uid: 16767 + components: + - type: Transform + pos: -9.5,-61.5 + parent: 2 + - uid: 16768 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - uid: 16769 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 16770 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 2 + - uid: 16771 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 + - uid: 16772 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 2 + - uid: 16773 + components: + - type: Transform + pos: -10.5,-66.5 + parent: 2 + - uid: 16774 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 16775 + components: + - type: Transform + pos: -12.5,-66.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + pos: -13.5,-66.5 + parent: 2 + - uid: 16777 + components: + - type: Transform + pos: -14.5,-66.5 + parent: 2 + - uid: 16778 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 16779 + components: + - type: Transform + pos: -15.5,-67.5 + parent: 2 + - uid: 16780 + components: + - type: Transform + pos: -15.5,-68.5 + parent: 2 + - uid: 16781 + components: + - type: Transform + pos: -15.5,-69.5 + parent: 2 + - uid: 16782 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - uid: 16783 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 16784 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 16785 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 16786 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 16787 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 16788 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 16789 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 16790 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - uid: 16791 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 16792 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 16793 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 16794 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 + - uid: 16795 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - uid: 16796 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 16797 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 16798 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - uid: 16799 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - uid: 16800 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 16801 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 16802 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - uid: 16803 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 16804 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 16805 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 16806 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 16807 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 2 + - uid: 16808 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 16809 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 16810 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 + - uid: 16811 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 2 + - uid: 16812 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 16813 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 16814 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 16815 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 16816 + components: + - type: Transform + pos: 30.5,-52.5 + parent: 2 + - uid: 16817 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - uid: 16818 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 16819 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 16820 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 16821 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 16822 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 2 + - uid: 16823 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 16824 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 16825 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + pos: 31.5,-61.5 + parent: 2 + - uid: 16827 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 2 + - uid: 16828 + components: + - type: Transform + pos: 30.5,-62.5 + parent: 2 + - uid: 16829 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 2 + - uid: 16830 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 2 + - uid: 16831 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 16832 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 2 + - uid: 16833 + components: + - type: Transform + pos: 27.5,-64.5 + parent: 2 + - uid: 16834 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 2 + - uid: 16835 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 2 + - uid: 16836 + components: + - type: Transform + pos: 26.5,-66.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: 26.5,-67.5 + parent: 2 + - uid: 16838 + components: + - type: Transform + pos: 26.5,-68.5 + parent: 2 + - uid: 16839 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 2 + - uid: 16840 + components: + - type: Transform + pos: 26.5,-70.5 + parent: 2 + - uid: 16841 + components: + - type: Transform + pos: 27.5,-70.5 + parent: 2 + - uid: 16842 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 2 + - uid: 16843 + components: + - type: Transform + pos: 25.5,-64.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + pos: 24.5,-64.5 + parent: 2 + - uid: 16845 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 2 + - uid: 16847 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 2 + - uid: 16849 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 2 + - uid: 16850 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 2 + - uid: 16851 + components: + - type: Transform + pos: 17.5,-64.5 + parent: 2 + - uid: 16852 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 2 + - uid: 16853 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 16855 + components: + - type: Transform + pos: 17.5,-60.5 + parent: 2 + - uid: 16856 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 16858 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - uid: 16859 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 16860 + components: + - type: Transform + pos: 17.5,-58.5 + parent: 2 + - uid: 16861 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 16862 + components: + - type: Transform + pos: 17.5,-56.5 + parent: 2 + - uid: 16863 + components: + - type: Transform + pos: 17.5,-55.5 + parent: 2 + - uid: 16864 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 + - uid: 16865 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 2 + - uid: 16866 + components: + - type: Transform + pos: 18.5,-53.5 + parent: 2 + - uid: 16867 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + pos: 17.5,-52.5 + parent: 2 + - uid: 16869 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 2 + - uid: 16870 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - uid: 16874 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 2 + - uid: 16875 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 2 + - uid: 16876 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 + - uid: 16878 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 16879 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 + - uid: 16880 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 16881 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 16882 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 16883 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 16885 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - uid: 16886 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 16887 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 16888 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 16889 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 16890 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + pos: 12.5,-64.5 + parent: 2 + - uid: 16894 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 2 + - uid: 16895 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 16896 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - uid: 16897 + components: + - type: Transform + pos: 13.5,-62.5 + parent: 2 + - uid: 16898 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 16899 + components: + - type: Transform + pos: 15.5,-62.5 + parent: 2 + - uid: 16900 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 16901 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 16902 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + pos: 11.5,-64.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + pos: 10.5,-64.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 + - uid: 16906 + components: + - type: Transform + pos: 10.5,-66.5 + parent: 2 + - uid: 16907 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 + - uid: 16908 + components: + - type: Transform + pos: 10.5,-68.5 + parent: 2 + - uid: 16909 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - uid: 16910 + components: + - type: Transform + pos: 10.5,-70.5 + parent: 2 + - uid: 16911 + components: + - type: Transform + pos: 10.5,-71.5 + parent: 2 + - uid: 16912 + components: + - type: Transform + pos: 10.5,-72.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + pos: 10.5,-73.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + pos: 10.5,-74.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + pos: 10.5,-75.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + pos: 10.5,-76.5 + parent: 2 + - uid: 16917 + components: + - type: Transform + pos: 10.5,-77.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + pos: 11.5,-77.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + pos: 12.5,-78.5 + parent: 2 + - uid: 16921 + components: + - type: Transform + pos: 13.5,-78.5 + parent: 2 + - uid: 16922 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 16923 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 2 + - uid: 16929 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 16931 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 + - uid: 16933 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 16934 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 16935 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 16936 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 16937 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 16939 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 16940 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 16941 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 16943 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 16944 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 16945 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + pos: 35.5,-59.5 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: 35.5,-60.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 17513 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 17517 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 17639 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 17929 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 17930 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - uid: 17931 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - uid: 17932 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - uid: 17933 + components: + - type: Transform + pos: -45.5,-23.5 + parent: 2 + - uid: 17935 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 + - uid: 17936 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 17937 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 2 + - uid: 17938 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - uid: 17939 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 17940 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 17941 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 17942 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 17943 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 17944 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 17945 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 17946 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 17947 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 17948 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 17949 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 17950 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 17951 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 17952 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 17953 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 17954 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 17955 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 17956 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 17957 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 17958 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 17959 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 17961 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 17962 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 17963 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 17964 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 17965 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 17966 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 17967 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 2 + - uid: 17968 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 + - uid: 17969 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - uid: 17970 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 2 + - uid: 17971 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 + - uid: 17972 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -55.5,-48.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: -55.5,-47.5 + parent: 2 + - uid: 18942 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 18943 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 18944 + components: + - type: Transform + pos: -55.5,-44.5 + parent: 2 + - uid: 18945 + components: + - type: Transform + pos: -55.5,-43.5 + parent: 2 + - uid: 18946 + components: + - type: Transform + pos: -54.5,-43.5 + parent: 2 + - uid: 18947 + components: + - type: Transform + pos: -53.5,-43.5 + parent: 2 + - uid: 18948 + components: + - type: Transform + pos: -52.5,-43.5 + parent: 2 + - uid: 18949 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 18950 + components: + - type: Transform + pos: -51.5,-44.5 + parent: 2 + - uid: 18951 + components: + - type: Transform + pos: -51.5,-45.5 + parent: 2 + - uid: 18952 + components: + - type: Transform + pos: -50.5,-45.5 + parent: 2 + - uid: 18953 + components: + - type: Transform + pos: -49.5,-45.5 + parent: 2 + - uid: 18954 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 18955 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - uid: 18956 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 18957 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 18958 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 18959 + components: + - type: Transform + pos: -44.5,-47.5 + parent: 2 + - uid: 18960 + components: + - type: Transform + pos: -44.5,-46.5 + parent: 2 + - uid: 18961 + components: + - type: Transform + pos: -44.5,-45.5 + parent: 2 + - uid: 18962 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 + - uid: 18963 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 18964 + components: + - type: Transform + pos: -46.5,-48.5 + parent: 2 + - uid: 18965 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 18967 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 + - uid: 18968 + components: + - type: Transform + pos: -51.5,-41.5 + parent: 2 + - uid: 18969 + components: + - type: Transform + pos: -51.5,-40.5 + parent: 2 + - uid: 18970 + components: + - type: Transform + pos: -51.5,-39.5 + parent: 2 + - uid: 18971 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 18972 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - uid: 18973 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - uid: 18974 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 2 + - uid: 18975 + components: + - type: Transform + pos: -50.5,-35.5 + parent: 2 + - uid: 18976 + components: + - type: Transform + pos: -51.5,-35.5 + parent: 2 + - uid: 18977 + components: + - type: Transform + pos: -52.5,-35.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: -53.5,-35.5 + parent: 2 + - uid: 18979 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - uid: 18980 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 2 + - uid: 18981 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 2 + - uid: 18982 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 2 + - uid: 18983 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 18984 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 18985 + components: + - type: Transform + pos: -58.5,-35.5 + parent: 2 + - uid: 18986 + components: + - type: Transform + pos: -59.5,-35.5 + parent: 2 + - uid: 18987 + components: + - type: Transform + pos: -60.5,-35.5 + parent: 2 + - uid: 18988 + components: + - type: Transform + pos: -61.5,-35.5 + parent: 2 + - uid: 18989 + components: + - type: Transform + pos: -62.5,-35.5 + parent: 2 + - uid: 18990 + components: + - type: Transform + pos: -63.5,-35.5 + parent: 2 + - uid: 18991 + components: + - type: Transform + pos: -64.5,-35.5 + parent: 2 + - uid: 18992 + components: + - type: Transform + pos: -65.5,-35.5 + parent: 2 + - uid: 18993 + components: + - type: Transform + pos: -66.5,-35.5 + parent: 2 + - uid: 18994 + components: + - type: Transform + pos: -67.5,-35.5 + parent: 2 + - uid: 18995 + components: + - type: Transform + pos: -68.5,-35.5 + parent: 2 + - uid: 18996 + components: + - type: Transform + pos: -69.5,-35.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: -69.5,-34.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: -70.5,-34.5 + parent: 2 + - uid: 18999 + components: + - type: Transform + pos: -71.5,-34.5 + parent: 2 + - uid: 19000 + components: + - type: Transform + pos: -72.5,-34.5 + parent: 2 + - uid: 19001 + components: + - type: Transform + pos: -73.5,-34.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + pos: -74.5,-34.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + pos: -74.5,-33.5 + parent: 2 + - uid: 19004 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 2 + - uid: 19005 + components: + - type: Transform + pos: -75.5,-34.5 + parent: 2 + - uid: 19006 + components: + - type: Transform + pos: -76.5,-34.5 + parent: 2 + - uid: 19007 + components: + - type: Transform + pos: -77.5,-34.5 + parent: 2 + - uid: 19008 + components: + - type: Transform + pos: -78.5,-34.5 + parent: 2 + - uid: 19009 + components: + - type: Transform + pos: -78.5,-35.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: -78.5,-36.5 + parent: 2 + - uid: 19011 + components: + - type: Transform + pos: -78.5,-37.5 + parent: 2 + - uid: 19012 + components: + - type: Transform + pos: -78.5,-38.5 + parent: 2 + - uid: 19013 + components: + - type: Transform + pos: -79.5,-38.5 + parent: 2 + - uid: 19014 + components: + - type: Transform + pos: -80.5,-38.5 + parent: 2 + - uid: 19015 + components: + - type: Transform + pos: -81.5,-38.5 + parent: 2 + - uid: 19016 + components: + - type: Transform + pos: -82.5,-38.5 + parent: 2 + - uid: 19017 + components: + - type: Transform + pos: -82.5,-37.5 + parent: 2 + - uid: 19018 + components: + - type: Transform + pos: -82.5,-36.5 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: -82.5,-35.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: -82.5,-34.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: -82.5,-33.5 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: -83.5,-33.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: -84.5,-33.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: -84.5,-38.5 + parent: 2 + - uid: 19025 + components: + - type: Transform + pos: -85.5,-38.5 + parent: 2 + - uid: 19026 + components: + - type: Transform + pos: -86.5,-38.5 + parent: 2 + - uid: 19027 + components: + - type: Transform + pos: -87.5,-38.5 + parent: 2 + - uid: 19028 + components: + - type: Transform + pos: -88.5,-38.5 + parent: 2 + - uid: 19029 + components: + - type: Transform + pos: -89.5,-38.5 + parent: 2 + - uid: 19030 + components: + - type: Transform + pos: -90.5,-38.5 + parent: 2 + - uid: 19031 + components: + - type: Transform + pos: -91.5,-38.5 + parent: 2 + - uid: 19032 + components: + - type: Transform + pos: -91.5,-37.5 + parent: 2 + - uid: 19033 + components: + - type: Transform + pos: -91.5,-36.5 + parent: 2 + - uid: 19034 + components: + - type: Transform + pos: -91.5,-35.5 + parent: 2 + - uid: 19035 + components: + - type: Transform + pos: -91.5,-34.5 + parent: 2 + - uid: 19036 + components: + - type: Transform + pos: -91.5,-33.5 + parent: 2 + - uid: 19037 + components: + - type: Transform + pos: -91.5,-32.5 + parent: 2 + - uid: 19038 + components: + - type: Transform + pos: -91.5,-31.5 + parent: 2 + - uid: 19039 + components: + - type: Transform + pos: -91.5,-30.5 + parent: 2 + - uid: 19040 + components: + - type: Transform + pos: -91.5,-29.5 + parent: 2 + - uid: 19041 + components: + - type: Transform + pos: -91.5,-28.5 + parent: 2 + - uid: 19042 + components: + - type: Transform + pos: -91.5,-27.5 + parent: 2 + - uid: 19043 + components: + - type: Transform + pos: -90.5,-27.5 + parent: 2 + - uid: 19044 + components: + - type: Transform + pos: -83.5,-38.5 + parent: 2 + - uid: 19045 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 19046 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 19047 + components: + - type: Transform + pos: -48.5,-34.5 + parent: 2 + - uid: 19048 + components: + - type: Transform + pos: -47.5,-34.5 + parent: 2 + - uid: 19049 + components: + - type: Transform + pos: -46.5,-34.5 + parent: 2 + - uid: 19050 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - uid: 19051 + components: + - type: Transform + pos: -44.5,-34.5 + parent: 2 + - uid: 19052 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 2 + - uid: 19053 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - uid: 19054 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 19055 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 19056 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 19057 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 19058 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 19059 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 19060 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 19061 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 19062 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 19063 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 19064 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 19066 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 19069 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 19070 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 19073 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 19074 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 19075 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 19076 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 19077 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 19078 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 19079 + components: + - type: Transform + pos: -43.5,-46.5 + parent: 2 + - uid: 19080 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 2 + - uid: 19081 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 19082 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 19083 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 19084 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 19085 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 19086 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 19087 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 19088 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 19089 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 19090 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 19091 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 19092 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 19093 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 19094 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 19096 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 19097 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 2 + - uid: 19098 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 19099 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 19100 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 19103 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 + - uid: 19104 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 19105 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - uid: 19106 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 19107 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - uid: 19109 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 19110 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 + - uid: 19111 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 19112 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 19113 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 19114 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 19115 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 19116 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 19117 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 19118 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 19119 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 19120 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 19121 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 19122 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 19123 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - uid: 19124 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 19125 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 19126 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 19127 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 19128 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 19129 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 19130 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 19131 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 19132 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 19133 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 19134 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 + - uid: 19135 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 19136 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 19137 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 19138 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 19139 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 19140 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 19141 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 19142 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 19144 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 19147 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 19148 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 19149 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 19150 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 19151 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 19152 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 19153 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 19154 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 19155 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 19156 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 19158 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 19159 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 19160 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 19161 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 19164 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 19165 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 19166 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 19169 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 19170 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 19173 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 19174 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 19175 + components: + - type: Transform + pos: -27.5,-54.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -27.5,-53.5 + parent: 2 + - uid: 19177 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 19178 + components: + - type: Transform + pos: -27.5,-52.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: -27.5,-51.5 + parent: 2 + - uid: 19180 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - uid: 19183 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 19184 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 19185 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 19186 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 19187 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 19188 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 19191 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 19192 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 19193 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 19194 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 + - uid: 19197 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - uid: 19199 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 19201 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 19203 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 19204 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 19205 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 19209 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 19210 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 19211 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - uid: 19212 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 19213 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 19214 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 19218 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 19219 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 19220 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 19223 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 19226 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 19227 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 19228 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 19229 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 19232 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 + - uid: 19234 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - uid: 19237 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 19238 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 19239 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 19240 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 19242 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 19245 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 19248 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 19254 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 19259 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 19261 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 19264 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 19266 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 19267 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 19269 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 19270 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 19272 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 19275 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 19276 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 19277 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 19278 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 19279 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 19280 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 19281 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 19282 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 19283 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 19284 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 19285 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 19286 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 19287 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 19288 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 19289 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 19290 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 19291 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 19292 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 19293 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 2 + - uid: 19294 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 19295 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 19296 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 19297 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 19298 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 19306 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 19307 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 19308 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 19309 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 19310 + components: + - type: Transform + pos: 43.5,-29.5 + parent: 2 + - uid: 19311 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 19312 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 19313 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 19314 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 19316 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 19319 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 19320 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 19321 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 19322 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 19323 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 19324 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 19325 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 19326 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 19327 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 19328 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 2 + - uid: 19329 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 19330 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - uid: 19331 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 19332 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 + - uid: 19333 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 19334 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 19335 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 19337 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 19338 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 19339 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 19340 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - uid: 19342 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 19343 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 19344 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 19345 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 19346 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - uid: 19349 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 19350 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 + - uid: 19351 + components: + - type: Transform + pos: 34.5,-39.5 + parent: 2 + - uid: 19352 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 2 + - uid: 19353 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 19354 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 2 + - uid: 19355 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - uid: 19356 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 2 + - uid: 19357 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 + - uid: 19358 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 2 + - uid: 19359 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 19360 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 19361 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - uid: 19363 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 19364 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 19365 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 19366 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 19367 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 19368 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 19369 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 19370 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 19371 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 19372 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 19373 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 19374 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 19375 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 19377 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 19378 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 19379 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 19380 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 19381 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 19382 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 19383 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 19384 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 19385 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 19386 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 19387 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 19388 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 19389 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 19390 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 19391 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 19392 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 19393 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 19394 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 19395 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 19396 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 19397 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 19398 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 19399 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 19400 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 19401 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 19402 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 19403 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 19404 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 19405 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 19406 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 19407 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 19408 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 19409 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 19410 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 19411 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 19412 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 19413 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 19414 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 19415 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 2 + - uid: 19416 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 19417 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 19418 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 19419 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 19420 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 19421 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 19422 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 19423 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 19424 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 19425 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 19426 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 19427 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 19428 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 19429 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 19430 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 19431 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 19432 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 19433 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 19434 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 19435 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 19436 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 19437 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 19438 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 19439 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 19440 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 19441 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 19442 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 19444 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 19445 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 19446 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 19447 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 19448 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 19449 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 19450 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 19451 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 19452 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 19453 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 19454 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 + - uid: 19455 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 19456 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 19457 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 19458 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 19459 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 19460 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 19461 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 19462 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 19463 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 19466 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 19467 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 19468 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 19469 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 19470 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 19471 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 19472 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 19473 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 19474 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 19475 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 19476 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 19477 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 19478 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 19479 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 19480 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 19481 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 19482 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 19483 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 19484 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 19485 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 19486 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 19488 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 19489 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 19490 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 19491 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 19492 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 19493 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 19494 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 19495 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 19496 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 19497 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 19498 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 19499 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 19500 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 19501 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 19502 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 19503 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 19504 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 19505 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 19506 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 19507 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 19508 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 19509 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 19510 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 19511 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 19512 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 19513 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 19514 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 19515 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 19516 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 19517 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - uid: 19518 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 19519 + components: + - type: Transform + pos: 42.5,11.5 + parent: 2 + - uid: 19520 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 19521 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 19522 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 19523 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 19526 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 19529 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 19530 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 19531 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 19533 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 19534 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 19535 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 19536 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 19537 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 19538 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 19539 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 19540 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 19541 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 19542 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 19543 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 19544 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 19545 + components: + - type: Transform + pos: 51.5,3.5 + parent: 2 + - uid: 19546 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 19547 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 19548 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 19549 + components: + - type: Transform + pos: 53.5,1.5 + parent: 2 + - uid: 19550 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 19551 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 19552 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 19554 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + pos: 55.5,-3.5 + parent: 2 + - uid: 19565 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 19567 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 19568 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 19569 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 19570 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 19571 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 19572 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 19573 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 19574 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 19575 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 19576 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 19577 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 19578 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 19579 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 19580 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 19581 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 19582 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 19583 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 19584 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 19585 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 19586 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 19587 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 19588 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 19589 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 19590 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 19591 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 19593 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 19594 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 19595 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 19596 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 19597 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 19598 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 19599 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 19609 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 19610 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 19611 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 19612 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 19613 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 19614 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 19615 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 19616 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 19620 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 19621 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 19622 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 19623 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 19624 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 19625 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 19626 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 19627 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 19628 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 19629 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 19630 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 19631 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 19632 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 19633 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 19634 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 19635 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 19636 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 19637 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 19638 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 19639 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 19640 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 19641 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 19642 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 19643 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 19646 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 19647 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 19648 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 19649 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 19650 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 19651 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 19652 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 19653 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 19654 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 19655 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 19656 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 19657 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 19659 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 19661 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 19663 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 19664 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 19665 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - uid: 19666 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 19667 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 19668 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 19669 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 19671 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 19672 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 19673 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 19674 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 19675 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 19676 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 19677 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 19678 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 19679 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 19680 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 19681 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 19682 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 19683 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 19684 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 19685 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 19686 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 19687 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 19688 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 19689 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 19690 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 19691 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 19692 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 19693 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 19694 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 19695 + components: + - type: Transform + pos: 30.5,32.5 + parent: 2 + - uid: 19696 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 19697 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 19698 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 19699 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 19700 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 19701 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 19702 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 19703 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 19704 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 19705 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 19706 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 19707 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 19708 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 19709 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 19710 + components: + - type: Transform + pos: 31.5,32.5 + parent: 2 + - uid: 19711 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 + - uid: 19712 + components: + - type: Transform + pos: 33.5,32.5 + parent: 2 + - uid: 19713 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 19714 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 19715 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 19716 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 19717 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 19718 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 + - uid: 19719 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 19720 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 19721 + components: + - type: Transform + pos: 43.5,20.5 + parent: 2 + - uid: 19722 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 19723 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 19724 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 19725 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 19726 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 19727 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 19728 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 19730 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 19731 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 19732 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 19733 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 19734 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 19735 + components: + - type: Transform + pos: 40.5,25.5 + parent: 2 + - uid: 19736 + components: + - type: Transform + pos: 40.5,26.5 + parent: 2 + - uid: 19737 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 19738 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 19739 + components: + - type: Transform + pos: 47.5,15.5 + parent: 2 + - uid: 19740 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 19741 + components: + - type: Transform + pos: 49.5,15.5 + parent: 2 + - uid: 19742 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 19743 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 19744 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 19745 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 19746 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 19747 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 19748 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 19749 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 19750 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 19751 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 19752 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 19753 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 19754 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 19755 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 19756 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 19757 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 19758 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 19760 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 19761 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 19762 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 19763 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 19764 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 19765 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 19766 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 19767 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 19768 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 19769 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 19770 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 19771 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 19772 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 19774 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 19775 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 19776 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 19777 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 19778 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 19780 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 19781 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 19782 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 19783 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 19784 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 19785 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 19786 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 19790 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 19791 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 19792 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 19793 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 19794 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 19795 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 19796 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 19797 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 19798 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 19799 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 19800 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 19801 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 19802 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 19803 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 19804 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 19805 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 19806 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 19807 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 19808 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 19809 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 19810 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 19811 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 19812 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 19813 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 19814 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 19815 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 19816 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 19817 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 19818 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 19820 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 19821 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 19822 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 19823 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 19824 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 19825 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 19826 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 19827 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 19828 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 19829 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 19830 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 19831 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 19832 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 19833 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 19834 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 19835 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 19836 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 19837 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 19838 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 19839 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 19840 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 19841 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 19842 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 19843 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 2 + - uid: 19844 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - uid: 19845 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 19846 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 19847 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 19848 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 19849 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 19850 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 19851 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 19852 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 19853 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 19854 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 19855 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 19856 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 19857 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 19858 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 19859 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 19860 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 19861 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 19862 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 19863 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 19865 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 19866 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 19867 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 19868 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 19869 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 19870 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 19871 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 19872 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 19873 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 19875 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 19876 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 19877 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 19878 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 19880 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 19881 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 19882 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 19884 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 19885 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 19887 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 19888 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 19889 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 19890 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 19891 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 19892 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 19893 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 19894 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 19895 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 19897 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 19898 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 19899 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 19900 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 19902 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 19903 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 19904 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 19905 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 19906 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 19907 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 19908 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 19909 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 19910 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 19911 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 19912 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 19913 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 19914 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 19915 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 19917 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 19918 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 19919 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 19920 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 19921 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 19922 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 19923 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 19924 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 19925 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 19926 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 19927 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 19928 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 19929 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 19930 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 19931 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 19932 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 19933 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 19947 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 19949 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 19950 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 19956 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 19957 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 19958 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 19959 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 19960 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 19961 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 19962 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 19963 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 19964 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 19966 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 19967 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 19968 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 19969 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 19970 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 19971 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 19972 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 19973 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 19974 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 19975 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 19976 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 19977 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 19978 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 19979 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 19980 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 19981 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 19982 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 19983 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 19984 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 19985 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 19986 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 19987 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 19988 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 19989 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 19992 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 19993 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 19994 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 19995 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 19997 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 19998 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 19999 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 20000 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 20002 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 20005 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 20006 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 20007 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 20008 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 20009 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 20010 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 20011 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 20012 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 20013 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 20014 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 20015 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 20016 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 20017 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 20018 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 20019 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 20020 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 20021 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 20022 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 20023 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 20024 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 20025 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 20026 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 20027 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 20028 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 20029 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 20030 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 20031 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 20032 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 20033 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 20034 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 20035 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 20036 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 20037 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 20038 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 20039 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 20040 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 20041 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 20042 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 20043 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 20044 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 20045 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 20046 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 20047 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - uid: 20048 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 20049 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 20050 + components: + - type: Transform + pos: -23.5,1.5 + parent: 2 + - uid: 20051 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 20052 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 20053 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 20054 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 20055 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 20056 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 20057 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 20058 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 20059 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 20060 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 20061 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 20062 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 20063 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 20064 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 20065 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 20066 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 20067 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 20068 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 20069 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 20070 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 20071 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 20072 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 20073 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 20074 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 20075 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 20076 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 20077 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 20078 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 20079 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 20080 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 20081 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 20082 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 20083 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 20084 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 20085 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 20086 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 20087 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 20088 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 20090 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 20091 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 20092 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 20093 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 20094 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 20095 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 20096 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 20097 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 20098 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 20103 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 20104 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 20105 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 20106 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 20107 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 20108 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 20109 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 20110 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 20111 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 20112 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 20114 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 20115 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 20116 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 20117 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 + - uid: 20118 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 20119 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 20122 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 20126 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 20127 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 20128 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 20129 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 20130 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 20131 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 20132 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 20133 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 20134 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 20135 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 20138 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 20139 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 20141 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 20142 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 20144 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 20145 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 20147 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 20148 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 20149 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 20150 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 20151 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 20156 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 20157 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 20158 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 20159 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 20160 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 20161 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 20163 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 20164 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 20165 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 20166 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 20167 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 20168 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 20169 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 20170 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 20171 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 20172 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 20173 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 20174 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 20175 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 20176 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 20177 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 20178 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 20179 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 20180 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 20184 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 20185 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 20186 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 20187 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 20188 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 20189 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 20190 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 20191 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 20192 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 20193 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 20194 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 20195 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 20196 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 20197 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 20198 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 20199 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 20200 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 20201 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 20202 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 20203 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 20206 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 20207 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + pos: -22.5,6.5 + parent: 2 + - uid: 20209 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 20210 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 20211 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - uid: 20212 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 20213 + components: + - type: Transform + pos: -24.5,9.5 + parent: 2 + - uid: 20214 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 20215 + components: + - type: Transform + pos: -26.5,9.5 + parent: 2 + - uid: 20217 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 20218 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 + - uid: 20219 + components: + - type: Transform + pos: -16.5,16.5 + parent: 2 + - uid: 20220 + components: + - type: Transform + pos: -18.5,16.5 + parent: 2 + - uid: 20221 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 + - uid: 20222 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 20223 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 20224 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 20225 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 20226 + components: + - type: Transform + pos: -14.5,11.5 + parent: 2 + - uid: 20227 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 20232 + components: + - type: Transform + pos: -24.5,10.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 20234 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 20235 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 20236 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 20237 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 20238 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - uid: 20239 + components: + - type: Transform + pos: -24.5,17.5 + parent: 2 + - uid: 20240 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 20241 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 20247 + components: + - type: Transform + pos: -53.5,10.5 + parent: 2 + - uid: 20248 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 + - uid: 20249 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 20250 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 + - uid: 20251 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 20252 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 20253 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 20254 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 20255 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 20256 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 20258 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 20260 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 20264 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 20268 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 20308 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 + - uid: 20310 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 2 + - uid: 20312 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: -54.5,-21.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + pos: -52.5,-21.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + pos: -63.5,-20.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + pos: -64.5,-19.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + pos: -65.5,-19.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 20338 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 20339 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 20340 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 20341 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 20342 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 20343 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 20344 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 20352 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 20353 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 20360 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 20361 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 20362 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 20365 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 20366 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 20367 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 20368 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 20369 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 20370 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 20371 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 20373 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 20374 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 20375 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 20384 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 20385 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 20387 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 20388 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 20389 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 20390 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 20391 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 20393 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 20394 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 20395 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 20396 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 20397 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 20398 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 20399 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 20400 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 20401 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 20402 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 20403 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 20405 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 20407 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 20408 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 20410 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 20411 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 20412 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 20413 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 20418 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 20419 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 20420 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 20421 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 20422 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 20423 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 20424 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 20425 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 20426 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 20427 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 20428 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 20429 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 20430 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 20431 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 20432 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 20433 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 20434 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 20435 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 20437 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 20438 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 20439 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 20440 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 20441 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 20443 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 20444 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 20445 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 20446 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 20447 + components: + - type: Transform + pos: -38.5,14.5 + parent: 2 + - uid: 20448 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 20449 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 20453 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 20455 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 20456 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 20457 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 20458 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - uid: 20459 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 20460 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 20471 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 20472 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 20473 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 20474 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 20475 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 20476 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 20477 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 20478 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 20479 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 20624 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 20625 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 20626 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 20627 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 + - uid: 20628 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 20629 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 20630 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 20631 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 20632 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 20633 + components: + - type: Transform + pos: -55.5,6.5 + parent: 2 + - uid: 20634 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 20635 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 20637 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 20638 + components: + - type: Transform + pos: -60.5,6.5 + parent: 2 + - uid: 20639 + components: + - type: Transform + pos: -61.5,6.5 + parent: 2 + - uid: 20640 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - uid: 20641 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 20642 + components: + - type: Transform + pos: -67.5,5.5 + parent: 2 + - uid: 20643 + components: + - type: Transform + pos: -67.5,4.5 + parent: 2 + - uid: 20644 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 + - uid: 20645 + components: + - type: Transform + pos: -67.5,2.5 + parent: 2 + - uid: 20646 + components: + - type: Transform + pos: -67.5,1.5 + parent: 2 + - uid: 20647 + components: + - type: Transform + pos: -67.5,0.5 + parent: 2 + - uid: 20648 + components: + - type: Transform + pos: -67.5,-0.5 + parent: 2 + - uid: 20649 + components: + - type: Transform + pos: -67.5,-1.5 + parent: 2 + - uid: 20650 + components: + - type: Transform + pos: -68.5,-1.5 + parent: 2 + - uid: 20651 + components: + - type: Transform + pos: -69.5,-1.5 + parent: 2 + - uid: 20652 + components: + - type: Transform + pos: -70.5,-1.5 + parent: 2 + - uid: 20653 + components: + - type: Transform + pos: -71.5,-1.5 + parent: 2 + - uid: 20654 + components: + - type: Transform + pos: -71.5,-0.5 + parent: 2 + - uid: 20655 + components: + - type: Transform + pos: -71.5,0.5 + parent: 2 + - uid: 20656 + components: + - type: Transform + pos: -71.5,1.5 + parent: 2 + - uid: 20657 + components: + - type: Transform + pos: -71.5,2.5 + parent: 2 + - uid: 20658 + components: + - type: Transform + pos: -71.5,3.5 + parent: 2 + - uid: 20660 + components: + - type: Transform + pos: -71.5,4.5 + parent: 2 + - uid: 20661 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 20662 + components: + - type: Transform + pos: -68.5,-3.5 + parent: 2 + - uid: 20663 + components: + - type: Transform + pos: -68.5,-4.5 + parent: 2 + - uid: 20664 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 + - uid: 20665 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 20666 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 20667 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 20668 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 20669 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 20670 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 20671 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 20672 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 20673 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 20674 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 20675 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 20676 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 20677 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 20681 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 20682 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 20683 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 20684 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 20685 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 20686 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 20687 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 20688 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 20689 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 20690 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 20691 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 20692 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 20693 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 20694 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 20695 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 20696 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 20697 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 20698 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 20699 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 20700 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 20701 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 20702 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 20703 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 20704 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 20705 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 20708 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 20709 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 20710 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 20711 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 20712 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 20713 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 20722 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 2 + - uid: 20723 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 2 + - uid: 20724 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 20725 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 20726 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - uid: 20727 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 20728 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 20729 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 20730 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 2 + - uid: 20731 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 20732 + components: + - type: Transform + pos: -51.5,-26.5 + parent: 2 + - uid: 20733 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 20734 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + pos: -62.5,-25.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 20746 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 20747 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 20748 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 20749 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 20750 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 20751 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 20752 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 20753 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 20754 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 2 + - uid: 20755 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 2 + - uid: 20758 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 2 + - uid: 20759 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 20760 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 20761 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 20763 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - uid: 20764 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 2 + - uid: 20765 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 20768 + components: + - type: Transform + pos: 39.5,-34.5 + parent: 2 + - uid: 20769 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 20770 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 20771 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 2 + - uid: 20772 + components: + - type: Transform + pos: 43.5,-34.5 + parent: 2 + - uid: 20773 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 20774 + components: + - type: Transform + pos: 45.5,-34.5 + parent: 2 + - uid: 20775 + components: + - type: Transform + pos: 46.5,-34.5 + parent: 2 + - uid: 20776 + components: + - type: Transform + pos: 47.5,-34.5 + parent: 2 + - uid: 20777 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 2 + - uid: 20778 + components: + - type: Transform + pos: 47.5,-33.5 + parent: 2 + - uid: 20779 + components: + - type: Transform + pos: 45.5,-33.5 + parent: 2 + - uid: 20780 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 20781 + components: + - type: Transform + pos: 45.5,-32.5 + parent: 2 + - uid: 20782 + components: + - type: Transform + pos: 45.5,-31.5 + parent: 2 + - uid: 20785 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 2 + - uid: 20786 + components: + - type: Transform + pos: 47.5,-31.5 + parent: 2 + - uid: 20787 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 + - uid: 20788 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 2 + - uid: 20789 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - uid: 20790 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 20791 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 20792 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 20793 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - uid: 20794 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - uid: 20795 + components: + - type: Transform + pos: 49.5,-32.5 + parent: 2 + - uid: 20796 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 20797 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 2 + - uid: 20801 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 20802 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 20803 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 2 + - uid: 20804 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 20805 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 20806 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 20812 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 20813 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 20851 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 20853 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - uid: 20854 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 2 + - uid: 20855 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - uid: 20856 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 2 + - uid: 20857 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 20858 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 2 + - uid: 20859 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 2 + - uid: 20860 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 2 + - uid: 20861 + components: + - type: Transform + pos: 32.5,-69.5 + parent: 2 + - uid: 20863 + components: + - type: Transform + pos: 31.5,-66.5 + parent: 2 + - uid: 20864 + components: + - type: Transform + pos: 32.5,-70.5 + parent: 2 + - uid: 20867 + components: + - type: Transform + pos: 31.5,-70.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 21733 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 21819 + components: + - type: Transform + pos: -15.5,16.5 + parent: 2 + - uid: 21820 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 21821 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 21822 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 21823 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 21828 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 21829 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 21830 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 21831 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 21832 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 21833 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 21834 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 21863 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 21864 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 21952 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 21956 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 21957 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 22159 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 22167 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 22171 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 22172 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 + - uid: 22173 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 22196 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 22197 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 22240 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - uid: 22241 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 22242 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 22640 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 22651 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 22652 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 22654 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 22775 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 22838 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 22839 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 22840 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 22841 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 22842 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 22843 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 22844 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 22845 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 22847 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 22848 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 22849 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 22850 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 22851 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 22852 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 22854 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 22855 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 23400 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 23455 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 23456 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 23457 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 23458 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 23459 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 23460 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 23586 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 24079 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 24080 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 24081 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 24082 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 24083 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 24084 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 24085 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 24086 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 24087 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 24088 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 24089 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 24090 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 24091 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 24092 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 24093 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 24094 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 24095 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 24096 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 24097 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 24098 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 24099 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 24100 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 24101 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 24102 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 24103 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 24104 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 24105 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 24459 + components: + - type: Transform + pos: -62.5,-36.5 + parent: 2 + - uid: 24460 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + pos: -62.5,-38.5 + parent: 2 + - uid: 24462 + components: + - type: Transform + pos: -62.5,-39.5 + parent: 2 + - uid: 24463 + components: + - type: Transform + pos: -62.5,-40.5 + parent: 2 + - uid: 24464 + components: + - type: Transform + pos: -63.5,-40.5 + parent: 2 + - uid: 24506 + components: + - type: Transform + pos: -53.5,-42.5 + parent: 2 + - uid: 24534 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 24535 + components: + - type: Transform + pos: -51.5,-46.5 + parent: 2 + - uid: 24536 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 + - uid: 24537 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - uid: 24538 + components: + - type: Transform + pos: -52.5,-49.5 + parent: 2 + - uid: 24539 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - uid: 24540 + components: + - type: Transform + pos: -52.5,-51.5 + parent: 2 + - uid: 24541 + components: + - type: Transform + pos: -53.5,-51.5 + parent: 2 + - uid: 24543 + components: + - type: Transform + pos: -53.5,-52.5 + parent: 2 + - uid: 24585 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 24586 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 24587 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 25270 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 26433 + components: + - type: Transform + pos: -68.5,54.5 + parent: 2 + - uid: 26906 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 27672 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 27676 + components: + - type: Transform + pos: -49.5,16.5 + parent: 2 + - uid: 27680 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 28120 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 28143 + components: + - type: Transform + pos: -72.5,55.5 + parent: 2 + - uid: 28144 + components: + - type: Transform + pos: -71.5,55.5 + parent: 2 + - uid: 28145 + components: + - type: Transform + pos: -70.5,55.5 + parent: 2 + - uid: 28146 + components: + - type: Transform + pos: -69.5,55.5 + parent: 2 + - uid: 28147 + components: + - type: Transform + pos: -68.5,55.5 + parent: 2 + - uid: 28148 + components: + - type: Transform + pos: -68.5,56.5 + parent: 2 + - uid: 28149 + components: + - type: Transform + pos: -68.5,57.5 + parent: 2 + - uid: 28150 + components: + - type: Transform + pos: -68.5,58.5 + parent: 2 + - uid: 28151 + components: + - type: Transform + pos: -68.5,59.5 + parent: 2 + - uid: 28152 + components: + - type: Transform + pos: -68.5,60.5 + parent: 2 + - uid: 28153 + components: + - type: Transform + pos: -69.5,60.5 + parent: 2 + - uid: 28154 + components: + - type: Transform + pos: -69.5,61.5 + parent: 2 + - uid: 28155 + components: + - type: Transform + pos: -69.5,62.5 + parent: 2 + - uid: 28156 + components: + - type: Transform + pos: -69.5,63.5 + parent: 2 + - uid: 28157 + components: + - type: Transform + pos: -70.5,63.5 + parent: 2 + - uid: 28158 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - uid: 28159 + components: + - type: Transform + pos: -75.5,55.5 + parent: 2 + - uid: 28160 + components: + - type: Transform + pos: -74.5,55.5 + parent: 2 + - uid: 28161 + components: + - type: Transform + pos: -73.5,55.5 + parent: 2 + - uid: 28162 + components: + - type: Transform + pos: -75.5,56.5 + parent: 2 + - uid: 28163 + components: + - type: Transform + pos: -75.5,57.5 + parent: 2 + - uid: 28164 + components: + - type: Transform + pos: -76.5,57.5 + parent: 2 + - uid: 28165 + components: + - type: Transform + pos: -77.5,57.5 + parent: 2 + - uid: 28166 + components: + - type: Transform + pos: -75.5,53.5 + parent: 2 + - uid: 28167 + components: + - type: Transform + pos: -75.5,54.5 + parent: 2 + - uid: 28168 + components: + - type: Transform + pos: -75.5,52.5 + parent: 2 + - uid: 28169 + components: + - type: Transform + pos: -68.5,52.5 + parent: 2 + - uid: 28170 + components: + - type: Transform + pos: -68.5,53.5 + parent: 2 + - uid: 28171 + components: + - type: Transform + pos: -74.5,52.5 + parent: 2 + - uid: 28172 + components: + - type: Transform + pos: -68.5,51.5 + parent: 2 + - uid: 28173 + components: + - type: Transform + pos: -68.5,50.5 + parent: 2 + - uid: 28174 + components: + - type: Transform + pos: -68.5,49.5 + parent: 2 + - uid: 28176 + components: + - type: Transform + pos: -67.5,49.5 + parent: 2 + - uid: 28177 + components: + - type: Transform + pos: -66.5,49.5 + parent: 2 + - uid: 28178 + components: + - type: Transform + pos: -65.5,49.5 + parent: 2 + - uid: 28179 + components: + - type: Transform + pos: -64.5,49.5 + parent: 2 + - uid: 28180 + components: + - type: Transform + pos: -63.5,49.5 + parent: 2 + - uid: 28181 + components: + - type: Transform + pos: -62.5,49.5 + parent: 2 + - uid: 28182 + components: + - type: Transform + pos: -61.5,49.5 + parent: 2 + - uid: 28183 + components: + - type: Transform + pos: -60.5,49.5 + parent: 2 + - uid: 28184 + components: + - type: Transform + pos: -59.5,49.5 + parent: 2 + - uid: 28185 + components: + - type: Transform + pos: -58.5,49.5 + parent: 2 + - uid: 28186 + components: + - type: Transform + pos: -57.5,49.5 + parent: 2 + - uid: 28187 + components: + - type: Transform + pos: -56.5,49.5 + parent: 2 + - uid: 28188 + components: + - type: Transform + pos: -55.5,49.5 + parent: 2 + - uid: 28189 + components: + - type: Transform + pos: -55.5,50.5 + parent: 2 + - uid: 28190 + components: + - type: Transform + pos: -55.5,51.5 + parent: 2 + - uid: 28191 + components: + - type: Transform + pos: -55.5,52.5 + parent: 2 + - uid: 28192 + components: + - type: Transform + pos: -55.5,53.5 + parent: 2 + - uid: 28193 + components: + - type: Transform + pos: -55.5,54.5 + parent: 2 + - uid: 28194 + components: + - type: Transform + pos: -56.5,54.5 + parent: 2 + - uid: 28195 + components: + - type: Transform + pos: -57.5,54.5 + parent: 2 + - uid: 28204 + components: + - type: Transform + pos: -67.5,58.5 + parent: 2 + - uid: 28205 + components: + - type: Transform + pos: -66.5,58.5 + parent: 2 + - uid: 28206 + components: + - type: Transform + pos: -65.5,58.5 + parent: 2 + - uid: 28207 + components: + - type: Transform + pos: -64.5,58.5 + parent: 2 + - uid: 28208 + components: + - type: Transform + pos: -63.5,58.5 + parent: 2 + - uid: 28209 + components: + - type: Transform + pos: -62.5,58.5 + parent: 2 + - uid: 28210 + components: + - type: Transform + pos: -61.5,58.5 + parent: 2 + - uid: 28211 + components: + - type: Transform + pos: -60.5,58.5 + parent: 2 + - uid: 28212 + components: + - type: Transform + pos: -59.5,58.5 + parent: 2 + - uid: 28213 + components: + - type: Transform + pos: -58.5,58.5 + parent: 2 + - uid: 28214 + components: + - type: Transform + pos: -57.5,58.5 + parent: 2 + - uid: 28215 + components: + - type: Transform + pos: -56.5,58.5 + parent: 2 + - uid: 28216 + components: + - type: Transform + pos: -55.5,58.5 + parent: 2 + - uid: 28219 + components: + - type: Transform + pos: -55.5,61.5 + parent: 2 + - uid: 28220 + components: + - type: Transform + pos: -55.5,60.5 + parent: 2 + - uid: 28221 + components: + - type: Transform + pos: -55.5,59.5 + parent: 2 + - uid: 28223 + components: + - type: Transform + pos: -54.5,61.5 + parent: 2 + - uid: 28224 + components: + - type: Transform + pos: -54.5,62.5 + parent: 2 + - uid: 28225 + components: + - type: Transform + pos: -54.5,63.5 + parent: 2 + - uid: 28226 + components: + - type: Transform + pos: -53.5,63.5 + parent: 2 + - uid: 28230 + components: + - type: Transform + pos: -54.5,51.5 + parent: 2 + - uid: 28231 + components: + - type: Transform + pos: -53.5,51.5 + parent: 2 + - uid: 28233 + components: + - type: Transform + pos: -53.5,52.5 + parent: 2 + - uid: 28570 + components: + - type: Transform + pos: -49.5,17.5 + parent: 2 + - uid: 28858 + components: + - type: Transform + pos: -50.5,17.5 + parent: 2 + - uid: 28861 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 28906 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 28907 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 28908 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 28909 + components: + - type: Transform + pos: 34.5,-68.5 + parent: 2 + - uid: 28910 + components: + - type: Transform + pos: 35.5,-68.5 + parent: 2 + - uid: 28911 + components: + - type: Transform + pos: 36.5,-68.5 + parent: 2 + - uid: 28912 + components: + - type: Transform + pos: 36.5,-69.5 + parent: 2 + - uid: 28913 + components: + - type: Transform + pos: 36.5,-70.5 + parent: 2 + - uid: 28925 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 28926 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 28927 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 28929 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 28930 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 28931 + components: + - type: Transform + pos: -41.5,16.5 + parent: 2 + - uid: 28932 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 28933 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 28936 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 28937 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 29009 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 + - uid: 29010 + components: + - type: Transform + pos: -3.5,57.5 + parent: 2 + - uid: 29011 + components: + - type: Transform + pos: -3.5,56.5 + parent: 2 + - uid: 29012 + components: + - type: Transform + pos: -2.5,56.5 + parent: 2 + - uid: 29013 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 + - uid: 29014 + components: + - type: Transform + pos: -2.5,54.5 + parent: 2 + - uid: 29015 + components: + - type: Transform + pos: -2.5,53.5 + parent: 2 + - uid: 29016 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 29017 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - uid: 29018 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 29019 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 29020 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 29021 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 29022 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 29023 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 29024 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 29025 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - uid: 29026 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 29027 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 29028 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 29029 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 29030 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 29031 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 29032 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 29033 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 29034 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 29035 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 29036 + components: + - type: Transform + pos: -2.5,45.5 + parent: 2 + - uid: 29037 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 29038 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 29039 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - uid: 29040 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 29042 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 29043 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 + - uid: 29044 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 29740 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 29741 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 29742 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 29744 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 29745 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 29747 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 29748 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 29749 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 29750 + components: + - type: Transform + pos: -37.5,19.5 + parent: 2 + - uid: 29751 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 29752 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 29753 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - uid: 29754 + components: + - type: Transform + pos: -37.5,23.5 + parent: 2 + - uid: 29755 + components: + - type: Transform + pos: -37.5,24.5 + parent: 2 + - uid: 29756 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 29757 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 29758 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 29759 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 29950 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 29951 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 2 + - uid: 29957 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 + - uid: 30340 + components: + - type: Transform + pos: -76.5,-38.5 + parent: 2 + - uid: 30341 + components: + - type: Transform + pos: -75.5,-38.5 + parent: 2 + - uid: 30342 + components: + - type: Transform + pos: -74.5,-38.5 + parent: 2 + - uid: 30343 + components: + - type: Transform + pos: -73.5,-38.5 + parent: 2 + - uid: 30344 + components: + - type: Transform + pos: -72.5,-38.5 + parent: 2 + - uid: 30345 + components: + - type: Transform + pos: -71.5,-38.5 + parent: 2 + - uid: 30346 + components: + - type: Transform + pos: -70.5,-38.5 + parent: 2 + - uid: 30347 + components: + - type: Transform + pos: -69.5,-38.5 + parent: 2 + - uid: 30348 + components: + - type: Transform + pos: -68.5,-38.5 + parent: 2 + - uid: 30349 + components: + - type: Transform + pos: -67.5,-38.5 + parent: 2 + - uid: 30350 + components: + - type: Transform + pos: -67.5,-39.5 + parent: 2 + - uid: 30351 + components: + - type: Transform + pos: -67.5,-40.5 + parent: 2 + - uid: 30352 + components: + - type: Transform + pos: -67.5,-41.5 + parent: 2 + - uid: 30353 + components: + - type: Transform + pos: -67.5,-42.5 + parent: 2 + - uid: 30354 + components: + - type: Transform + pos: -66.5,-42.5 + parent: 2 + - uid: 30359 + components: + - type: Transform + pos: -87.5,-43.5 + parent: 2 + - uid: 30360 + components: + - type: Transform + pos: -67.5,-43.5 + parent: 2 + - uid: 30361 + components: + - type: Transform + pos: -68.5,-43.5 + parent: 2 + - uid: 30362 + components: + - type: Transform + pos: -68.5,-41.5 + parent: 2 + - uid: 30363 + components: + - type: Transform + pos: -69.5,-41.5 + parent: 2 + - uid: 30364 + components: + - type: Transform + pos: -70.5,-41.5 + parent: 2 + - uid: 30365 + components: + - type: Transform + pos: -70.5,-42.5 + parent: 2 + - uid: 30366 + components: + - type: Transform + pos: -70.5,-43.5 + parent: 2 + - uid: 30368 + components: + - type: Transform + pos: -71.5,-43.5 + parent: 2 + - uid: 30369 + components: + - type: Transform + pos: -71.5,-41.5 + parent: 2 + - uid: 30370 + components: + - type: Transform + pos: -72.5,-41.5 + parent: 2 + - uid: 30371 + components: + - type: Transform + pos: -73.5,-41.5 + parent: 2 + - uid: 30372 + components: + - type: Transform + pos: -73.5,-42.5 + parent: 2 + - uid: 30373 + components: + - type: Transform + pos: -73.5,-43.5 + parent: 2 + - uid: 30374 + components: + - type: Transform + pos: -74.5,-43.5 + parent: 2 + - uid: 30375 + components: + - type: Transform + pos: -74.5,-41.5 + parent: 2 + - uid: 30376 + components: + - type: Transform + pos: -75.5,-41.5 + parent: 2 + - uid: 30377 + components: + - type: Transform + pos: -76.5,-41.5 + parent: 2 + - uid: 30378 + components: + - type: Transform + pos: -76.5,-42.5 + parent: 2 + - uid: 30379 + components: + - type: Transform + pos: -76.5,-43.5 + parent: 2 + - uid: 30380 + components: + - type: Transform + pos: -77.5,-43.5 + parent: 2 + - uid: 30381 + components: + - type: Transform + pos: -66.5,-38.5 + parent: 2 + - uid: 30382 + components: + - type: Transform + pos: -66.5,-37.5 + parent: 2 + - uid: 30383 + components: + - type: Transform + pos: -69.5,-38.5 + parent: 2 + - uid: 30384 + components: + - type: Transform + pos: -71.5,-35.5 + parent: 2 + - uid: 30385 + components: + - type: Transform + pos: -69.5,-36.5 + parent: 2 + - uid: 30386 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 + - uid: 30387 + components: + - type: Transform + pos: -67.5,-36.5 + parent: 2 + - uid: 30388 + components: + - type: Transform + pos: -71.5,-36.5 + parent: 2 + - uid: 30389 + components: + - type: Transform + pos: -72.5,-36.5 + parent: 2 + - uid: 30390 + components: + - type: Transform + pos: -75.5,-35.5 + parent: 2 + - uid: 30394 + components: + - type: Transform + pos: -81.5,-39.5 + parent: 2 + - uid: 30395 + components: + - type: Transform + pos: -81.5,-40.5 + parent: 2 + - uid: 30396 + components: + - type: Transform + pos: -81.5,-41.5 + parent: 2 + - uid: 30397 + components: + - type: Transform + pos: -86.5,-39.5 + parent: 2 + - uid: 30398 + components: + - type: Transform + pos: -86.5,-40.5 + parent: 2 + - uid: 30399 + components: + - type: Transform + pos: -86.5,-41.5 + parent: 2 + - uid: 30400 + components: + - type: Transform + pos: -87.5,-40.5 + parent: 2 + - uid: 30401 + components: + - type: Transform + pos: -87.5,-41.5 + parent: 2 + - uid: 30402 + components: + - type: Transform + pos: -86.5,-42.5 + parent: 2 + - uid: 30403 + components: + - type: Transform + pos: -86.5,-43.5 + parent: 2 + - uid: 30404 + components: + - type: Transform + pos: -88.5,-43.5 + parent: 2 + - uid: 30405 + components: + - type: Transform + pos: -89.5,-43.5 + parent: 2 + - uid: 30406 + components: + - type: Transform + pos: -85.5,-43.5 + parent: 2 + - uid: 30407 + components: + - type: Transform + pos: -84.5,-43.5 + parent: 2 + - uid: 30408 + components: + - type: Transform + pos: -83.5,-43.5 + parent: 2 + - uid: 30409 + components: + - type: Transform + pos: -84.5,-44.5 + parent: 2 + - uid: 30410 + components: + - type: Transform + pos: -84.5,-45.5 + parent: 2 + - uid: 30411 + components: + - type: Transform + pos: -84.5,-46.5 + parent: 2 + - uid: 30412 + components: + - type: Transform + pos: -84.5,-47.5 + parent: 2 + - uid: 30413 + components: + - type: Transform + pos: -84.5,-48.5 + parent: 2 + - uid: 30414 + components: + - type: Transform + pos: -85.5,-48.5 + parent: 2 + - uid: 30415 + components: + - type: Transform + pos: -86.5,-48.5 + parent: 2 + - uid: 30416 + components: + - type: Transform + pos: -87.5,-48.5 + parent: 2 + - uid: 30417 + components: + - type: Transform + pos: -88.5,-48.5 + parent: 2 + - uid: 30418 + components: + - type: Transform + pos: -89.5,-48.5 + parent: 2 + - uid: 30419 + components: + - type: Transform + pos: -89.5,-47.5 + parent: 2 + - uid: 30420 + components: + - type: Transform + pos: -89.5,-46.5 + parent: 2 + - uid: 30421 + components: + - type: Transform + pos: -83.5,-46.5 + parent: 2 + - uid: 30422 + components: + - type: Transform + pos: -82.5,-46.5 + parent: 2 + - uid: 30423 + components: + - type: Transform + pos: -81.5,-46.5 + parent: 2 + - uid: 30424 + components: + - type: Transform + pos: -81.5,-47.5 + parent: 2 + - uid: 30425 + components: + - type: Transform + pos: -82.5,-45.5 + parent: 2 + - uid: 30426 + components: + - type: Transform + pos: -82.5,-44.5 + parent: 2 + - uid: 30427 + components: + - type: Transform + pos: -91.5,-39.5 + parent: 2 + - uid: 30428 + components: + - type: Transform + pos: -91.5,-40.5 + parent: 2 + - uid: 30429 + components: + - type: Transform + pos: -92.5,-40.5 + parent: 2 + - uid: 30430 + components: + - type: Transform + pos: -90.5,-40.5 + parent: 2 + - uid: 30431 + components: + - type: Transform + pos: -92.5,-38.5 + parent: 2 + - uid: 30432 + components: + - type: Transform + pos: -93.5,-38.5 + parent: 2 + - uid: 30433 + components: + - type: Transform + pos: -93.5,-37.5 + parent: 2 + - uid: 30434 + components: + - type: Transform + pos: -93.5,-36.5 + parent: 2 + - uid: 30435 + components: + - type: Transform + pos: -90.5,-33.5 + parent: 2 + - uid: 30436 + components: + - type: Transform + pos: -89.5,-33.5 + parent: 2 + - uid: 30437 + components: + - type: Transform + pos: -89.5,-32.5 + parent: 2 + - uid: 30438 + components: + - type: Transform + pos: -88.5,-32.5 + parent: 2 + - uid: 30439 + components: + - type: Transform + pos: -88.5,-33.5 + parent: 2 + - uid: 30440 + components: + - type: Transform + pos: -87.5,-33.5 + parent: 2 + - uid: 30441 + components: + - type: Transform + pos: -86.5,-33.5 + parent: 2 + - uid: 30442 + components: + - type: Transform + pos: -85.5,-33.5 + parent: 2 + - uid: 30443 + components: + - type: Transform + pos: -85.5,-32.5 + parent: 2 + - uid: 30444 + components: + - type: Transform + pos: -92.5,-33.5 + parent: 2 + - uid: 30445 + components: + - type: Transform + pos: -93.5,-33.5 + parent: 2 + - uid: 30446 + components: + - type: Transform + pos: -94.5,-33.5 + parent: 2 + - uid: 30447 + components: + - type: Transform + pos: -95.5,-33.5 + parent: 2 + - uid: 30448 + components: + - type: Transform + pos: -97.5,-34.5 + parent: 2 + - uid: 30449 + components: + - type: Transform + pos: -96.5,-34.5 + parent: 2 + - uid: 30450 + components: + - type: Transform + pos: -95.5,-34.5 + parent: 2 + - uid: 30451 + components: + - type: Transform + pos: -95.5,-35.5 + parent: 2 + - uid: 30452 + components: + - type: Transform + pos: -98.5,-34.5 + parent: 2 + - uid: 30453 + components: + - type: Transform + pos: -98.5,-33.5 + parent: 2 + - uid: 30454 + components: + - type: Transform + pos: -98.5,-32.5 + parent: 2 + - uid: 30455 + components: + - type: Transform + pos: -98.5,-31.5 + parent: 2 + - uid: 30456 + components: + - type: Transform + pos: -97.5,-31.5 + parent: 2 + - uid: 30457 + components: + - type: Transform + pos: -96.5,-31.5 + parent: 2 + - uid: 30458 + components: + - type: Transform + pos: -96.5,-30.5 + parent: 2 + - uid: 30459 + components: + - type: Transform + pos: -95.5,-30.5 + parent: 2 + - uid: 30460 + components: + - type: Transform + pos: -90.5,-29.5 + parent: 2 + - uid: 30461 + components: + - type: Transform + pos: -89.5,-29.5 + parent: 2 + - uid: 30462 + components: + - type: Transform + pos: -88.5,-29.5 + parent: 2 + - uid: 30463 + components: + - type: Transform + pos: -87.5,-29.5 + parent: 2 + - uid: 30464 + components: + - type: Transform + pos: -87.5,-28.5 + parent: 2 + - uid: 30465 + components: + - type: Transform + pos: -90.5,-26.5 + parent: 2 + - uid: 30466 + components: + - type: Transform + pos: -89.5,-26.5 + parent: 2 + - uid: 30467 + components: + - type: Transform + pos: -88.5,-26.5 + parent: 2 + - uid: 30468 + components: + - type: Transform + pos: -87.5,-26.5 + parent: 2 + - uid: 30469 + components: + - type: Transform + pos: -87.5,-25.5 + parent: 2 + - uid: 30470 + components: + - type: Transform + pos: -92.5,-27.5 + parent: 2 + - uid: 30471 + components: + - type: Transform + pos: -92.5,-26.5 + parent: 2 + - uid: 30472 + components: + - type: Transform + pos: -93.5,-26.5 + parent: 2 + - uid: 30473 + components: + - type: Transform + pos: -94.5,-26.5 + parent: 2 + - uid: 30474 + components: + - type: Transform + pos: -95.5,-26.5 + parent: 2 + - uid: 30475 + components: + - type: Transform + pos: -96.5,-26.5 + parent: 2 + - uid: 30476 + components: + - type: Transform + pos: -96.5,-25.5 + parent: 2 + - uid: 30477 + components: + - type: Transform + pos: -92.5,-25.5 + parent: 2 + - uid: 30478 + components: + - type: Transform + pos: -92.5,-24.5 + parent: 2 + - uid: 30479 + components: + - type: Transform + pos: -91.5,-24.5 + parent: 2 + - uid: 30480 + components: + - type: Transform + pos: -78.5,-32.5 + parent: 2 + - uid: 30481 + components: + - type: Transform + pos: -79.5,-32.5 + parent: 2 + - uid: 30666 + components: + - type: Transform + pos: -80.5,-15.5 + parent: 2 + - uid: 30667 + components: + - type: Transform + pos: -79.5,-15.5 + parent: 2 + - uid: 30668 + components: + - type: Transform + pos: -78.5,-15.5 + parent: 2 + - uid: 30669 + components: + - type: Transform + pos: -78.5,-16.5 + parent: 2 + - uid: 30670 + components: + - type: Transform + pos: -77.5,-16.5 + parent: 2 + - uid: 30671 + components: + - type: Transform + pos: -76.5,-16.5 + parent: 2 + - uid: 30672 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - uid: 30673 + components: + - type: Transform + pos: -74.5,-16.5 + parent: 2 + - uid: 30674 + components: + - type: Transform + pos: -73.5,-16.5 + parent: 2 + - uid: 30675 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - uid: 30676 + components: + - type: Transform + pos: -71.5,-16.5 + parent: 2 + - uid: 30677 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - uid: 30678 + components: + - type: Transform + pos: -69.5,-16.5 + parent: 2 + - uid: 30679 + components: + - type: Transform + pos: -69.5,-17.5 + parent: 2 + - uid: 30680 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 2 + - uid: 30681 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 2 + - uid: 30682 + components: + - type: Transform + pos: -69.5,-20.5 + parent: 2 + - uid: 30683 + components: + - type: Transform + pos: -68.5,-20.5 + parent: 2 + - uid: 30684 + components: + - type: Transform + pos: -67.5,-20.5 + parent: 2 + - uid: 30685 + components: + - type: Transform + pos: -66.5,-20.5 + parent: 2 + - uid: 30686 + components: + - type: Transform + pos: -66.5,-21.5 + parent: 2 + - uid: 30687 + components: + - type: Transform + pos: -66.5,-22.5 + parent: 2 + - uid: 30688 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - uid: 30689 + components: + - type: Transform + pos: -66.5,-24.5 + parent: 2 + - uid: 30690 + components: + - type: Transform + pos: -65.5,-24.5 + parent: 2 + - uid: 30691 + components: + - type: Transform + pos: -64.5,-24.5 + parent: 2 + - uid: 30692 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 2 + - uid: 30693 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 31004 + components: + - type: Transform + pos: 26.5,-71.5 + parent: 2 + - uid: 31005 + components: + - type: Transform + pos: 26.5,-72.5 + parent: 2 + - uid: 31006 + components: + - type: Transform + pos: 25.5,-72.5 + parent: 2 + - uid: 31007 + components: + - type: Transform + pos: 24.5,-72.5 + parent: 2 + - uid: 31008 + components: + - type: Transform + pos: 24.5,-73.5 + parent: 2 + - uid: 31009 + components: + - type: Transform + pos: 24.5,-75.5 + parent: 2 + - uid: 31010 + components: + - type: Transform + pos: 24.5,-76.5 + parent: 2 + - uid: 31011 + components: + - type: Transform + pos: 24.5,-74.5 + parent: 2 + - uid: 31012 + components: + - type: Transform + pos: 24.5,-77.5 + parent: 2 + - uid: 31013 + components: + - type: Transform + pos: 24.5,-79.5 + parent: 2 + - uid: 31014 + components: + - type: Transform + pos: 24.5,-78.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 1134 + components: + - type: Transform + parent: 1131 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1264 + components: + - type: Transform + pos: -21.48829,-12.596007 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -21.50484,-14.423166 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -1.523819,-34.402622 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 23.503895,-44.405952 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 18.485727,10.631342 + parent: 2 + - uid: 12457 + components: + - type: Transform + pos: -64.468925,-17.33309 + parent: 2 + - uid: 15914 + components: + - type: Transform + pos: 17.500595,18.569164 + parent: 2 +- proto: CableMVStack1 + entities: + - uid: 30326 + components: + - type: Transform + pos: -48.423054,16.517254 + parent: 2 + - uid: 30327 + components: + - type: Transform + pos: -44.473476,16.559809 + parent: 2 +- proto: CableTerminal + entities: + - uid: 4483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-56.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-55.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,64.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-72.5 + parent: 2 + - uid: 16413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-50.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-61.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,16.5 + parent: 2 + - uid: 17508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,14.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-67.5 + parent: 2 + - uid: 20584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-72.5 + parent: 2 + - uid: 20585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-70.5 + parent: 2 + - uid: 21098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-70.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-70.5 + parent: 2 + - uid: 22303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-72.5 + parent: 2 + - uid: 22307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-72.5 + parent: 2 + - uid: 22335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-70.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-70.5 + parent: 2 + - uid: 23178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-72.5 + parent: 2 + - uid: 28938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,57.5 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 24 + components: + - type: Transform + pos: 15.731329,-20.34196 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: 33.378437,-0.29840827 + parent: 2 + - uid: 14615 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14616 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18614 + components: + - type: Transform + parent: 18613 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18615 + components: + - type: Transform + parent: 18613 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CarbonDioxideCanister + entities: + - uid: 1274 + components: + - type: Transform + pos: -56.5,-40.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 +- proto: Carpet + entities: + - uid: 1278 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: -38.5,14.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -42.5,-53.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,52.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,53.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,54.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,55.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,56.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,52.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,53.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,54.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,55.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,56.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,52.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,53.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,54.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,55.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,56.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,51.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,57.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,54.5 + parent: 2 + - uid: 10893 + components: + - type: Transform + pos: -60.5,48.5 + parent: 2 + - uid: 10894 + components: + - type: Transform + pos: -59.5,48.5 + parent: 2 + - uid: 10895 + components: + - type: Transform + pos: -58.5,48.5 + parent: 2 + - uid: 10896 + components: + - type: Transform + pos: -58.5,60.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + pos: -59.5,60.5 + parent: 2 + - uid: 10898 + components: + - type: Transform + pos: -60.5,60.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + pos: -53.5,48.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: -53.5,49.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: -53.5,50.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: -53.5,51.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + pos: -53.5,57.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + pos: -53.5,58.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: -53.5,59.5 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: -53.5,60.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,55.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,53.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 1315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 1333 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 1360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,46.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,46.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,45.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -70.5,45.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,46.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,46.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + pos: -67.5,51.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,51.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,52.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,52.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + pos: -67.5,53.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,53.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,55.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,57.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,57.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,55.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,51.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + pos: -65.5,51.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,56.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,56.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,55.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,57.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,57.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + pos: -67.5,56.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,52.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,52.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,55.5 + parent: 2 + - uid: 31040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,53.5 + parent: 2 + - uid: 31041 + components: + - type: Transform + pos: -65.5,53.5 + parent: 2 + - uid: 31042 + components: + - type: Transform + pos: -65.5,56.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 1366 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 18466 + components: + - type: Transform + pos: -70.5,2.5 + parent: 2 + - uid: 18467 + components: + - type: Transform + pos: -71.5,2.5 + parent: 2 + - uid: 18468 + components: + - type: Transform + pos: -72.5,2.5 + parent: 2 + - uid: 18469 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 18470 + components: + - type: Transform + pos: -71.5,3.5 + parent: 2 + - uid: 18471 + components: + - type: Transform + pos: -70.5,3.5 + parent: 2 + - uid: 18489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,1.5 + parent: 2 + - uid: 18491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,2.5 + parent: 2 + - uid: 18492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,2.5 + parent: 2 + - uid: 18493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,1.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 1378 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 1324 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,53.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,53.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,53.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,53.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,54.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,55.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,53.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,54.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,55.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,55.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,54.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,59.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,60.5 + parent: 2 + - uid: 11108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,59.5 + parent: 2 + - uid: 11109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,60.5 + parent: 2 + - uid: 11110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,59.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,60.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,49.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,48.5 + parent: 2 + - uid: 11116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,49.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,48.5 + parent: 2 + - uid: 11118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,49.5 + parent: 2 + - uid: 11119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,48.5 + parent: 2 + - uid: 29822 + components: + - type: Transform + pos: -75.5,55.5 + parent: 2 + - uid: 29823 + components: + - type: Transform + pos: -75.5,54.5 + parent: 2 + - uid: 29825 + components: + - type: Transform + pos: -74.5,54.5 + parent: 2 + - uid: 29826 + components: + - type: Transform + pos: -74.5,55.5 + parent: 2 +- proto: CarpStatue + entities: + - uid: 1415 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 +- proto: CarrotSeeds + entities: + - uid: 1416 + components: + - type: Transform + pos: -87.521736,-44.617386 + parent: 2 +- proto: CartridgeCap + entities: + - uid: 1417 + components: + - type: Transform + pos: -79.51072,-33.500137 + parent: 2 +- proto: Catwalk + entities: + - uid: 267 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-59.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-59.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-59.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: -60.5,-51.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -61.5,-51.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: -62.5,-51.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: -63.5,-51.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: -64.5,-51.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: -65.5,-51.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: -66.5,-51.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: -67.5,-51.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: -68.5,-51.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -69.5,-51.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -70.5,-51.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: -71.5,-51.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -72.5,-51.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -73.5,-51.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: -74.5,-51.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: -75.5,-51.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: -76.5,-51.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -77.5,-51.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -75.5,-52.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -75.5,-53.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -75.5,-54.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -75.5,-55.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -75.5,-56.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -75.5,-50.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -75.5,-49.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -75.5,-48.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: -75.5,-47.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -75.5,-46.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: -72.5,-46.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -72.5,-47.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: -72.5,-48.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: -72.5,-49.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: -72.5,-50.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -72.5,-52.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -72.5,-53.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -72.5,-54.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: -72.5,-55.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -72.5,-56.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: -69.5,-56.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: -69.5,-55.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: -69.5,-54.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -69.5,-53.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: -69.5,-52.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: -69.5,-50.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -69.5,-49.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -69.5,-48.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -69.5,-47.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -69.5,-46.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -66.5,-52.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: -66.5,-53.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -66.5,-54.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -66.5,-55.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: -66.5,-56.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: -66.5,-49.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: -66.5,-48.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: -66.5,-47.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -66.5,-46.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: -66.5,-50.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -51.5,-59.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: -47.5,-59.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -65.5,-40.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -65.5,-39.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -65.5,-38.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -65.5,-37.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -87.5,-31.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -86.5,-26.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: -85.5,-26.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -84.5,-26.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -82.5,-26.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: -80.5,-26.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -79.5,-26.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: -78.5,-26.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: -76.5,-26.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-26.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-27.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,10.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-15.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-16.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-17.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-6.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-6.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-7.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-63.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-59.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-57.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-55.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-53.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-63.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-51.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-49.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-63.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-63.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-63.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-63.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-63.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-63.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-63.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-63.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-62.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-63.5 + parent: 2 + - uid: 11487 + components: + - type: Transform + pos: -50.5,46.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 11489 + components: + - type: Transform + pos: -50.5,44.5 + parent: 2 + - uid: 11490 + components: + - type: Transform + pos: -50.5,43.5 + parent: 2 + - uid: 11491 + components: + - type: Transform + pos: -50.5,42.5 + parent: 2 + - uid: 11492 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 + - uid: 11494 + components: + - type: Transform + pos: -50.5,39.5 + parent: 2 + - uid: 11495 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 11496 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 11497 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 11498 + components: + - type: Transform + pos: -50.5,35.5 + parent: 2 + - uid: 11499 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 11500 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 11501 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 11916 + components: + - type: Transform + pos: -49.5,35.5 + parent: 2 + - uid: 12046 + components: + - type: Transform + pos: -48.5,35.5 + parent: 2 + - uid: 12051 + components: + - type: Transform + pos: -47.5,35.5 + parent: 2 + - uid: 12054 + components: + - type: Transform + pos: -46.5,35.5 + parent: 2 + - uid: 12055 + components: + - type: Transform + pos: -46.5,36.5 + parent: 2 + - uid: 12056 + components: + - type: Transform + pos: -46.5,37.5 + parent: 2 + - uid: 12057 + components: + - type: Transform + pos: -46.5,38.5 + parent: 2 + - uid: 12058 + components: + - type: Transform + pos: -46.5,39.5 + parent: 2 + - uid: 12059 + components: + - type: Transform + pos: -46.5,40.5 + parent: 2 + - uid: 12060 + components: + - type: Transform + pos: -46.5,41.5 + parent: 2 + - uid: 12061 + components: + - type: Transform + pos: -46.5,42.5 + parent: 2 + - uid: 12062 + components: + - type: Transform + pos: -46.5,43.5 + parent: 2 + - uid: 12063 + components: + - type: Transform + pos: -46.5,44.5 + parent: 2 + - uid: 12064 + components: + - type: Transform + pos: -46.5,45.5 + parent: 2 + - uid: 12065 + components: + - type: Transform + pos: -48.5,42.5 + parent: 2 + - uid: 12066 + components: + - type: Transform + pos: -47.5,45.5 + parent: 2 + - uid: 12067 + components: + - type: Transform + pos: -48.5,45.5 + parent: 2 + - uid: 12068 + components: + - type: Transform + pos: -49.5,45.5 + parent: 2 + - uid: 12069 + components: + - type: Transform + pos: -49.5,42.5 + parent: 2 + - uid: 12071 + components: + - type: Transform + pos: -47.5,42.5 + parent: 2 + - uid: 12072 + components: + - type: Transform + pos: -47.5,38.5 + parent: 2 + - uid: 12073 + components: + - type: Transform + pos: -48.5,38.5 + parent: 2 + - uid: 12074 + components: + - type: Transform + pos: -49.5,38.5 + parent: 2 + - uid: 12075 + components: + - type: Transform + pos: -49.5,49.5 + parent: 2 + - uid: 12076 + components: + - type: Transform + pos: -48.5,49.5 + parent: 2 + - uid: 12077 + components: + - type: Transform + pos: -47.5,49.5 + parent: 2 + - uid: 12078 + components: + - type: Transform + pos: -46.5,49.5 + parent: 2 + - uid: 12079 + components: + - type: Transform + pos: -45.5,49.5 + parent: 2 + - uid: 12080 + components: + - type: Transform + pos: -43.5,49.5 + parent: 2 + - uid: 12081 + components: + - type: Transform + pos: -44.5,49.5 + parent: 2 + - uid: 12082 + components: + - type: Transform + pos: -43.5,48.5 + parent: 2 + - uid: 12083 + components: + - type: Transform + pos: -43.5,47.5 + parent: 2 + - uid: 12084 + components: + - type: Transform + pos: -43.5,46.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: -43.5,45.5 + parent: 2 + - uid: 12086 + components: + - type: Transform + pos: -44.5,45.5 + parent: 2 + - uid: 12087 + components: + - type: Transform + pos: -45.5,45.5 + parent: 2 + - uid: 12089 + components: + - type: Transform + pos: -43.5,44.5 + parent: 2 + - uid: 12090 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 + - uid: 12091 + components: + - type: Transform + pos: -43.5,42.5 + parent: 2 + - uid: 12092 + components: + - type: Transform + pos: -43.5,41.5 + parent: 2 + - uid: 12093 + components: + - type: Transform + pos: -43.5,40.5 + parent: 2 + - uid: 12094 + components: + - type: Transform + pos: -43.5,39.5 + parent: 2 + - uid: 12095 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 + - uid: 12097 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 12098 + components: + - type: Transform + pos: -43.5,35.5 + parent: 2 + - uid: 12099 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 12100 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 12101 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 12102 + components: + - type: Transform + pos: -46.5,32.5 + parent: 2 + - uid: 12103 + components: + - type: Transform + pos: -46.5,33.5 + parent: 2 + - uid: 12104 + components: + - type: Transform + pos: -46.5,34.5 + parent: 2 + - uid: 12105 + components: + - type: Transform + pos: -45.5,35.5 + parent: 2 + - uid: 12106 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 12107 + components: + - type: Transform + pos: -44.5,38.5 + parent: 2 + - uid: 12108 + components: + - type: Transform + pos: -45.5,38.5 + parent: 2 + - uid: 12109 + components: + - type: Transform + pos: -45.5,42.5 + parent: 2 + - uid: 12110 + components: + - type: Transform + pos: -44.5,42.5 + parent: 2 + - uid: 12484 + components: + - type: Transform + pos: -63.5,12.5 + parent: 2 + - uid: 12485 + components: + - type: Transform + pos: -73.5,17.5 + parent: 2 + - uid: 12486 + components: + - type: Transform + pos: -72.5,17.5 + parent: 2 + - uid: 12487 + components: + - type: Transform + pos: -71.5,17.5 + parent: 2 + - uid: 12488 + components: + - type: Transform + pos: -70.5,17.5 + parent: 2 + - uid: 12489 + components: + - type: Transform + pos: -69.5,17.5 + parent: 2 + - uid: 12490 + components: + - type: Transform + pos: -68.5,17.5 + parent: 2 + - uid: 12491 + components: + - type: Transform + pos: -67.5,17.5 + parent: 2 + - uid: 12492 + components: + - type: Transform + pos: -66.5,17.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: -65.5,17.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: -64.5,17.5 + parent: 2 + - uid: 12495 + components: + - type: Transform + pos: -63.5,17.5 + parent: 2 + - uid: 12496 + components: + - type: Transform + pos: -62.5,17.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - uid: 12498 + components: + - type: Transform + pos: -60.5,17.5 + parent: 2 + - uid: 12499 + components: + - type: Transform + pos: -59.5,17.5 + parent: 2 + - uid: 12500 + components: + - type: Transform + pos: -58.5,17.5 + parent: 2 + - uid: 12501 + components: + - type: Transform + pos: -63.5,13.5 + parent: 2 + - uid: 12502 + components: + - type: Transform + pos: -63.5,14.5 + parent: 2 + - uid: 12503 + components: + - type: Transform + pos: -63.5,15.5 + parent: 2 + - uid: 12504 + components: + - type: Transform + pos: -63.5,16.5 + parent: 2 + - uid: 12505 + components: + - type: Transform + pos: -63.5,17.5 + parent: 2 + - uid: 12506 + components: + - type: Transform + pos: -63.5,18.5 + parent: 2 + - uid: 12507 + components: + - type: Transform + pos: -63.5,19.5 + parent: 2 + - uid: 12508 + components: + - type: Transform + pos: -63.5,20.5 + parent: 2 + - uid: 12509 + components: + - type: Transform + pos: -63.5,21.5 + parent: 2 + - uid: 12510 + components: + - type: Transform + pos: -63.5,22.5 + parent: 2 + - uid: 12511 + components: + - type: Transform + pos: -67.5,11.5 + parent: 2 + - uid: 12512 + components: + - type: Transform + pos: -67.5,12.5 + parent: 2 + - uid: 12513 + components: + - type: Transform + pos: -67.5,13.5 + parent: 2 + - uid: 12514 + components: + - type: Transform + pos: -67.5,14.5 + parent: 2 + - uid: 12515 + components: + - type: Transform + pos: -67.5,15.5 + parent: 2 + - uid: 12516 + components: + - type: Transform + pos: -67.5,16.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: -67.5,17.5 + parent: 2 + - uid: 12518 + components: + - type: Transform + pos: -67.5,18.5 + parent: 2 + - uid: 12519 + components: + - type: Transform + pos: -67.5,19.5 + parent: 2 + - uid: 12520 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 12521 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 + - uid: 12522 + components: + - type: Transform + pos: -67.5,22.5 + parent: 2 + - uid: 12523 + components: + - type: Transform + pos: -67.5,23.5 + parent: 2 + - uid: 12524 + components: + - type: Transform + pos: -69.5,12.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: -65.5,12.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + pos: -65.5,22.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: -69.5,22.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: -71.5,16.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: -71.5,15.5 + parent: 2 + - uid: 12530 + components: + - type: Transform + pos: -71.5,14.5 + parent: 2 + - uid: 12531 + components: + - type: Transform + pos: -71.5,13.5 + parent: 2 + - uid: 12532 + components: + - type: Transform + pos: -71.5,12.5 + parent: 2 + - uid: 12533 + components: + - type: Transform + pos: -71.5,18.5 + parent: 2 + - uid: 12534 + components: + - type: Transform + pos: -71.5,19.5 + parent: 2 + - uid: 12535 + components: + - type: Transform + pos: -71.5,20.5 + parent: 2 + - uid: 12536 + components: + - type: Transform + pos: -71.5,21.5 + parent: 2 + - uid: 12537 + components: + - type: Transform + pos: -71.5,22.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: -34.5,-67.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-75.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-73.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-76.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-78.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-77.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-74.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-72.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-71.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-70.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-79.5 + parent: 2 + - uid: 13767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-80.5 + parent: 2 + - uid: 13769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-70.5 + parent: 2 + - uid: 13770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-70.5 + parent: 2 + - uid: 13771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-70.5 + parent: 2 + - uid: 13772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-70.5 + parent: 2 + - uid: 13773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-70.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-81.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-81.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-81.5 + parent: 2 + - uid: 13789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-81.5 + parent: 2 + - uid: 13790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-81.5 + parent: 2 + - uid: 13791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-81.5 + parent: 2 + - uid: 13792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-81.5 + parent: 2 + - uid: 13793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-81.5 + parent: 2 + - uid: 13794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-81.5 + parent: 2 + - uid: 13795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-81.5 + parent: 2 + - uid: 13796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-81.5 + parent: 2 + - uid: 13900 + components: + - type: Transform + pos: 26.5,-76.5 + parent: 2 + - uid: 13901 + components: + - type: Transform + pos: 25.5,-76.5 + parent: 2 + - uid: 13902 + components: + - type: Transform + pos: 24.5,-76.5 + parent: 2 + - uid: 13903 + components: + - type: Transform + pos: 23.5,-76.5 + parent: 2 + - uid: 13904 + components: + - type: Transform + pos: 22.5,-76.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: 21.5,-76.5 + parent: 2 + - uid: 13906 + components: + - type: Transform + pos: 20.5,-76.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-75.5 + parent: 2 + - uid: 14071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-73.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-73.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-75.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-71.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-69.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-69.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-71.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-67.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-65.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-65.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-67.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + pos: 54.5,-38.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: 47.5,-74.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + pos: 47.5,-73.5 + parent: 2 + - uid: 14230 + components: + - type: Transform + pos: 47.5,-72.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + pos: 47.5,-71.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 47.5,-70.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: 47.5,-69.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + pos: 47.5,-68.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: 47.5,-67.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: 47.5,-66.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: 47.5,-65.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + pos: 47.5,-64.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: 47.5,-63.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + pos: 49.5,-68.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: 50.5,-68.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + pos: 51.5,-68.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: 52.5,-68.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: 53.5,-68.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: 54.5,-68.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + pos: 55.5,-68.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: 42.5,-68.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + pos: 43.5,-68.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: 44.5,-68.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: 45.5,-68.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + pos: 46.5,-68.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: 47.5,-68.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: 48.5,-68.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: 52.5,-69.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: 51.5,-69.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: 52.5,-67.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: 50.5,-69.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: 51.5,-67.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: 50.5,-67.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: 51.5,-66.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: 51.5,-65.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: 51.5,-64.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: 51.5,-63.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: 51.5,-62.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: 51.5,-70.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: 51.5,-71.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: 51.5,-72.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: 51.5,-73.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: 51.5,-74.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: 51.5,-75.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: 55.5,-74.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: 55.5,-73.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: 55.5,-72.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + pos: 55.5,-71.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + pos: 55.5,-70.5 + parent: 2 + - uid: 14279 + components: + - type: Transform + pos: 55.5,-69.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + pos: 55.5,-67.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: 55.5,-66.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + pos: 55.5,-65.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + pos: 55.5,-64.5 + parent: 2 + - uid: 14284 + components: + - type: Transform + pos: 55.5,-63.5 + parent: 2 + - uid: 14286 + components: + - type: Transform + pos: 53.5,-74.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + pos: 49.5,-74.5 + parent: 2 + - uid: 14288 + components: + - type: Transform + pos: 49.5,-63.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + pos: 53.5,-63.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 15123 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 15124 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 15125 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 15126 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 15128 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 15131 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 15132 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 15134 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 15222 + components: + - type: Transform + pos: 64.5,9.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - uid: 15224 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + pos: 64.5,13.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + pos: 64.5,14.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: 63.5,15.5 + parent: 2 + - uid: 15230 + components: + - type: Transform + pos: 62.5,15.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: 61.5,15.5 + parent: 2 + - uid: 15232 + components: + - type: Transform + pos: 60.5,15.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + pos: 58.5,15.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + pos: 57.5,15.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + pos: 56.5,15.5 + parent: 2 + - uid: 15237 + components: + - type: Transform + pos: 55.5,15.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: 60.5,14.5 + parent: 2 + - uid: 15239 + components: + - type: Transform + pos: 60.5,13.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: 60.5,12.5 + parent: 2 + - uid: 15241 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 15242 + components: + - type: Transform + pos: 60.5,10.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + pos: 60.5,16.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + pos: 60.5,17.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + pos: 60.5,19.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + pos: 60.5,20.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: 64.5,21.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: 64.5,19.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: 64.5,18.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + pos: 64.5,17.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: 64.5,16.5 + parent: 2 + - uid: 15254 + components: + - type: Transform + pos: 63.5,16.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: 65.5,16.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + pos: 65.5,14.5 + parent: 2 + - uid: 15257 + components: + - type: Transform + pos: 63.5,14.5 + parent: 2 + - uid: 15258 + components: + - type: Transform + pos: 65.5,15.5 + parent: 2 + - uid: 15259 + components: + - type: Transform + pos: 66.5,15.5 + parent: 2 + - uid: 15260 + components: + - type: Transform + pos: 67.5,15.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + pos: 68.5,15.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: 68.5,14.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + pos: 68.5,13.5 + parent: 2 + - uid: 15264 + components: + - type: Transform + pos: 68.5,12.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: 68.5,11.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: 68.5,10.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: 68.5,16.5 + parent: 2 + - uid: 15268 + components: + - type: Transform + pos: 68.5,20.5 + parent: 2 + - uid: 15269 + components: + - type: Transform + pos: 68.5,19.5 + parent: 2 + - uid: 15270 + components: + - type: Transform + pos: 68.5,18.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: 68.5,17.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + pos: -9.5,31.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 15575 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + pos: -2.5,36.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + pos: -27.5,-83.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 16323 + components: + - type: Transform + pos: 54.5,15.5 + parent: 2 + - uid: 16325 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - uid: 16326 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 16327 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 16328 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 16329 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 16330 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 16331 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 16333 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 16334 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 16335 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 16336 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 16337 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 16338 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 16339 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 16341 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 16342 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 16345 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 16346 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 16347 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 16348 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 16349 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 16350 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 16351 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 16372 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 + - uid: 16374 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 16375 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - uid: 16376 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 16377 + components: + - type: Transform + pos: -51.5,-41.5 + parent: 2 + - uid: 16378 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 16379 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 16382 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 16383 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 16385 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 16387 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 16388 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - uid: 16389 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 16390 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 16391 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 16392 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 16393 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 16394 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 16395 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 16397 + components: + - type: Transform + pos: -52.5,-49.5 + parent: 2 + - uid: 16398 + components: + - type: Transform + pos: -51.5,-50.5 + parent: 2 + - uid: 16399 + components: + - type: Transform + pos: -50.5,-50.5 + parent: 2 + - uid: 16401 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 + - uid: 16960 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-78.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-77.5 + parent: 2 + - uid: 17577 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 17582 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 17583 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 17586 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 17588 + components: + - type: Transform + pos: 39.5,28.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 17591 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 17593 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 17594 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 17596 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - uid: 17597 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 17599 + components: + - type: Transform + pos: 50.5,8.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + pos: 53.5,1.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: 54.5,1.5 + parent: 2 + - uid: 17607 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 17695 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - uid: 17696 + components: + - type: Transform + pos: 56.5,-6.5 + parent: 2 + - uid: 17698 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 17699 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 17700 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 17721 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 17722 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 17723 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 17724 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 17727 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 17728 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 17729 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 17730 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 17731 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 17732 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 17733 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 17734 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 17736 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 17737 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 17738 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 17739 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 17745 + components: + - type: Transform + pos: 32.5,-72.5 + parent: 2 + - uid: 17772 + components: + - type: Transform + pos: 32.5,-71.5 + parent: 2 + - uid: 17773 + components: + - type: Transform + pos: 32.5,-70.5 + parent: 2 + - uid: 17778 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 2 + - uid: 17779 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 2 + - uid: 17780 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 17781 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: 31.5,-66.5 + parent: 2 + - uid: 17784 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 17785 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 17786 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 17787 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 2 + - uid: 17788 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 17789 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 17790 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 17791 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - uid: 17792 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - uid: 17793 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 + - uid: 17794 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 2 + - uid: 17795 + components: + - type: Transform + pos: 30.5,-47.5 + parent: 2 + - uid: 17796 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 + - uid: 17797 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 17798 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 17799 + components: + - type: Transform + pos: 30.5,-43.5 + parent: 2 + - uid: 17800 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 17802 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 17803 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 17804 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 17805 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - uid: 17806 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 17814 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 17821 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 2 + - uid: 17822 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: 35.5,-43.5 + parent: 2 + - uid: 17824 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 17826 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 18096 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 18097 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 18209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - uid: 18210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 18211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - uid: 18212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - uid: 18368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - uid: 18370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 18371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,15.5 + parent: 2 + - uid: 18372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - uid: 18374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + - uid: 18375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - uid: 18377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 18378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 18379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - uid: 18380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,10.5 + parent: 2 + - uid: 18382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + - uid: 18383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 + - uid: 18384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,18.5 + parent: 2 + - uid: 18385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + - uid: 18386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 2 + - uid: 18569 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 18570 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 18571 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 18572 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 18573 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 18575 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 18576 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 18578 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 + - uid: 18731 + components: + - type: Transform + pos: -54.5,6.5 + parent: 2 + - uid: 18732 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 18733 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 18734 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 18735 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 18736 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 18737 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 18738 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 18739 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 18740 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 18741 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 18742 + components: + - type: Transform + pos: -50.5,14.5 + parent: 2 + - uid: 18743 + components: + - type: Transform + pos: -50.5,13.5 + parent: 2 + - uid: 18744 + components: + - type: Transform + pos: -50.5,12.5 + parent: 2 + - uid: 18745 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 18746 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 18752 + components: + - type: Transform + pos: -56.5,6.5 + parent: 2 + - uid: 18753 + components: + - type: Transform + pos: -57.5,6.5 + parent: 2 + - uid: 18754 + components: + - type: Transform + pos: -58.5,6.5 + parent: 2 + - uid: 18755 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 18756 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 18757 + components: + - type: Transform + pos: -65.5,6.5 + parent: 2 + - uid: 18758 + components: + - type: Transform + pos: -66.5,6.5 + parent: 2 + - uid: 18759 + components: + - type: Transform + pos: -69.5,5.5 + parent: 2 + - uid: 18760 + components: + - type: Transform + pos: -70.5,5.5 + parent: 2 + - uid: 18761 + components: + - type: Transform + pos: -71.5,5.5 + parent: 2 + - uid: 18845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,3.5 + parent: 2 + - uid: 18846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,2.5 + parent: 2 + - uid: 18847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,1.5 + parent: 2 + - uid: 18848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,0.5 + parent: 2 + - uid: 18849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-6.5 + parent: 2 + - uid: 18850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-1.5 + parent: 2 + - uid: 18851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-1.5 + parent: 2 + - uid: 18852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-2.5 + parent: 2 + - uid: 18853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-1.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-1.5 + parent: 2 + - uid: 18855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-7.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-7.5 + parent: 2 + - uid: 18858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 18891 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 18894 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 18895 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 18898 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 18899 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 18900 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 18901 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 18902 + components: + - type: Transform + pos: -58.5,-12.5 + parent: 2 + - uid: 18903 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 18904 + components: + - type: Transform + pos: -66.5,-14.5 + parent: 2 + - uid: 18905 + components: + - type: Transform + pos: -65.5,-14.5 + parent: 2 + - uid: 18906 + components: + - type: Transform + pos: -64.5,-14.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: -63.5,-15.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 18909 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 18910 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 18911 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 18912 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 18913 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 18914 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 18915 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 18916 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 18917 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 18918 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 18920 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 19304 + components: + - type: Transform + pos: -74.5,-9.5 + parent: 2 + - uid: 19305 + components: + - type: Transform + pos: -74.5,-11.5 + parent: 2 + - uid: 19601 + components: + - type: Transform + pos: -72.5,-20.5 + parent: 2 + - uid: 19602 + components: + - type: Transform + pos: -71.5,-20.5 + parent: 2 + - uid: 19603 + components: + - type: Transform + pos: -70.5,-20.5 + parent: 2 + - uid: 19604 + components: + - type: Transform + pos: -69.5,-20.5 + parent: 2 + - uid: 19605 + components: + - type: Transform + pos: -67.5,-20.5 + parent: 2 + - uid: 19606 + components: + - type: Transform + pos: -66.5,-20.5 + parent: 2 + - uid: 19607 + components: + - type: Transform + pos: -66.5,-21.5 + parent: 2 + - uid: 19608 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 2 + - uid: 19617 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 19618 + components: + - type: Transform + pos: -66.5,-17.5 + parent: 2 + - uid: 20497 + components: + - type: Transform + pos: -73.5,-22.5 + parent: 2 + - uid: 20498 + components: + - type: Transform + pos: -73.5,-23.5 + parent: 2 + - uid: 20499 + components: + - type: Transform + pos: -73.5,-24.5 + parent: 2 + - uid: 20500 + components: + - type: Transform + pos: -64.5,-24.5 + parent: 2 + - uid: 20501 + components: + - type: Transform + pos: -71.5,-25.5 + parent: 2 + - uid: 20502 + components: + - type: Transform + pos: -70.5,-25.5 + parent: 2 + - uid: 20503 + components: + - type: Transform + pos: -69.5,-25.5 + parent: 2 + - uid: 20504 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 2 + - uid: 20505 + components: + - type: Transform + pos: -67.5,-26.5 + parent: 2 + - uid: 20506 + components: + - type: Transform + pos: -66.5,-26.5 + parent: 2 + - uid: 20507 + components: + - type: Transform + pos: -66.5,-25.5 + parent: 2 + - uid: 20508 + components: + - type: Transform + pos: -70.5,-29.5 + parent: 2 + - uid: 20509 + components: + - type: Transform + pos: -70.5,-28.5 + parent: 2 + - uid: 20510 + components: + - type: Transform + pos: -70.5,-27.5 + parent: 2 + - uid: 20511 + components: + - type: Transform + pos: -70.5,-30.5 + parent: 2 + - uid: 20512 + components: + - type: Transform + pos: -70.5,-31.5 + parent: 2 + - uid: 20513 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 20514 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 2 + - uid: 20515 + components: + - type: Transform + pos: -63.5,-27.5 + parent: 2 + - uid: 20516 + components: + - type: Transform + pos: -61.5,-27.5 + parent: 2 + - uid: 20517 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 2 + - uid: 20518 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 20519 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 20520 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 20521 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 20522 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 20523 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 20524 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 20525 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 20526 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 20527 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 20528 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 20529 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 20530 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 20531 + components: + - type: Transform + pos: -48.5,-32.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 2 + - uid: 20557 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 20558 + components: + - type: Transform + pos: -55.5,-47.5 + parent: 2 + - uid: 20559 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 20560 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 20561 + components: + - type: Transform + pos: -63.5,-30.5 + parent: 2 + - uid: 20562 + components: + - type: Transform + pos: -63.5,-31.5 + parent: 2 + - uid: 20563 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 20564 + components: + - type: Transform + pos: -62.5,-36.5 + parent: 2 + - uid: 20565 + components: + - type: Transform + pos: -62.5,-40.5 + parent: 2 + - uid: 20566 + components: + - type: Transform + pos: -62.5,-41.5 + parent: 2 + - uid: 20567 + components: + - type: Transform + pos: -62.5,-38.5 + parent: 2 + - uid: 20568 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 20569 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - uid: 20570 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - uid: 20578 + components: + - type: Transform + pos: -58.5,-44.5 + parent: 2 + - uid: 20579 + components: + - type: Transform + pos: -59.5,-44.5 + parent: 2 + - uid: 20593 + components: + - type: Transform + pos: 43.5,38.5 + parent: 2 + - uid: 20594 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 20595 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 20596 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 20597 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 20598 + components: + - type: Transform + pos: 41.5,38.5 + parent: 2 + - uid: 20599 + components: + - type: Transform + pos: 40.5,38.5 + parent: 2 + - uid: 20600 + components: + - type: Transform + pos: 44.5,38.5 + parent: 2 + - uid: 20816 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 2 + - uid: 20817 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - uid: 20818 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - uid: 20819 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 20820 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 20821 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 20822 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - uid: 20823 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 20824 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 20825 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 29610 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 + - uid: 29611 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 + - uid: 29612 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 29613 + components: + - type: Transform + pos: -39.5,36.5 + parent: 2 + - uid: 29614 + components: + - type: Transform + pos: -39.5,37.5 + parent: 2 + - uid: 29615 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 29616 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 29617 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 + - uid: 29618 + components: + - type: Transform + pos: -42.5,38.5 + parent: 2 + - uid: 29619 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 29620 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 + - uid: 29621 + components: + - type: Transform + pos: -42.5,42.5 + parent: 2 + - uid: 29622 + components: + - type: Transform + pos: -42.5,45.5 + parent: 2 + - uid: 29623 + components: + - type: Transform + pos: -47.5,53.5 + parent: 2 + - uid: 29624 + components: + - type: Transform + pos: -48.5,53.5 + parent: 2 + - uid: 29625 + components: + - type: Transform + pos: -49.5,53.5 + parent: 2 +- proto: Cautery + entities: + - uid: 1531 + components: + - type: Transform + pos: -44.471855,-6.519989 + parent: 2 +- proto: CellRechargerCircuitboard + entities: + - uid: 1532 + components: + - type: Transform + pos: -3.5490744,-36.389183 + parent: 2 +- proto: Chainsaw + entities: + - uid: 5782 + components: + - type: Transform + pos: 3.4567432,28.34682 + parent: 2 +- proto: Chair + entities: + - uid: 1533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,8.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,10.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,7.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-23.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-38.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-38.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-46.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-45.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-44.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: -44.5,-44.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-46.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-46.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-46.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-33.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-39.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-39.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-40.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-41.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-39.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-40.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-41.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 12245 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 12246 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 12247 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 12248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-22.5 + parent: 2 + - uid: 12249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-22.5 + parent: 2 + - uid: 12250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-22.5 + parent: 2 + - uid: 12251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-22.5 + parent: 2 + - uid: 12275 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 13915 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - uid: 13917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-36.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-36.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-36.5 + parent: 2 + - uid: 13920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-36.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-36.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 13923 + components: + - type: Transform + pos: 45.5,-38.5 + parent: 2 + - uid: 13924 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 13925 + components: + - type: Transform + pos: 43.5,-38.5 + parent: 2 + - uid: 13927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-39.5 + parent: 2 + - uid: 13928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-38.5 + parent: 2 + - uid: 13929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-37.5 + parent: 2 + - uid: 13930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-36.5 + parent: 2 + - uid: 13931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-35.5 + parent: 2 + - uid: 13932 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 2 + - uid: 13933 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 2 + - uid: 13934 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 13935 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-32.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-36.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-37.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-38.5 + parent: 2 + - uid: 18082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - uid: 18523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + - uid: 18524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,22.5 + parent: 2 + - uid: 18525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,23.5 + parent: 2 + - uid: 18526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,24.5 + parent: 2 + - uid: 25558 + components: + - type: Transform + pos: 24.5,-67.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 1570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-45.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-36.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-34.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-34.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-38.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-25.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-12.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-11.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-39.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-42.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: 46.5,-32.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,45.5 + parent: 2 + - uid: 16280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-41.5 + parent: 2 + - uid: 16312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-47.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-69.5 + parent: 2 + - uid: 18410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,18.5 + parent: 2 + - uid: 18485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,2.5 + parent: 2 + - uid: 18487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,1.5 + parent: 2 + - uid: 20572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-52.5 + parent: 2 + - uid: 20845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 2 + - uid: 26694 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 1597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-43.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-44.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 1602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-44.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,6.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,6.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-4.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 +- proto: ChairRitual + entities: + - uid: 1924 + components: + - type: Transform + pos: -70.5,46.5 + parent: 2 +- proto: ChairWeb + entities: + - uid: 20182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-16.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 1358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-15.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 11401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,63.5 + parent: 2 + - uid: 11402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,63.5 + parent: 2 + - uid: 14669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,19.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,19.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,18.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,18.5 + parent: 2 + - uid: 16047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,18.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 1636 + components: + - type: Transform + pos: -6.619612,-5.5882645 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: -6.385237,-5.4476395 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: -43.232704,-51.575558 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 24.346527,-42.392353 + parent: 2 + - uid: 18501 + components: + - type: Transform + pos: -70.60525,0.46894264 + parent: 2 + - uid: 18502 + components: + - type: Transform + pos: -70.37087,0.56269264 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 16151 + components: + - type: Transform + pos: -28.452042,-15.467302 + parent: 2 + - uid: 18100 + components: + - type: Transform + pos: 4.4715376,25.58725 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 1645 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 19658 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 +- proto: ChemDispenserMachineCircuitboard + entities: + - uid: 1648 + components: + - type: Transform + pos: -2.4068801,-41.480404 + parent: 2 +- proto: ChemistryEmptyBottle04 + entities: + - uid: 1649 + components: + - type: Transform + pos: -30.688034,-6.383833 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: -40.55377,-39.346237 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 1651 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 1642 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 +- proto: ChemMasterMachineCircuitboard + entities: + - uid: 1655 + components: + - type: Transform + pos: -2.4040034,-41.31419 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 10807 + components: + - type: Transform + pos: -59.5,48.5 + parent: 2 +- proto: CigarCase + entities: + - uid: 1656 + components: + - type: Transform + pos: -43.479477,-44.376003 + parent: 2 + - uid: 12163 + components: + - type: Transform + pos: -30.518476,-24.392754 + parent: 2 +- proto: CigaretteBbqSauce + entities: + - uid: 1086 + components: + - type: Transform + parent: 1084 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigaretteMold + entities: + - uid: 1657 + components: + - type: Transform + pos: -83.51541,-33.387253 + parent: 2 +- proto: CigarGold + entities: + - uid: 1658 + components: + - type: Transform + pos: 34.63654,-10.16709 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 34.787838,-10.230132 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 24.378048,-42.25366 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 24.415873,-42.392353 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 1662 + components: + - type: Transform + pos: -43.763954,-51.341183 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 13.511836,-22.395489 + parent: 2 +- proto: CigCartonBlue + entities: + - uid: 18500 + components: + - type: Transform + pos: -70.49587,0.64081764 + parent: 2 +- proto: CigCartonRed + entities: + - uid: 965 + components: + - type: Transform + parent: 942 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigPackBlack + entities: + - uid: 15773 + components: + - type: Transform + pos: -8.708983,-65.45722 + parent: 2 +- proto: CigPackBlue + entities: + - uid: 15765 + components: + - type: Transform + pos: -8.693358,-65.85497 + parent: 2 +- proto: CigPackGreen + entities: + - uid: 15774 + components: + - type: Transform + pos: -8.349608,-65.46435 + parent: 2 +- proto: CigPackMixedNasty + entities: + - uid: 1664 + components: + - type: Transform + pos: -6.6349335,-5.2288895 + parent: 2 +- proto: CigPackRed + entities: + - uid: 15769 + components: + - type: Transform + pos: -8.333983,-65.83935 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 1665 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 +- proto: CircuitImprinterMachineCircuitboard + entities: + - uid: 1668 + components: + - type: Transform + pos: -2.4666781,-34.477394 + parent: 2 +- proto: Claymore + entities: + - uid: 15842 + components: + - type: Transform + pos: 18.513374,20.415354 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 1669 + components: + - type: Transform + pos: -48.5,-39.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1672 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14963 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1673 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 11064 + components: + - type: Transform + pos: -51.5,59.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: -8.5,40.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 16371 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 16952 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + pos: 35.5,-71.5 + parent: 2 + - uid: 17641 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 18094 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 18207 + components: + - type: Transform + pos: -41.5,16.5 + parent: 2 + - uid: 18612 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 + - uid: 18622 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 18705 + components: + - type: Transform + pos: -63.5,-37.5 + parent: 2 + - uid: 20548 + components: + - type: Transform + pos: -51.5,-37.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 1675 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 11083 + components: + - type: Transform + pos: -52.5,53.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + pos: -52.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 17628 + components: + - type: Transform + pos: 32.5,-58.5 + parent: 2 + - uid: 18106 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 18414 + components: + - type: Transform + pos: -51.5,14.5 + parent: 2 + - uid: 18434 + components: + - type: Transform + pos: -57.5,7.5 + parent: 2 + - uid: 18609 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 +- proto: ClosetJanitor + entities: + - uid: 18695 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18700 + - 18696 + - 18697 + - 18698 + - 18699 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetJanitorFilled + entities: + - uid: 14527 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 1677 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetL3ScienceFilled + entities: + - uid: 16528 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 17868 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17869 + - 17870 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 17871 + components: + - type: Transform + pos: 35.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17872 + - 17873 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetL3SecurityFilled + entities: + - uid: 1678 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: ClosetL3VirologyFilled + entities: + - uid: 1679 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1680 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1681 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1682 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetLegalFilled + entities: + - uid: 1683 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1684 + - 1685 + - 1686 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenance + entities: + - uid: 1687 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1688 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 1690 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1692 + - 1695 + - 1696 + - 1693 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1697 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1698 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 15837 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15838 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 16165 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 16185 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 16270 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 16271 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 2 + - uid: 16272 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 2 + - uid: 16273 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - uid: 16286 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 2 + - uid: 16297 + components: + - type: Transform + pos: -48.5,-51.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + pos: -51.5,-47.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + pos: -52.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 16357 + - 16358 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 16396 + components: + - type: Transform + pos: 38.5,19.5 + parent: 2 + - uid: 16403 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + pos: 39.5,11.5 + parent: 2 + - uid: 17505 + components: + - type: Transform + pos: 33.5,-71.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 17547 + components: + - type: Transform + pos: 33.5,-69.5 + parent: 2 + - uid: 17569 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 17645 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 17706 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 17746 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 17755 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 2 + - uid: 17763 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 2 + - uid: 17832 + components: + - type: Transform + pos: 30.5,-65.5 + parent: 2 + - uid: 18017 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 18075 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 18079 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 + - uid: 18083 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18084 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18121 + components: + - type: Transform + pos: -14.5,20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18124 + - 18123 + - 18122 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18188 + components: + - type: Transform + pos: -33.5,21.5 + parent: 2 + - uid: 18190 + components: + - type: Transform + pos: -32.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18191 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18428 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 18431 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 18554 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 18556 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 18583 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 18591 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + pos: -64.5,-12.5 + parent: 2 + - uid: 18627 + components: + - type: Transform + pos: -66.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18630 + - 18629 + - 18628 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18643 + components: + - type: Transform + pos: -72.5,-19.5 + parent: 2 + - uid: 18656 + components: + - type: Transform + pos: -74.5,-22.5 + parent: 2 + - uid: 18706 + components: + - type: Transform + pos: -61.5,-37.5 + parent: 2 + - uid: 18923 + components: + - type: Transform + pos: -65.5,-27.5 + parent: 2 + - uid: 20830 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 1700 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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 + - uid: 1702 + components: + - type: Transform + pos: 17.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1703 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1704 + components: + - type: Transform + pos: 35.5,-63.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1705 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10697 + components: + - type: Transform + pos: -3.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10698 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10699 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10700 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15747 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 17978 + components: + - type: Transform + pos: -14.5,-65.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 17672 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 17860 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 18723 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 20491 + components: + - type: Transform + pos: -71.5,-26.5 + parent: 2 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 17668 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 18835 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 20490 + components: + - type: Transform + pos: -66.5,-19.5 + parent: 2 + - uid: 20622 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 20829 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 14592 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 15841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + - uid: 17643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-55.5 + parent: 2 + - uid: 17644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-52.5 + parent: 2 + - uid: 18834 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20738 +- proto: ClothingBackpack + entities: + - uid: 1706 + components: + - type: Transform + pos: -53.458515,-39.329243 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1714 + - 1715 + - 1716 + - 1712 + - 1713 + - 1708 + - 1709 + - 1710 + - 1711 + - 1707 + - uid: 12262 + components: + - type: Transform + pos: -44.312134,-22.231455 + parent: 2 + - uid: 12263 + components: + - type: Transform + pos: -44.312134,-22.45577 + parent: 2 +- proto: ClothingBackpackDuffelEngineering + entities: + - uid: 1717 + components: + - type: Transform + pos: 17.485468,-33.314056 + parent: 2 +- proto: ClothingBackpackDuffelSecurity + entities: + - uid: 733 + components: + - type: MetaData + desc: Большой фещмешок, с подозрительным содержимым. Это легально? + name: пыточный вещмешок + - type: Transform + pos: -15.493229,-33.236618 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 741 + - 734 + - 742 + - 740 + - 739 + - 738 + - 736 + - 735 + - 737 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null + - uid: 1718 + components: + - type: Transform + pos: -53.50806,-37.32976 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 929 + components: + - type: Transform + parent: 926 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1719 + components: + - type: Transform + pos: -43.48036,-2.3085513 + parent: 2 + - uid: 1721 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1730 + components: + - type: Transform + pos: -39.507256,-11.290878 + parent: 2 +- proto: ClothingBackpackSatchelLeather + entities: + - uid: 1731 + components: + - type: Transform + pos: -33.52398,-45.408447 + parent: 2 +- proto: ClothingBackpackSatchelMedical + entities: + - uid: 18634 + components: + - type: Transform + pos: -47.48743,11.523181 + parent: 2 +- proto: ClothingBackpackSatchelMime + entities: + - uid: 8613 + components: + - type: Transform + pos: -25.78793,24.39383 + parent: 2 +- proto: ClothingBackpackWaterTank + entities: + - uid: 1732 + components: + - type: Transform + pos: -76.470825,-35.343338 + parent: 2 +- proto: ClothingBeltJanitorFilled + entities: + - uid: 18130 + components: + - type: Transform + pos: -15.528797,20.63153 + parent: 2 +- proto: ClothingBeltMedicalFilled + entities: + - uid: 1733 + components: + - type: Transform + pos: -45.43569,3.576405 + parent: 2 +- proto: ClothingBeltPlantFilled + entities: + - uid: 11187 + components: + - type: Transform + pos: -14.459564,8.565061 + parent: 2 + - uid: 11188 + components: + - type: Transform + pos: -14.537689,10.283811 + parent: 2 +- proto: ClothingBeltSecurityFilled + entities: + - uid: 1735 + components: + - type: Transform + parent: 1734 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSecurityWebbing + entities: + - uid: 1754 + components: + - type: Transform + parent: 4017 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1755 + components: + - type: Transform + parent: 4043 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltUtility + entities: + - uid: 1743 + components: + - type: Transform + pos: 4.509247,-35.409607 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 31.572388,-23.477459 + parent: 2 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 1746 + components: + - type: Transform + pos: 20.570427,-53.30397 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: 9.54389,-47.317783 + parent: 2 + - uid: 10828 + components: + - type: Transform + pos: -2.6162875,-49.45072 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 1747 + components: + - type: Transform + pos: 40.5477,5.072322 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 5.5159607,-25.366562 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 13.547335,-36.52863 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 40.532074,4.791072 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 34.531013,6.70972 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 31.444729,-23.264694 + parent: 2 +- proto: ClothingEyesBlindfold + entities: + - uid: 735 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False +- proto: ClothingEyesEyepatch + entities: + - uid: 1753 + components: + - type: Transform + pos: 5.5082035,-18.037188 + parent: 2 + - uid: 16161 + components: + - type: Transform + pos: -27.435457,-15.529802 + parent: 2 + - uid: 18367 + components: + - type: Transform + pos: -50.57858,21.54873 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 966 + components: + - type: Transform + parent: 942 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesJamjar + entities: + - uid: 18125 + components: + - type: Transform + pos: 3.5333552,25.593567 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 1701 + components: + - type: Transform + parent: 1700 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1703 + components: + - type: Transform + parent: 1702 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1705 + components: + - type: Transform + parent: 1704 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10698 + components: + - type: Transform + parent: 10697 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10700 + components: + - type: Transform + parent: 10699 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 1736 + components: + - type: Transform + parent: 1734 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 1756 + components: + - type: Transform + pos: -18.54494,-21.425829 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: -18.674131,-21.551651 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: -15.828642,-37.4586 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: -30.254696,-19.491943 + parent: 2 +- proto: ClothingEyesGlassesThermal + entities: + - uid: 1759 + components: + - type: Transform + pos: 15.523342,-50.530453 + parent: 2 + - uid: 3990 + components: + - type: Transform + parent: 3989 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudMedical + entities: + - uid: 1722 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1760 + components: + - type: Transform + pos: -44.47597,6.9946165 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: -45.402958,3.5142083 + parent: 2 +- proto: ClothingEyesHudMedOnion + entities: + - uid: 1762 + components: + - type: Transform + pos: 8.485155,-1.3661705 + parent: 2 +- proto: ClothingEyesHudMedSec + entities: + - uid: 930 + components: + - type: Transform + parent: 926 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudSecurity + entities: + - uid: 1763 + components: + - type: Transform + pos: -47.530895,-45.391506 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 6534 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 28131 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 3070 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 28130 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 2 +- proto: ClothingHandsGlovesColorBlack + entities: + - uid: 18355 + components: + - type: Transform + pos: -45.408237,22.533106 + parent: 2 +- proto: ClothingHandsGlovesColorOrange + entities: + - uid: 1765 + components: + - type: Transform + pos: -70.537415,-35.42703 + parent: 2 +- proto: ClothingHandsGlovesColorPurple + entities: + - uid: 18697 + components: + - type: Transform + parent: 18695 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 18802 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 1766 + components: + - type: Transform + pos: -3.579891,-36.474937 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 15.527235,-50.46592 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: 16.492529,-33.43369 + parent: 2 + - uid: 16343 + components: + - type: Transform + pos: -55.503063,-46.32556 + parent: 2 + - uid: 18290 + components: + - type: Transform + pos: -35.486675,22.55635 + parent: 2 + - uid: 18579 + components: + - type: Transform + pos: -53.46315,-8.499661 + parent: 2 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 1769 + components: + - type: Transform + pos: 33.518665,-17.373621 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: -44.484505,-45.42321 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: 8.511632,-53.410233 + parent: 2 + - uid: 16358 + components: + - type: Transform + parent: 16356 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20305 + components: + - type: Transform + pos: -75.50721,-15.374258 + parent: 2 +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 1737 + components: + - type: Transform + parent: 1734 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12172 + components: + - type: Transform + parent: 12171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesLatex + entities: + - uid: 1771 + components: + - type: Transform + pos: -42.54419,-4.4362106 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -40.472523,-38.351044 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: -33.49355,-15.448452 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: -31.679264,11.550714 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: -15.536817,-33.233944 + parent: 2 + - uid: 1778 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1786 + components: + - type: Transform + pos: 27.592812,15.525996 + parent: 2 + - uid: 17919 + components: + - type: Transform + pos: 31.538363,20.581718 + parent: 2 + - uid: 18069 + components: + - type: Transform + pos: 1.4420867,23.476683 + parent: 2 + - uid: 18123 + components: + - type: Transform + parent: 18121 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 1788 + components: + - type: Transform + parent: 1787 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatBowlerHat + entities: + - uid: 12195 + components: + - type: Transform + pos: -29.515072,-19.137552 + parent: 2 + - uid: 18390 + components: + - type: Transform + pos: -44.68068,18.777498 + parent: 2 +- proto: ClothingHeadHatCatEars + entities: + - uid: 1790 + components: + - type: Transform + pos: -25.530228,-35.356575 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: -94.13227,-34.320915 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 4.0561447,-69.56841 + parent: 2 + - uid: 18066 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 908 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17669 + components: + - type: Transform + pos: 35.410503,-5.280136 + parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 1692 + components: + - type: Transform + parent: 1691 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1793 + components: + - type: Transform + parent: 1792 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18478 + components: + - type: Transform + parent: 18477 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatFedoraGrey + entities: + - uid: 1693 + components: + - type: Transform + parent: 1691 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 1797 + components: + - type: Transform + pos: -13.614639,-8.367544 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: -58.32414,48.605274 + parent: 2 + - uid: 11209 + components: + - type: Transform + pos: -58.619263,60.658417 + parent: 2 +- proto: ClothingHeadHatGladiator + entities: + - uid: 15843 + components: + - type: Transform + pos: 18.557539,20.491411 + parent: 2 +- proto: ClothingHeadHatHardhatArmored + entities: + - uid: 1799 + components: + - type: Transform + pos: -44.437145,-45.235256 + parent: 2 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 1800 + components: + - type: Transform + pos: 15.522211,-50.248463 + parent: 2 + - type: HandheldLight + toggleActionEntity: 3021 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 3021 + - type: ActionsContainer +- proto: ClothingHeadHatHetmanHat + entities: + - uid: 14118 + components: + - type: Transform + pos: 46.690254,-33.31316 + parent: 2 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 10971 + components: + - type: Transform + pos: -69.27715,46.616924 + parent: 2 + - uid: 11020 + components: + - type: Transform + pos: -82.53965,-50.031734 + parent: 2 + - uid: 11226 + components: + - type: Transform + pos: -60.265488,62.47897 + parent: 2 +- proto: ClothingHeadHatHoshat + entities: + - uid: 12141 + components: + - type: Transform + pos: -85.750916,49.462845 + parent: 2 +- proto: ClothingHeadHatMagician + entities: + - uid: 18631 + components: + - type: Transform + pos: -46.478428,21.835028 + parent: 2 +- proto: ClothingHeadHatPaper + entities: + - uid: 14149 + components: + - type: Transform + pos: 39.729763,-45.327168 + parent: 2 +- proto: ClothingHeadHatParamedicsoft + entities: + - uid: 1801 + components: + - type: Transform + pos: -31.301487,5.5033393 + parent: 2 +- proto: ClothingHeadHatPirate + entities: + - uid: 16056 + components: + - type: Transform + pos: 50.440933,19.01891 + parent: 2 +- proto: ClothingHeadHatPlaguedoctor + entities: + - uid: 10955 + components: + - type: Transform + pos: -74.4702,60.848495 + parent: 2 +- proto: ClothingHeadHatPurplesoftFlipped + entities: + - uid: 18699 + components: + - type: Transform + parent: 18695 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatPwig + entities: + - uid: 1684 + components: + - type: Transform + parent: 1683 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatRichard + entities: + - uid: 746 + components: + - type: Transform + parent: 743 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 1723 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1802 + components: + - type: Transform + pos: -42.501633,-4.4362106 + parent: 2 +- proto: ClothingHeadHatSurgcapGreen + entities: + - uid: 1724 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatSurgcapPurple + entities: + - uid: 1725 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatUshanka + entities: + - uid: 1803 + components: + - type: Transform + pos: 14.476251,7.7476377 + parent: 2 +- proto: ClothingHeadHatWatermelon + entities: + - uid: 1804 + components: + - type: Transform + pos: -20.514004,-50.486633 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 1805 + components: + - type: Transform + pos: 16.518473,-33.3126 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 20.573933,-53.475212 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: -54.583164,3.5688088 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 20.54106,11.561088 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: 21.494184,11.576713 + parent: 2 + - uid: 20810 + components: + - type: Transform + pos: 0.4980997,-40.326057 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlame + entities: + - uid: 1807 + components: + - type: Transform + pos: 9.7204075,-51.291683 + parent: 2 + - uid: 15911 + components: + - type: Transform + pos: 17.51243,17.769972 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 1806 + components: + - type: Transform + pos: 9.39259,-51.37364 + parent: 2 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 5043 + components: + - type: Transform + pos: 9.537586,-47.32409 + parent: 2 +- proto: ClothingHeadHatXmasCrown + entities: + - uid: 19443 + components: + - type: Transform + pos: -67.56355,-22.469074 + parent: 2 +- proto: ClothingHeadHelmetAtmosFire + entities: + - uid: 10687 + components: + - type: Transform + parent: 10685 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10689 + components: + - type: Transform + parent: 10688 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetBasic + entities: + - uid: 1738 + components: + - type: Transform + parent: 1734 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetRiot + entities: + - uid: 1812 + components: + - type: Transform + pos: -35.79491,-50.54775 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -35.54491,-50.6415 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: -35.310535,-50.688374 + parent: 2 +- proto: ClothingHeadsetMedicalScience + entities: + - uid: 1779 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18358 + components: + - type: Transform + pos: -46.345737,22.64248 + parent: 2 +- proto: ClothingHeadsetRobotics + entities: + - uid: 1821 + components: + - type: Transform + pos: 14.455501,7.5553074 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: 14.561884,7.576584 + parent: 2 +- proto: ClothingHeadsetSecurity + entities: + - uid: 1823 + components: + - type: Transform + pos: -46.55416,-45.434048 + parent: 2 +- proto: ClothingMaskBat + entities: + - uid: 1824 + components: + - type: Transform + pos: -96.16025,-21.191647 + parent: 2 +- proto: ClothingMaskBear + entities: + - uid: 16059 + components: + - type: Transform + pos: 49.612892,19.69976 + parent: 2 +- proto: ClothingMaskBee + entities: + - uid: 11328 + components: + - type: Transform + pos: -58.57956,54.162037 + parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 1825 + components: + - type: Transform + pos: -55.492596,-41.449715 + parent: 2 + - uid: 16308 + components: + - type: Transform + pos: -51.51079,-50.532402 + parent: 2 + - uid: 19938 + components: + - type: Transform + pos: -72.52315,-27.486462 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 1817 + components: + - type: Transform + parent: 1815 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskFox + entities: + - uid: 16096 + components: + - type: Transform + pos: 50.466465,18.792377 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 1707 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False + - uid: 1826 + components: + - type: Transform + pos: 19.670385,-32.28398 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: 19.386696,-32.56767 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: 6.5228257,-43.27535 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: -3.527325,-21.531843 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: 43.395077,-1.4245929 + parent: 2 + - uid: 9424 + components: + - type: Transform + pos: 8.530544,-53.400776 + parent: 2 + - uid: 15750 + components: + - type: Transform + pos: -10.60845,-68.4251 + parent: 2 + - uid: 16172 + components: + - type: Transform + pos: -28.47091,-30.53388 + parent: 2 + - uid: 17460 + components: + - type: Transform + pos: 40.532856,10.554137 + parent: 2 + - uid: 18353 + components: + - type: Transform + pos: -11.47217,13.524376 + parent: 2 + - uid: 18574 + components: + - type: Transform + pos: -53.260025,-8.327786 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 18517 + components: + - type: Transform + pos: -70.49345,-3.5379438 + parent: 2 +- proto: ClothingMaskGasSecurity + entities: + - uid: 1831 + components: + - type: Transform + pos: -19.503233,-53.54918 + parent: 2 +- proto: ClothingMaskGasSwat + entities: + - uid: 1832 + components: + - type: Transform + pos: -47.478462,-44.452587 + parent: 2 +- proto: ClothingMaskItalianMoustache + entities: + - uid: 18701 + components: + - type: Transform + pos: -44.371773,17.63211 + parent: 2 +- proto: ClothingMaskJackal + entities: + - uid: 18806 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskMuzzle + entities: + - uid: 736 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False +- proto: ClothingMaskPlague + entities: + - uid: 10956 + components: + - type: Transform + pos: -74.360825,60.723495 + parent: 2 +- proto: ClothingMaskRat + entities: + - uid: 1833 + components: + - type: Transform + pos: -58.953228,-38.979023 + parent: 2 + - uid: 10958 + components: + - type: Transform + pos: -74.97289,60.557243 + parent: 2 + - uid: 11017 + components: + - type: Transform + pos: -82.524025,-50.281734 + parent: 2 +- proto: ClothingMaskRaven + entities: + - uid: 737 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False +- proto: ClothingMaskSexyMime + entities: + - uid: 9446 + components: + - type: Transform + pos: -26.56918,24.346954 + parent: 2 +- proto: ClothingMaskSterile + entities: + - uid: 1834 + components: + - type: Transform + pos: -42.48036,-4.457487 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: -41.53956,-6.585109 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -15.493229,-33.6196 + parent: 2 + - uid: 16160 + components: + - type: Transform + pos: -27.489042,-15.501446 + parent: 2 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 15846 + components: + - type: Transform + pos: 18.49371,20.470135 + parent: 2 +- proto: ClothingNeckGoldmedal + entities: + - uid: 1838 + components: + - type: MetaData + desc: медаль, которую выдавали ветеранам корпоративной войны. + name: медаль ветерана + - type: Transform + pos: -36.35451,-60.759163 + parent: 2 +- proto: ClothingNeckMantleHOS + entities: + - uid: 12070 + components: + - type: Transform + pos: -85.73529,48.97847 + parent: 2 +- proto: ClothingNeckScarfStripedBlack + entities: + - uid: 12176 + components: + - type: Transform + parent: 12171 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18702 + components: + - type: Transform + pos: -44.453728,18.304686 + parent: 2 +- proto: ClothingNeckScarfStripedPurple + entities: + - uid: 18698 + components: + - type: Transform + parent: 18695 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 1839 + components: + - type: Transform + pos: -35.327213,-35.59533 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 4 + components: + - type: Transform + pos: -44.509468,7.51258 + parent: 2 + - type: Stethoscope + actionEntity: 5 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5 + - uid: 1840 + components: + - type: Transform + pos: -9.493061,11.593835 + parent: 2 + - uid: 1842 + components: + - type: Transform + parent: 1841 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1844 + components: + - type: Transform + parent: 1843 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1845 + components: + - type: Transform + pos: -45.43448,3.6655085 + parent: 2 + - uid: 18178 + components: + - type: Transform + pos: -16.445194,23.624 + parent: 2 + - type: Stethoscope + actionEntity: 18179 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 18179 +- proto: ClothingNeckTieDet + entities: + - uid: 18827 + components: + - type: Transform + pos: -75.63405,1.4218836 + parent: 2 +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 18072 + components: + - type: Transform + pos: -16.45703,23.645758 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 1846 + components: + - type: Transform + pos: -35.51366,-51.36025 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: -35.685535,-51.282124 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: -35.26366,-51.3915 + parent: 2 +- proto: ClothingOuterArmorReflective + entities: + - uid: 1849 + components: + - type: Transform + pos: -32.574726,-54.560905 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: -32.355976,-54.435905 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 1851 + components: + - type: Transform + pos: -35.54491,-51.454 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: -35.76366,-51.375874 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: -35.35741,-51.5165 + parent: 2 +- proto: ClothingOuterCoatJensen + entities: + - uid: 1695 + components: + - type: Transform + parent: 1691 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1794 + components: + - type: Transform + parent: 1792 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12149 + components: + - type: Transform + parent: 12147 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18479 + components: + - type: Transform + parent: 18477 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatLab + entities: + - uid: 18062 + components: + - type: Transform + parent: 18060 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatLabGene + entities: + - uid: 1780 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitVoidParamed + entities: + - uid: 1818 + components: + - type: Transform + parent: 1815 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHospitalGown + entities: + - uid: 18063 + components: + - type: Transform + parent: 18060 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterJacketChef + entities: + - uid: 909 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterPlagueSuit + entities: + - uid: 10957 + components: + - type: Transform + pos: -74.392075,60.379745 + parent: 2 +- proto: ClothingOuterRobesCult + entities: + - uid: 3283 + components: + - type: Transform + pos: -60.478252,62.70592 + parent: 2 + - uid: 10970 + components: + - type: Transform + pos: -70.365204,45.773174 + parent: 2 + - uid: 11021 + components: + - type: Transform + pos: -82.5084,-50.562984 + parent: 2 +- proto: ClothingOuterRobesJudge + entities: + - uid: 1685 + components: + - type: Transform + parent: 1683 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitAtmosFire + entities: + - uid: 10686 + components: + - type: Transform + parent: 10685 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10690 + components: + - type: Transform + parent: 10688 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitFire + entities: + - uid: 19937 + components: + - type: Transform + pos: -72.41677,-27.337526 + parent: 2 +- proto: ClothingOuterSuitIan + entities: + - uid: 16150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5125,27.58159 + parent: 2 +- proto: ClothingOuterVestHazard + entities: + - uid: 1854 + components: + - type: Transform + pos: 15.527235,-50.478527 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: 8.511632,-53.49534 + parent: 2 +- proto: ClothingOuterWinterCentcom + entities: + - uid: 6995 + components: + - type: Transform + pos: -52.730286,25.945572 + parent: 2 +- proto: ClothingOuterWinterClown + entities: + - uid: 1855 + components: + - type: Transform + pos: -13.401873,-8.346268 + parent: 2 +- proto: ClothingOuterWinterEngi + entities: + - uid: 1857 + components: + - type: Transform + parent: 1856 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1860 + components: + - type: Transform + parent: 1859 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterGen + entities: + - uid: 1781 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterMime + entities: + - uid: 1862 + components: + - type: Transform + pos: -13.540328,-8.329787 + parent: 2 +- proto: ClothingOuterWinterMusician + entities: + - uid: 1863 + components: + - type: Transform + pos: -13.491605,-8.45215 + parent: 2 +- proto: ClothingOuterWinterPara + entities: + - uid: 1864 + components: + - type: Transform + pos: -33.4601,9.64359 + parent: 2 +- proto: ClothingOuterWinterWeb + entities: + - uid: 12145 + components: + - type: Transform + parent: 12144 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18804 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 16357 + components: + - type: Transform + parent: 16356 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18180 + components: + - type: Transform + pos: -16.55078,23.614508 + parent: 2 +- proto: ClothingShoesBootsJack + entities: + - uid: 1740 + components: + - type: Transform + parent: 1734 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18376 + components: + - type: Transform + pos: -50.500454,21.57998 + parent: 2 +- proto: ClothingShoesBootsLaceup + entities: + - uid: 967 + components: + - type: Transform + parent: 942 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12148 + components: + - type: Transform + parent: 12147 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18124 + components: + - type: Transform + parent: 18121 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsMag + entities: + - uid: 1865 + components: + - type: Transform + pos: 6.465568,-38.665657 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: 6.699943,-38.431282 + parent: 2 +- proto: ClothingShoesBootsSalvage + entities: + - uid: 12175 + components: + - type: Transform + parent: 12171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorOrange + entities: + - uid: 1867 + components: + - type: Transform + pos: -67.647995,-33.15542 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: -67.647995,-33.52106 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: -67.647995,-33.338238 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: -67.647995,-33.70388 + parent: 2 +- proto: ClothingShoesColorPurple + entities: + - uid: 18700 + components: + - type: Transform + parent: 18695 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorWhite + entities: + - uid: 1726 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1782 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18805 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesCult + entities: + - uid: 10969 + components: + - type: Transform + pos: -75.52233,60.613686 + parent: 2 +- proto: ClothingShoesLeather + entities: + - uid: 12146 + components: + - type: Transform + parent: 12144 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesSlippers + entities: + - uid: 1872 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1880 + components: + - type: Transform + pos: -83.52926,-45.48542 + parent: 2 + - uid: 12117 + components: + - type: Transform + parent: 12112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12118 + components: + - type: Transform + parent: 12112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12120 + components: + - type: Transform + parent: 12119 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12123 + components: + - type: Transform + parent: 12119 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12127 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12128 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12137 + components: + - type: Transform + parent: 12136 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12139 + components: + - type: Transform + parent: 12136 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16109 + components: + - type: Transform + pos: 48.485947,18.848696 + parent: 2 +- proto: ClothingShoesWizard + entities: + - uid: 18191 + components: + - type: Transform + parent: 18190 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18365 + components: + - type: Transform + pos: -51.375454,21.48623 + parent: 2 +- proto: ClothingUniformJumpskirtColorPurple + entities: + - uid: 18696 + components: + - type: Transform + parent: 18695 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtDetectiveGrey + entities: + - uid: 1795 + components: + - type: Transform + parent: 1792 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtGenetics + entities: + - uid: 1783 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 1881 + components: + - type: Transform + parent: 13535 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12160 + components: + - type: Transform + pos: -36.488583,-23.392754 + parent: 2 + - uid: 18122 + components: + - type: Transform + parent: 18121 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtMime + entities: + - uid: 2628 + components: + - type: Transform + pos: -26.50668,23.92508 + parent: 2 +- proto: ClothingUniformJumpskirtPrisoner + entities: + - uid: 1882 + components: + - type: Transform + pos: -66.84341,-33.413887 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: -66.18151,-33.4265 + parent: 2 +- proto: ClothingUniformJumpskirtWeb + entities: + - uid: 18803 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitColorWhite + entities: + - uid: 18273 + components: + - type: Transform + pos: -41.517025,19.397232 + parent: 2 + - uid: 18274 + components: + - type: Transform + pos: -41.47015,26.444107 + parent: 2 + - uid: 18869 + components: + - type: Transform + pos: -53.548706,-8.416702 + parent: 2 +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 1796 + components: + - type: Transform + parent: 1792 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitFlannel + entities: + - uid: 12174 + components: + - type: Transform + parent: 12171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitGenetics + entities: + - uid: 1784 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitGladiator + entities: + - uid: 15845 + components: + - type: Transform + pos: 18.472433,20.470135 + parent: 2 +- proto: ClothingUniformJumpsuitKimono + entities: + - uid: 1884 + components: + - type: Transform + pos: -36.65522,-60.524788 + parent: 2 +- proto: ClothingUniformJumpsuitLawyerRed + entities: + - uid: 18721 + components: + - type: Transform + pos: -69.511475,-30.378857 + parent: 2 +- proto: ClothingUniformJumpsuitLoungewear + entities: + - uid: 12115 + components: + - type: Transform + parent: 12112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12116 + components: + - type: Transform + parent: 12112 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12124 + components: + - type: Transform + parent: 12119 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12125 + components: + - type: Transform + parent: 12119 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12129 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12130 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12138 + components: + - type: Transform + parent: 12136 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12140 + components: + - type: Transform + parent: 12136 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 1885 + components: + - type: Transform + pos: -67.175186,-33.451714 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: -66.50932,-33.451714 + parent: 2 +- proto: ClothingUniformJumpsuitRoboticist + entities: + - uid: 11082 + components: + - type: Transform + pos: -60.648468,62.464787 + parent: 2 +- proto: ClothingUniformJumpsuitTacticool + entities: + - uid: 18357 + components: + - type: Transform + pos: -45.408237,22.54873 + parent: 2 +- proto: ClothingUniformJumpsuitWeb + entities: + - uid: 18801 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClownRecorder + entities: + - uid: 1887 + components: + - type: Transform + pos: -26.551506,-35.399128 + parent: 2 + - uid: 18490 + components: + - type: Transform + pos: -75.75928,0.62262154 + parent: 2 +- proto: ClusterBangFull + entities: + - uid: 1888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.52785,-54.435905 + parent: 2 + - uid: 18488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.49587,0.57831764 + parent: 2 +- proto: Cobweb1 + entities: + - uid: 1889 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: -56.5,-33.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + pos: -60.5,64.5 + parent: 2 + - uid: 11469 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 11607 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 12157 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 12273 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 12455 + components: + - type: Transform + pos: -64.5,-17.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: -72.5,-20.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: -9.5,47.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: -10.5,46.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + pos: -7.5,57.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 15587 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 15600 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,15.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 16054 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 16152 + components: + - type: Transform + pos: -30.5,-14.5 + parent: 2 + - uid: 16292 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 16369 + components: + - type: Transform + pos: -52.5,-41.5 + parent: 2 + - uid: 16420 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 16422 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 16423 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 16424 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 16429 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 17275 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 17291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,18.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 18008 + components: + - type: Transform + pos: 34.5,29.5 + parent: 2 + - uid: 18030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + - uid: 18031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,27.5 + parent: 2 + - uid: 18032 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 18034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,20.5 + parent: 2 + - uid: 18036 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 18041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 + - uid: 18042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + - uid: 18043 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 18048 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 18051 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 18052 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 18153 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 18313 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 18314 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 18317 + components: + - type: Transform + pos: -10.5,21.5 + parent: 2 + - uid: 18321 + components: + - type: Transform + pos: -22.5,24.5 + parent: 2 + - uid: 18322 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 18531 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 18550 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 18564 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 18568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-7.5 + parent: 2 + - uid: 18580 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 18604 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 18666 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 18692 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 2 + - uid: 18788 + components: + - type: Transform + pos: -71.5,6.5 + parent: 2 + - uid: 18809 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 18880 + components: + - type: Transform + pos: -66.5,-13.5 + parent: 2 + - uid: 18926 + components: + - type: Transform + pos: -72.5,-27.5 + parent: 2 + - uid: 18927 + components: + - type: Transform + pos: -72.5,-31.5 + parent: 2 + - uid: 19464 + components: + - type: Transform + pos: -72.5,-19.5 + parent: 2 + - uid: 19465 + components: + - type: Transform + pos: -69.5,-15.5 + parent: 2 + - uid: 19524 + components: + - type: Transform + pos: -77.5,-22.5 + parent: 2 + - uid: 19525 + components: + - type: Transform + pos: -74.5,-22.5 + parent: 2 + - uid: 20205 + components: + - type: Transform + pos: -79.5,-15.5 + parent: 2 + - uid: 20216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-15.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-15.5 + parent: 2 + - uid: 20244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-15.5 + parent: 2 + - uid: 20246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-15.5 + parent: 2 + - uid: 20278 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-16.5 + parent: 2 + - uid: 20280 + components: + - type: Transform + pos: -73.5,-16.5 + parent: 2 + - uid: 20281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-17.5 + parent: 2 + - uid: 20282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-17.5 + parent: 2 + - uid: 20285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-16.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-16.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-16.5 + parent: 2 + - uid: 20290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-18.5 + parent: 2 + - uid: 20291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-18.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + pos: -75.5,-19.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + pos: -74.5,-17.5 + parent: 2 + - uid: 20299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-17.5 + parent: 2 + - uid: 20303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-20.5 + parent: 2 + - uid: 20304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-20.5 + parent: 2 + - uid: 20436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-17.5 + parent: 2 + - uid: 20463 + components: + - type: Transform + pos: -71.5,-15.5 + parent: 2 + - uid: 20464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-15.5 + parent: 2 + - uid: 20534 + components: + - type: Transform + pos: -67.5,-24.5 + parent: 2 + - uid: 20589 + components: + - type: Transform + pos: -56.5,-45.5 + parent: 2 + - uid: 20614 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 20828 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 20875 + components: + - type: Transform + pos: 30.5,-65.5 + parent: 2 + - uid: 27380 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 +- proto: Cobweb2 + entities: + - uid: 1906 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -58.5,-33.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: -85.5,-33.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: 40.5,-60.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 41.5,-61.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 11344 + components: + - type: Transform + pos: -66.5,64.5 + parent: 2 + - uid: 12158 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + pos: 1.5,46.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + pos: -1.5,57.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 15586 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 15599 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,15.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 15794 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 16417 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 16418 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 16421 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 16425 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 16427 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 + - uid: 16428 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 17256 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,24.5 + parent: 2 + - uid: 17548 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 17578 + components: + - type: Transform + pos: 52.5,5.5 + parent: 2 + - uid: 17801 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 18028 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 18037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,21.5 + parent: 2 + - uid: 18038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - uid: 18039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,21.5 + parent: 2 + - uid: 18044 + components: + - type: Transform + pos: 37.5,33.5 + parent: 2 + - uid: 18045 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 18046 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 18049 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 18050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,34.5 + parent: 2 + - uid: 18053 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 18086 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 18138 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 18152 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 18316 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 18319 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 18320 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 18533 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 18551 + components: + - type: Transform + pos: -74.5,3.5 + parent: 2 + - uid: 18600 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 18602 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 18665 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 18668 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 18789 + components: + - type: Transform + pos: -69.5,6.5 + parent: 2 + - uid: 18808 + components: + - type: Transform + pos: -69.5,3.5 + parent: 2 + - uid: 18830 + components: + - type: Transform + pos: -70.5,-3.5 + parent: 2 + - uid: 18879 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 + - uid: 19532 + components: + - type: Transform + pos: -69.5,-22.5 + parent: 2 + - uid: 19566 + components: + - type: Transform + pos: -68.5,-13.5 + parent: 2 + - uid: 19819 + components: + - type: Transform + pos: -69.5,-28.5 + parent: 2 + - uid: 20228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-15.5 + parent: 2 + - uid: 20230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-17.5 + parent: 2 + - uid: 20231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-15.5 + parent: 2 + - uid: 20243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-15.5 + parent: 2 + - uid: 20245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-15.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-17.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-17.5 + parent: 2 + - uid: 20277 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - uid: 20283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-17.5 + parent: 2 + - uid: 20284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-17.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-16.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-16.5 + parent: 2 + - uid: 20292 + components: + - type: Transform + pos: -75.5,-19.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 + - uid: 20296 + components: + - type: Transform + pos: -78.5,-15.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-15.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-16.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-16.5 + parent: 2 + - uid: 20302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-19.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: -65.5,-29.5 + parent: 2 + - uid: 20587 + components: + - type: Transform + pos: -51.5,-49.5 + parent: 2 + - uid: 20588 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 20611 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 20613 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 20616 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 20620 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 20841 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 20842 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 20874 + components: + - type: Transform + pos: 34.5,-65.5 + parent: 2 + - uid: 20893 + components: + - type: Transform + pos: 38.5,-67.5 + parent: 2 +- proto: CocoaSeeds + entities: + - uid: 1932 + components: + - type: Transform + pos: 11.537853,-13.287449 + parent: 2 + - uid: 30216 + components: + - type: Transform + pos: -16.258862,8.398324 + parent: 2 +- proto: ComfyChair + entities: + - uid: 1933 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-45.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-53.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,14.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,-39.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-39.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 10932 + components: + - type: Transform + pos: -75.5,59.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 18387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,18.5 + parent: 2 + - uid: 18389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,18.5 + parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 13869 + components: + - type: Transform + pos: -8.538214,53.49351 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 1964 + components: + - type: Transform + pos: 18.533634,-17.513302 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 1965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - uid: 10832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-60.5 + parent: 2 + - uid: 10833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-60.5 + parent: 2 + - uid: 10834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-60.5 + parent: 2 + - uid: 10835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-58.5 + parent: 2 + - uid: 10837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-54.5 + parent: 2 + - uid: 10838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-19.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,45.5 + parent: 2 + - uid: 15330 + components: + - type: Transform + pos: -1.5,57.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 1976 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 1977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 1980 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,-40.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -96.5,-31.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,11.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-27.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: -60.5,64.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,22.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,26.5 + parent: 2 + - uid: 17855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,26.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 1986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 1988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-47.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 1995 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 1997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-23.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 2000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,2.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-0.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,6.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-39.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-49.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-52.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,7.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-27.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 2009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-55.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-51.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-45.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-53.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-36.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: -59.5,-33.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-32.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 18136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 2 + - uid: 18149 + components: + - type: Transform + pos: -17.5,24.5 + parent: 2 + - uid: 18151 + components: + - type: Transform + pos: -18.5,24.5 + parent: 2 + - uid: 18483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,1.5 + parent: 2 + - uid: 18484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,2.5 + parent: 2 + - uid: 18561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-9.5 + parent: 2 + - uid: 18581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-9.5 + parent: 2 + - uid: 18582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-9.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 2021 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 1379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-39.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 +- proto: ComputerMassMediaCircuitboard + entities: + - uid: 2025 + components: + - type: Transform + pos: -1.468001,-37.62437 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 2026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,13.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,6.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 2031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-59.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-23.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,46.5 + parent: 2 + - uid: 16279 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 16311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-47.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 939 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-23.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 14582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,40.5 + parent: 2 + - uid: 16324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-46.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 2045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-4.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,6.5 + parent: 2 + - uid: 27381 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 10055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,6.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 2049 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 2051 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-11.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 2055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,45.5 + parent: 2 + - uid: 16416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-52.5 + parent: 2 + - uid: 17501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,16.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-69.5 + parent: 2 + - uid: 18411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,18.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 2058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-46.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,1.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-46.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-48.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-54.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + pos: -7.5,57.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2067 + components: + - type: Transform + pos: -24.5,-54.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-45.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-54.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-36.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -58.5,-33.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-31.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 2075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 2076 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 14595 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 26696 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 2080 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 17857 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 18884 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 19943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-26.5 + parent: 2 + - uid: 19944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-25.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 2092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-19.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-19.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-19.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-19.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-19.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-18.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-17.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-23.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-26.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-26.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-26.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-26.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-26.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - uid: 9125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,43.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,43.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,43.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,43.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + pos: 30.5,-78.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + pos: 30.5,-77.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + pos: 30.5,-76.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + pos: 30.5,-75.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: 30.5,-74.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: 30.5,-73.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 30.5,-72.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: 30.5,-71.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 13872 + components: + - type: Transform + pos: -0.71643686,53.759136 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 2119 + components: + - type: Transform + pos: 49.5,2.5 + parent: 2 +- proto: CrateChemistrySupplies + entities: + - uid: 2120 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateCoffin + entities: + - uid: 10777 + components: + - type: Transform + pos: -78.5,49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10778 + components: + - type: Transform + pos: -78.5,50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10779 + components: + - type: Transform + pos: -78.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10780 + components: + - type: Transform + pos: -80.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10781 + components: + - type: Transform + pos: -80.5,50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10782 + components: + - type: Transform + pos: -80.5,49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateCommandSecure + entities: + - uid: 14614 + components: + - type: Transform + pos: -2.5,42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14624 + - 14622 + - 14621 + - 14620 + - 14619 + - 14618 + - 14617 + - 14616 + - 14623 + - 14615 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmptySpawner + entities: + - uid: 14128 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 +- proto: CrateEngineering + entities: + - uid: 11013 + components: + - type: Transform + pos: -71.5,62.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3285 + - 3286 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringAMEControl + entities: + - uid: 14023 + components: + - type: Transform + pos: 28.5,-75.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 14022 + components: + - type: Transform + pos: 28.5,-74.5 + parent: 2 +- proto: CrateEngineeringCableHV + entities: + - uid: 17606 + components: + - type: Transform + pos: 38.5,-67.5 + parent: 2 +- proto: CrateEngineeringParticleAccelerator + entities: + - uid: 2123 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 +- proto: CrateEngineeringShuttle + entities: + - uid: 16138 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 519 + components: + - type: Transform + pos: 58.5,-4.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 60.5,-4.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 11232 + components: + - type: Transform + pos: -66.5,64.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + pos: 48.5,-44.5 + parent: 2 + - uid: 14776 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 2 + - uid: 18089 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 18388 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 18436 + components: + - type: Transform + pos: -60.5,8.5 + parent: 2 + - uid: 18507 + components: + - type: Transform + pos: -66.5,3.5 + parent: 2 + - uid: 18649 + components: + - type: Transform + pos: -70.5,-22.5 + parent: 2 + - uid: 18654 + components: + - type: Transform + pos: -72.5,-22.5 + parent: 2 +- proto: CrateFoodCooking + entities: + - uid: 2129 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 +- proto: CrateFoodPizza + entities: + - uid: 16126 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 1871 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 13.181479 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1876 + - 1878 + - 1875 + - 1874 + - 1873 + - 1872 + - 1877 + - 1879 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2131 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2132 + - 2133 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2134 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 2984 + components: + - type: MetaData + name: холодилнк для овощей и фруктов + - type: Transform + pos: -88.5,-43.5 + parent: 2 + - uid: 18065 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateFunArtSupplies + entities: + - uid: 2135 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 +- proto: CrateFunInstrumentsString + entities: + - uid: 2136 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 2137 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateGenericSteel + entities: + - uid: 1084 + components: + - type: Transform + pos: -82.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.422104 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1085 + - 1086 + - 1087 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2140 + components: + - type: Transform + pos: -80.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.49301 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2149 + - 2143 + - 2150 + - 2151 + - 2141 + - 2148 + - 2142 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 16289 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 66.803215 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 18139 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18140 + - 18141 + - 18142 + - 18143 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18418 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18419 + - 18420 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18438 + components: + - type: Transform + pos: -61.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18439 + - 18440 + - 18441 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18442 + components: + - type: Transform + pos: -62.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18445 + - 18444 + - 18443 + - 18446 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18613 + components: + - type: Transform + pos: -67.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18615 + - 18614 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18646 + components: + - type: Transform + pos: -69.5,-23.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 18647 + components: + - type: Transform + pos: -70.5,-23.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 18648 + components: + - type: Transform + pos: -69.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 26651 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 +- proto: CrateHydroponicsSeeds + entities: + - uid: 2152 + components: + - type: Transform + pos: 16.5,0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsTools + entities: + - uid: 2153 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2157 + - 2154 + - 2156 + - 2155 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateLivestock + entities: + - uid: 17549 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - type: EntityStorage + open: True + removedMasks: 28 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - TableLayer + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 135 + hard: True + restitution: 0 + friction: 0.4 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateMaterialPlasma + entities: + - uid: 2160 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 2161 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNPCButterflies + entities: + - uid: 11327 + components: + - type: Transform + pos: -59.5,55.5 + parent: 2 +- proto: CrateNPCChicken + entities: + - uid: 11173 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 +- proto: CrateNPCGoat + entities: + - uid: 2162 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 14589 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14590 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateNPCMothroach + entities: + - uid: 11027 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 30784 + components: + - type: Transform + pos: -76.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 30796 + - 30795 + - 30794 + - 30793 + - 30792 + - 30791 + - 30790 + - 30789 + - 920 + - 917 + - 921 + - 30788 + - 30787 + - 30786 + - 30785 + - 30797 + - 30798 + - 30799 + - 916 + - 910 + - 918 + - 907 + - 911 + - 908 + - 909 + - 914 + - 912 + - 915 + - 913 + - 919 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateSalvageEquipment + entities: + - uid: 2163 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2165 + - 10122 + - 2164 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateSecure + entities: + - uid: 1075 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1079 + - 1078 + - 1076 + - 1077 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 17503 + components: + - type: Transform + pos: 34.5,-71.5 + parent: 2 +- proto: CrateServiceReplacementLights + entities: + - uid: 960 + components: + - type: Transform + pos: 57.5,-4.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 +- proto: CrateTrashCart + entities: + - uid: 13536 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 +- proto: CrateTrashCartFilled + entities: + - uid: 743 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 744 + - 746 + - 745 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2166 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3467 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2167 + components: + - type: Transform + pos: -74.5,-35.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 13535 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1881 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateWeb + entities: + - uid: 18791 + components: + - type: Transform + pos: -76.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18806 + - 18805 + - 18804 + - 18803 + - 18802 + - 18801 + - 18800 + - 18799 + - 18798 + - 18797 + - 18796 + - 18795 + - 18794 + - 18793 + - 18792 + - 18807 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonBox + entities: + - uid: 2168 + components: + - type: Transform + pos: -14.492945,-5.2687488 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: -21.530844,-10.354873 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: -21.51666,-10.425795 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: -96.829544,-34.20672 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: -96.829544,-34.37063 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: -96.829544,-34.528233 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: -33.106903,-19.365507 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: -33.106903,-19.26464 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: -33.106903,-19.46007 + parent: 2 + - uid: 12267 + components: + - type: Transform + pos: -51.518112,-17.243496 + parent: 2 + - uid: 12268 + components: + - type: Transform + pos: -51.518112,-17.371155 + parent: 2 + - uid: 18140 + components: + - type: Transform + parent: 18139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18141 + components: + - type: Transform + parent: 18139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18142 + components: + - type: Transform + parent: 18139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CrayonRainbow + entities: + - uid: 16166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.327377,-33.514935 + parent: 2 +- proto: Crematorium + entities: + - uid: 10772 + components: + - type: Transform + pos: -76.5,51.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 31071 + components: + - type: Transform + pos: -46.5,-52.5 + parent: 2 +- proto: CrewMonitoringComputerCircuitboard + entities: + - uid: 2175 + components: + - type: Transform + pos: -1.4553925,-35.48829 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 2176 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False + - uid: 11124 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 879 + components: + - type: Transform + parent: 877 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2178 + components: + - type: Transform + parent: 2177 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2180 + components: + - type: Transform + pos: -28.458916,7.5776935 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: -11.436226,-0.489913 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 4.496324,-53.49344 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 6.527371,-42.520702 + parent: 2 + - uid: 2185 + components: + - type: Transform + parent: 2184 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2188 + components: + - type: Transform + pos: 17.574043,-48.456284 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: -45.42187,3.57725 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: -32.5248,-15.510952 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: -53.43166,-39.309307 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 28.542215,6.4932003 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 43.600597,-9.600688 + parent: 2 + - uid: 10944 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + parent: 13594 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13798 + components: + - type: Transform + pos: 41.516895,-42.492516 + parent: 2 + - uid: 17865 + components: + - type: Transform + pos: 29.459335,33.49141 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 2154 + components: + - type: Transform + parent: 2153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2194 + components: + - type: Transform + pos: -40.46174,10.513579 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 26.569487,11.481749 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 13.532123,-36.474373 + parent: 2 + - uid: 2199 + components: + - type: Transform + parent: 2198 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2200 + components: + - type: Transform + pos: -46.499645,-45.579006 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: -53.470516,-33.476475 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 4.568058,-21.616194 + parent: 2 + - uid: 3285 + components: + - type: Transform + parent: 11013 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14851 + components: + - type: Transform + pos: -10.473737,43.49613 + parent: 2 + - uid: 17515 + components: + - type: Transform + pos: 46.53368,15.444061 + parent: 2 + - uid: 18174 + components: + - type: Transform + pos: -19.48828,24.427008 + parent: 2 + - uid: 19954 + components: + - type: Transform + pos: -72.45891,-31.452473 + parent: 2 + - uid: 20323 + components: + - type: Transform + pos: -75.45165,-15.447665 + parent: 2 + - uid: 27384 + components: + - type: Transform + pos: 33.52745,12.528097 + parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 10744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 10370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-11.5 + parent: 2 + - uid: 10371 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 10734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-13.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 2204 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 +- proto: CryoPodMachineCircuitboard + entities: + - uid: 2206 + components: + - type: Transform + pos: -3.4707282,-34.361977 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: -3.4630527,-34.460606 + parent: 2 +- proto: CryostasisBeaker + entities: + - uid: 2208 + components: + - type: Transform + pos: -54.60162,0.9155271 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: -54.157555,0.89693385 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 2210 + components: + - type: Transform + pos: -37.650143,-0.6531329 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: -37.271893,-0.6468288 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: -37.65645,-0.2244491 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: -37.271893,-0.2244491 + parent: 2 +- proto: CrystalBlue + entities: + - uid: 3296 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-79.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-77.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 5909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-15.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + pos: -84.5,56.5 + parent: 2 + - uid: 11834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,70.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: -89.5,60.5 + parent: 2 + - uid: 11882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,62.5 + parent: 2 + - uid: 11883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,63.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,54.5 + parent: 2 + - uid: 11956 + components: + - type: Transform + pos: -71.5,67.5 + parent: 2 + - uid: 11957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,70.5 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: -70.5,67.5 + parent: 2 + - uid: 11971 + components: + - type: Transform + pos: -79.5,62.5 + parent: 2 + - uid: 12111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,67.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-78.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,23.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,27.5 + parent: 2 + - uid: 15328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,-22.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 20481 + components: + - type: Transform + pos: -72.5,-17.5 + parent: 2 +- proto: CrystalGreen + entities: + - uid: 11885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,59.5 + parent: 2 + - uid: 11963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,64.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: -23.5,-81.5 + parent: 2 + - uid: 20451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 11840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,68.5 + parent: 2 + - uid: 11847 + components: + - type: Transform + pos: -68.5,69.5 + parent: 2 + - uid: 11888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,64.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-66.5 + parent: 2 + - uid: 15315 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,10.5 + parent: 2 + - uid: 15334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-57.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-77.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,31.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 11846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,66.5 + parent: 2 + - uid: 11887 + components: + - type: Transform + pos: -86.5,58.5 + parent: 2 + - uid: 11889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,65.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-80.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: -28.5,-80.5 + parent: 2 +- proto: CrystalPink + entities: + - uid: 5285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - uid: 11959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,67.5 + parent: 2 +- proto: CyborgEndoskeleton + entities: + - uid: 11220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.48008,64.67524 + parent: 2 + - type: ContainerContainer + containers: + part-container: !type:Container + showEnts: False + occludes: True + ents: + - 11221 + - 11222 + cell_slot: !type:Container + showEnts: False + occludes: True + ents: [] + - type: PartAssembly + currentAssembly: service +- proto: d10Dice + entities: + - uid: 9549 + components: + - type: Transform + pos: 27.56519,41.56488 + parent: 2 +- proto: d12Dice + entities: + - uid: 11511 + components: + - type: Transform + pos: 28.40894,41.143005 + parent: 2 +- proto: d20Dice + entities: + - uid: 11025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.59221,40.978706 + parent: 2 +- proto: d4Dice + entities: + - uid: 11510 + components: + - type: Transform + pos: 28.53394,40.59613 + parent: 2 +- proto: d6Dice + entities: + - uid: 6196 + components: + - type: Transform + pos: 27.90894,40.56488 + parent: 2 +- proto: d8Dice + entities: + - uid: 2968 + components: + - type: Transform + pos: 28.612064,41.65863 + parent: 2 +- proto: DefaultStationBeaconAI + entities: + - uid: 12840 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 12852 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 13004 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 13139 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 13140 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 13141 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 13142 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 13194 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 13201 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 13202 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 13204 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 13803 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 13953 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 13203 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 14094 + components: + - type: Transform + pos: -65.5,54.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 14090 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 13329 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 +- proto: DefaultStationBeaconCommand + entities: + - uid: 14089 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 14100 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 14155 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 14156 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 14157 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 14158 + components: + - type: Transform + pos: 33.5,-72.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 14546 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 14792 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 14793 + components: + - type: Transform + pos: -73.5,-29.5 + parent: 2 + - uid: 14795 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 15649 + components: + - type: Transform + pos: 42.5,31.5 + parent: 2 + - uid: 15650 + components: + - type: Transform + pos: 54.5,4.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 15653 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 14791 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 15654 + components: + - type: Transform + pos: 39.5,-63.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 15655 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 15656 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 15657 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 15658 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 15709 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 15710 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 15711 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 15801 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 15712 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 16015 + components: + - type: Transform + pos: -84.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 16264 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 16310 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 21729 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 17684 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 21642 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 21619 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 16457 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 17625 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 17683 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 19564 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 20153 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 17697 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 16456 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconTEG + entities: + - uid: 19562 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 19561 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 16453 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 16314 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 19560 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 2214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-9.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,5.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 30082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,2.5 + parent: 2 + - uid: 30106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 2 + - uid: 30107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,5.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 857 + components: + - type: Transform + pos: 10.687969,-44.20333 + parent: 2 + missingComponents: + - Item + - uid: 2217 + components: + - type: Transform + pos: -2.2859905,-28.280308 + parent: 2 + missingComponents: + - Item + - uid: 2218 + components: + - type: Transform + pos: 16.339767,-44.24876 + parent: 2 + missingComponents: + - Item + - uid: 2219 + components: + - type: Transform + pos: -31.681736,5.5138736 + parent: 2 + missingComponents: + - Item + - uid: 2220 + components: + - type: Transform + pos: 7.3038535,-3.0351667 + parent: 2 + missingComponents: + - Item + - uid: 2221 + components: + - type: Transform + pos: -91.51338,-39.191807 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: -27.328842,-6.3008347 + parent: 2 + missingComponents: + - Item + - uid: 2223 + components: + - type: Transform + pos: -37.275307,-40.484173 + parent: 2 + missingComponents: + - Item + - uid: 2224 + components: + - type: Transform + pos: 22.743315,-3.9513702 + parent: 2 + missingComponents: + - Item + - uid: 2225 + components: + - type: Transform + pos: 14.51871,-1.183472 + parent: 2 + missingComponents: + - Item + - uid: 2226 + components: + - type: Transform + pos: 28.289862,-1.2096692 + parent: 2 + missingComponents: + - Item + - uid: 2227 + components: + - type: Transform + pos: 24.30701,5.699338 + parent: 2 + missingComponents: + - Item + - uid: 2228 + components: + - type: Transform + pos: 28.345724,-11.283646 + parent: 2 + missingComponents: + - Item + - uid: 2229 + components: + - type: Transform + pos: 26.268387,-22.347483 + parent: 2 + missingComponents: + - Item +- proto: DiceBag + entities: + - uid: 2230 + components: + - type: Transform + pos: -94.721504,-34.208946 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 2231 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 1120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 11406 + components: + - type: Transform + pos: -50.5,54.5 + parent: 2 + - uid: 11432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,30.5 + parent: 2 + - uid: 11448 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 11449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,27.5 + parent: 2 + - uid: 11455 + components: + - type: Transform + pos: -30.5,27.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 16188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-69.5 + parent: 2 + - uid: 18305 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-50.5 + parent: 2 + - uid: 23183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-66.5 + parent: 2 + - uid: 24765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-42.5 + parent: 2 + - uid: 24776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-45.5 + parent: 2 + - uid: 24777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-45.5 + parent: 2 + - uid: 24786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-39.5 + parent: 2 + - uid: 24787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-39.5 + parent: 2 + - uid: 24793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-35.5 + parent: 2 + - uid: 24794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-34.5 + parent: 2 + - uid: 24799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 24800 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 24801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 2 + - uid: 24802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-31.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 24825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 2 + - uid: 24829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-23.5 + parent: 2 + - uid: 24831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-26.5 + parent: 2 + - uid: 24832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-23.5 + parent: 2 + - uid: 24845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-26.5 + parent: 2 + - uid: 24846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-27.5 + parent: 2 + - uid: 24847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-27.5 + parent: 2 + - uid: 24848 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 2 + - uid: 24849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-24.5 + parent: 2 + - uid: 24910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-20.5 + parent: 2 + - uid: 24911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-15.5 + parent: 2 + - uid: 24912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-15.5 + parent: 2 + - uid: 24913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - uid: 24914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-14.5 + parent: 2 + - uid: 24915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-11.5 + parent: 2 + - uid: 24916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-11.5 + parent: 2 + - uid: 24917 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 24918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-7.5 + parent: 2 + - uid: 24919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-1.5 + parent: 2 + - uid: 24920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-1.5 + parent: 2 + - uid: 24921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,6.5 + parent: 2 + - uid: 24922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,6.5 + parent: 2 + - uid: 24934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,1.5 + parent: 2 + - uid: 25208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-73.5 + parent: 2 + - uid: 25209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-69.5 + parent: 2 + - uid: 25211 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 25212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-48.5 + parent: 2 + - uid: 25224 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 25228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - uid: 25232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 25233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 2 + - uid: 25234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 2 + - uid: 25235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-7.5 + parent: 2 + - uid: 25236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - uid: 25237 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 25238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-7.5 + parent: 2 + - uid: 25239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-7.5 + parent: 2 + - uid: 25240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 2 + - uid: 25242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 2 + - uid: 25246 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 25247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,1.5 + parent: 2 + - uid: 25248 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 25249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,7.5 + parent: 2 + - uid: 25253 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - uid: 25255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,12.5 + parent: 2 + - uid: 25256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,11.5 + parent: 2 + - uid: 25257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - uid: 25258 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 25259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,13.5 + parent: 2 + - uid: 25289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - uid: 25290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - uid: 25291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - uid: 25292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 2 + - uid: 25293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - uid: 25294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - uid: 25295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,12.5 + parent: 2 + - uid: 25296 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 25297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 2 + - uid: 25298 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - uid: 25299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,18.5 + parent: 2 + - uid: 25300 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 25301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - uid: 25302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2 + - uid: 25304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 2 + - uid: 25305 + components: + - type: Transform + pos: -18.5,20.5 + parent: 2 + - uid: 25306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,20.5 + parent: 2 + - uid: 25312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 + - uid: 25313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,17.5 + parent: 2 + - uid: 25315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,16.5 + parent: 2 + - uid: 25320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,16.5 + parent: 2 + - uid: 25323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,11.5 + parent: 2 + - uid: 25364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 25365 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 25367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-8.5 + parent: 2 + - uid: 25368 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 25369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - uid: 25390 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 25391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-4.5 + parent: 2 + - uid: 25392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-8.5 + parent: 2 + - uid: 25393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-8.5 + parent: 2 + - uid: 25394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-12.5 + parent: 2 + - uid: 25538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-39.5 + parent: 2 + - uid: 25539 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 25540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-38.5 + parent: 2 + - uid: 25541 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 25555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-34.5 + parent: 2 + - uid: 25557 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 25601 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 25638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,12.5 + parent: 2 + - uid: 25639 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 25664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - uid: 25673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-20.5 + parent: 2 + - uid: 25678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 2 + - uid: 25679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + - uid: 25705 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 25714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-3.5 + parent: 2 + - uid: 25723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - uid: 25724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 2 + - uid: 25851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 2 + - uid: 25852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 25853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 25867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 2 + - uid: 25879 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 25880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 2 + - uid: 25894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - uid: 26007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-25.5 + parent: 2 + - uid: 26008 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 26009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-29.5 + parent: 2 + - uid: 26019 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 + - uid: 26028 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - uid: 26033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 26048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-31.5 + parent: 2 + - uid: 26141 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 26158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 26159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 26181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 2 + - uid: 26217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-24.5 + parent: 2 + - uid: 26262 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 26263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 2 + - uid: 26268 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 26290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,7.5 + parent: 2 + - uid: 26347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-0.5 + parent: 2 + - uid: 26374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - uid: 26376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,2.5 + parent: 2 + - uid: 26391 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 26396 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 26397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 2 + - uid: 26407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 2 + - uid: 26409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-39.5 + parent: 2 + - uid: 26410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 2 + - uid: 26430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 2 + - uid: 26431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - uid: 26470 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 26471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-14.5 + parent: 2 + - uid: 26499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-31.5 + parent: 2 + - uid: 26500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-34.5 + parent: 2 + - uid: 26502 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 26564 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 26571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-46.5 + parent: 2 + - uid: 26572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-43.5 + parent: 2 + - uid: 26573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-46.5 + parent: 2 + - uid: 26574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 2 + - uid: 26617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-37.5 + parent: 2 + - uid: 26671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-33.5 + parent: 2 + - uid: 26700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-34.5 + parent: 2 + - uid: 28015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-66.5 + parent: 2 + - uid: 28038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-48.5 + parent: 2 + - uid: 28053 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 28735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-46.5 + parent: 2 + - uid: 28900 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 29133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-45.5 + parent: 2 + - uid: 29181 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - uid: 30832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 + - uid: 30836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,11.5 + parent: 2 + - uid: 30837 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 30853 + components: + - type: Transform + pos: -66.5,-20.5 + parent: 2 + - uid: 30886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 2 + - uid: 30969 + components: + - type: Transform + pos: -29.5,28.5 + parent: 2 + - uid: 30970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 2 + - uid: 30971 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - uid: 30972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,31.5 + parent: 2 + - uid: 30973 + components: + - type: Transform + pos: -43.5,53.5 + parent: 2 + - uid: 30974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,53.5 + parent: 2 + - uid: 30975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,50.5 + parent: 2 + - uid: 30976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,50.5 + parent: 2 + - uid: 30977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,54.5 + parent: 2 + - uid: 30978 + components: + - type: Transform + pos: -63.5,54.5 + parent: 2 + - uid: 30979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,57.5 + parent: 2 + - uid: 30980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,57.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 1224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-42.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,6.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-20.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-17.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-31.5 + parent: 2 + - uid: 24775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 24823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-20.5 + parent: 2 + - uid: 24930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-0.5 + parent: 2 + - uid: 24983 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - uid: 25050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2 + - uid: 25229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 2 + - uid: 25640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-2.5 + parent: 2 + - uid: 26025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - uid: 26032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - uid: 26144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 26187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 26273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 2 + - uid: 26351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 2 + - uid: 26398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - uid: 26501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 2 + - uid: 26519 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 26565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-43.5 + parent: 2 + - uid: 28026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-60.5 + parent: 2 + - uid: 30968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,20.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 1225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-42.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,10.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + - uid: 11818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-42.5 + parent: 2 + - uid: 24792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-34.5 + parent: 2 + - uid: 24830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 2 + - uid: 25051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 2 + - uid: 25225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + - uid: 25660 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 26148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,2.5 + parent: 2 + - uid: 26286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - uid: 26332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 2 + - uid: 26405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 2 + - uid: 26408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 2 + - uid: 26462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-22.5 + parent: 2 + - uid: 26580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-44.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-3.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,-34.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,-34.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-34.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 2 + - uid: 11125 + components: + - type: Transform + pos: -50.5,40.5 + parent: 2 + - uid: 11408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,54.5 + parent: 2 + - uid: 11409 + components: + - type: Transform + pos: -50.5,39.5 + parent: 2 + - uid: 11410 + components: + - type: Transform + pos: -50.5,38.5 + parent: 2 + - uid: 11411 + components: + - type: Transform + pos: -50.5,37.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + pos: -50.5,36.5 + parent: 2 + - uid: 11413 + components: + - type: Transform + pos: -50.5,35.5 + parent: 2 + - uid: 11414 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 11415 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 11416 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 11417 + components: + - type: Transform + pos: -50.5,31.5 + parent: 2 + - uid: 11418 + components: + - type: Transform + pos: -50.5,53.5 + parent: 2 + - uid: 11419 + components: + - type: Transform + pos: -50.5,52.5 + parent: 2 + - uid: 11420 + components: + - type: Transform + pos: -50.5,51.5 + parent: 2 + - uid: 11421 + components: + - type: Transform + pos: -50.5,50.5 + parent: 2 + - uid: 11422 + components: + - type: Transform + pos: -50.5,49.5 + parent: 2 + - uid: 11423 + components: + - type: Transform + pos: -50.5,48.5 + parent: 2 + - uid: 11424 + components: + - type: Transform + pos: -50.5,47.5 + parent: 2 + - uid: 11425 + components: + - type: Transform + pos: -50.5,46.5 + parent: 2 + - uid: 11426 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 11427 + components: + - type: Transform + pos: -50.5,44.5 + parent: 2 + - uid: 11428 + components: + - type: Transform + pos: -50.5,43.5 + parent: 2 + - uid: 11429 + components: + - type: Transform + pos: -50.5,42.5 + parent: 2 + - uid: 11430 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 11433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,30.5 + parent: 2 + - uid: 11434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,30.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,30.5 + parent: 2 + - uid: 11436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,30.5 + parent: 2 + - uid: 11437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,30.5 + parent: 2 + - uid: 11438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,30.5 + parent: 2 + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,30.5 + parent: 2 + - uid: 11440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,30.5 + parent: 2 + - uid: 11441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,30.5 + parent: 2 + - uid: 11442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,30.5 + parent: 2 + - uid: 11443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - uid: 11444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,30.5 + parent: 2 + - uid: 11445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,30.5 + parent: 2 + - uid: 11446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,30.5 + parent: 2 + - uid: 11447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,30.5 + parent: 2 + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,27.5 + parent: 2 + - uid: 11451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,27.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 11453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,27.5 + parent: 2 + - uid: 11454 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 11456 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - uid: 11457 + components: + - type: Transform + pos: -30.5,25.5 + parent: 2 + - uid: 11458 + components: + - type: Transform + pos: -30.5,24.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: -30.5,23.5 + parent: 2 + - uid: 11460 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 11461 + components: + - type: Transform + pos: -30.5,21.5 + parent: 2 + - uid: 11462 + components: + - type: Transform + pos: -30.5,20.5 + parent: 2 + - uid: 11463 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 11464 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,3.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,3.5 + parent: 2 + - uid: 14714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,33.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,35.5 + parent: 2 + - uid: 14717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,34.5 + parent: 2 + - uid: 14725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,3.5 + parent: 2 + - uid: 14727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,3.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 14744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,37.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 14746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,36.5 + parent: 2 + - uid: 15109 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 15111 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 15114 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 15117 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - uid: 15142 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - uid: 15146 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 15304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 16332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,6.5 + parent: 2 + - uid: 16433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 2 + - uid: 16434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 2 + - uid: 16448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 2 + - uid: 16449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,8.5 + parent: 2 + - uid: 16450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 2 + - uid: 18295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - uid: 18298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-47.5 + parent: 2 + - uid: 18299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-46.5 + parent: 2 + - uid: 18300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-45.5 + parent: 2 + - uid: 18301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-44.5 + parent: 2 + - uid: 18302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-43.5 + parent: 2 + - uid: 20409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 2 + - uid: 20784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-33.5 + parent: 2 + - uid: 24767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-42.5 + parent: 2 + - uid: 24768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-42.5 + parent: 2 + - uid: 24769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-42.5 + parent: 2 + - uid: 24770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-50.5 + parent: 2 + - uid: 24771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-42.5 + parent: 2 + - uid: 24772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-42.5 + parent: 2 + - uid: 24773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-42.5 + parent: 2 + - uid: 24774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-42.5 + parent: 2 + - uid: 24778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-44.5 + parent: 2 + - uid: 24779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-43.5 + parent: 2 + - uid: 24780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-45.5 + parent: 2 + - uid: 24781 + components: + - type: Transform + pos: -51.5,-44.5 + parent: 2 + - uid: 24782 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 24783 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 24784 + components: + - type: Transform + pos: -51.5,-41.5 + parent: 2 + - uid: 24785 + components: + - type: Transform + pos: -51.5,-40.5 + parent: 2 + - uid: 24788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-38.5 + parent: 2 + - uid: 24789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-37.5 + parent: 2 + - uid: 24790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-36.5 + parent: 2 + - uid: 24791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-35.5 + parent: 2 + - uid: 24797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 2 + - uid: 24798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 24803 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 2 + - uid: 24804 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 24805 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 24806 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 24809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + - uid: 24810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 24811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 24812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-20.5 + parent: 2 + - uid: 24813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 2 + - uid: 24814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - uid: 24815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - uid: 24816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-20.5 + parent: 2 + - uid: 24817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 2 + - uid: 24818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 2 + - uid: 24819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-20.5 + parent: 2 + - uid: 24820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-20.5 + parent: 2 + - uid: 24821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-20.5 + parent: 2 + - uid: 24822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-20.5 + parent: 2 + - uid: 24824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-20.5 + parent: 2 + - uid: 24826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-19.5 + parent: 2 + - uid: 24827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-21.5 + parent: 2 + - uid: 24828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-22.5 + parent: 2 + - uid: 24833 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - uid: 24834 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 24835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-23.5 + parent: 2 + - uid: 24836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-26.5 + parent: 2 + - uid: 24837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-26.5 + parent: 2 + - uid: 24838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-26.5 + parent: 2 + - uid: 24839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-26.5 + parent: 2 + - uid: 24840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-26.5 + parent: 2 + - uid: 24841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-26.5 + parent: 2 + - uid: 24842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-26.5 + parent: 2 + - uid: 24843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-26.5 + parent: 2 + - uid: 24844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-26.5 + parent: 2 + - uid: 24850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-24.5 + parent: 2 + - uid: 24851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-24.5 + parent: 2 + - uid: 24852 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 2 + - uid: 24853 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 24854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-27.5 + parent: 2 + - uid: 24855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-27.5 + parent: 2 + - uid: 24856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-27.5 + parent: 2 + - uid: 24902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-22.5 + parent: 2 + - uid: 24903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-21.5 + parent: 2 + - uid: 24904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-20.5 + parent: 2 + - uid: 24905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-20.5 + parent: 2 + - uid: 24906 + components: + - type: Transform + pos: -69.5,-19.5 + parent: 2 + - uid: 24907 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 2 + - uid: 24908 + components: + - type: Transform + pos: -69.5,-17.5 + parent: 2 + - uid: 24909 + components: + - type: Transform + pos: -69.5,-16.5 + parent: 2 + - uid: 24923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,2.5 + parent: 2 + - uid: 24924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,3.5 + parent: 2 + - uid: 24925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,4.5 + parent: 2 + - uid: 24926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,5.5 + parent: 2 + - uid: 24927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,1.5 + parent: 2 + - uid: 24928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,1.5 + parent: 2 + - uid: 24929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 + - uid: 24933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,0.5 + parent: 2 + - uid: 24937 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 24938 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 24939 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 24940 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 24942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,11.5 + parent: 2 + - uid: 24943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,12.5 + parent: 2 + - uid: 24946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,13.5 + parent: 2 + - uid: 24947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,14.5 + parent: 2 + - uid: 24948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,15.5 + parent: 2 + - uid: 24950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,16.5 + parent: 2 + - uid: 24951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,16.5 + parent: 2 + - uid: 24952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,16.5 + parent: 2 + - uid: 24953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,16.5 + parent: 2 + - uid: 24955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 + - uid: 24956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + - uid: 24957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 + - uid: 24958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 + - uid: 24959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + - uid: 24960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - uid: 24961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + - uid: 24962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 + - uid: 24964 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 24965 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 + - uid: 24967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,20.5 + parent: 2 + - uid: 24968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,20.5 + parent: 2 + - uid: 24969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,20.5 + parent: 2 + - uid: 24970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,20.5 + parent: 2 + - uid: 24972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 + - uid: 24973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 + - uid: 24974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - uid: 24975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,20.5 + parent: 2 + - uid: 24976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 2 + - uid: 24977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + - uid: 24978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 2 + - uid: 24979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,20.5 + parent: 2 + - uid: 24980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 2 + - uid: 24981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,19.5 + parent: 2 + - uid: 24982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 2 + - uid: 24986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - uid: 24987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 2 + - uid: 24988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 2 + - uid: 24993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,16.5 + parent: 2 + - uid: 24994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - uid: 24995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - uid: 24996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 2 + - uid: 24998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 2 + - uid: 25000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - uid: 25001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 2 + - uid: 25002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - uid: 25003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 25004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - uid: 25005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - uid: 25006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - uid: 25007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - uid: 25008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 25010 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - uid: 25011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 25012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 2 + - uid: 25013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - uid: 25014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - uid: 25015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - uid: 25017 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 25018 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 25019 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 25020 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 25027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - uid: 25028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + - uid: 25029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 25030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - uid: 25031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 + - uid: 25032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - uid: 25033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 2 + - uid: 25034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 + - uid: 25035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 25036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 25037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - uid: 25038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + - uid: 25039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 2 + - uid: 25040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 2 + - uid: 25041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 2 + - uid: 25042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,17.5 + parent: 2 + - uid: 25043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,17.5 + parent: 2 + - uid: 25044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 2 + - uid: 25045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,17.5 + parent: 2 + - uid: 25046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,17.5 + parent: 2 + - uid: 25047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,17.5 + parent: 2 + - uid: 25048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - uid: 25049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,17.5 + parent: 2 + - uid: 25052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,17.5 + parent: 2 + - uid: 25053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,17.5 + parent: 2 + - uid: 25054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - uid: 25055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - uid: 25056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - uid: 25057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,18.5 + parent: 2 + - uid: 25058 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 25059 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 25060 + components: + - type: Transform + pos: 39.5,15.5 + parent: 2 + - uid: 25061 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 25062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - uid: 25064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - uid: 25065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,11.5 + parent: 2 + - uid: 25067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,12.5 + parent: 2 + - uid: 25068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,12.5 + parent: 2 + - uid: 25075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 2 + - uid: 25076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,12.5 + parent: 2 + - uid: 25077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 2 + - uid: 25078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,12.5 + parent: 2 + - uid: 25079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,11.5 + parent: 2 + - uid: 25080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,10.5 + parent: 2 + - uid: 25081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,9.5 + parent: 2 + - uid: 25082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,8.5 + parent: 2 + - uid: 25084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,6.5 + parent: 2 + - uid: 25085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,5.5 + parent: 2 + - uid: 25086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,4.5 + parent: 2 + - uid: 25087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,3.5 + parent: 2 + - uid: 25088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,2.5 + parent: 2 + - uid: 25093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,1.5 + parent: 2 + - uid: 25094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,1.5 + parent: 2 + - uid: 25095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,1.5 + parent: 2 + - uid: 25098 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 25099 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 25100 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 2 + - uid: 25101 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 25103 + components: + - type: Transform + pos: 55.5,-4.5 + parent: 2 + - uid: 25104 + components: + - type: Transform + pos: 55.5,-5.5 + parent: 2 + - uid: 25108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 2 + - uid: 25109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 2 + - uid: 25110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 2 + - uid: 25111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-6.5 + parent: 2 + - uid: 25112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-7.5 + parent: 2 + - uid: 25113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 2 + - uid: 25114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 2 + - uid: 25115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 2 + - uid: 25116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 2 + - uid: 25117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + - uid: 25118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 2 + - uid: 25119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - uid: 25120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + - uid: 25121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 25122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - uid: 25123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - uid: 25124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 25125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - uid: 25126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - uid: 25127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - uid: 25128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 2 + - uid: 25129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - uid: 25130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - uid: 25131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 + - uid: 25132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + - uid: 25133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-8.5 + parent: 2 + - uid: 25134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 25135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 2 + - uid: 25136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 2 + - uid: 25137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-12.5 + parent: 2 + - uid: 25138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 25139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 2 + - uid: 25140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-15.5 + parent: 2 + - uid: 25141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-16.5 + parent: 2 + - uid: 25142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 25143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-18.5 + parent: 2 + - uid: 25148 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 25149 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 25150 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 25151 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 25152 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 25153 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 25154 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 25155 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 25156 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 25160 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 25161 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 25162 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 25163 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 25164 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 25165 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 25166 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 25167 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 25168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 + - uid: 25169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 2 + - uid: 25170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 2 + - uid: 25171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 2 + - uid: 25172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-38.5 + parent: 2 + - uid: 25173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-38.5 + parent: 2 + - uid: 25174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-39.5 + parent: 2 + - uid: 25175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-40.5 + parent: 2 + - uid: 25176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-41.5 + parent: 2 + - uid: 25177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-42.5 + parent: 2 + - uid: 25178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 2 + - uid: 25179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-44.5 + parent: 2 + - uid: 25180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-45.5 + parent: 2 + - uid: 25181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-46.5 + parent: 2 + - uid: 25182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-47.5 + parent: 2 + - uid: 25183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-49.5 + parent: 2 + - uid: 25184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-50.5 + parent: 2 + - uid: 25185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-51.5 + parent: 2 + - uid: 25186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-52.5 + parent: 2 + - uid: 25187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-53.5 + parent: 2 + - uid: 25188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-54.5 + parent: 2 + - uid: 25189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-55.5 + parent: 2 + - uid: 25190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-56.5 + parent: 2 + - uid: 25191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-57.5 + parent: 2 + - uid: 25192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-58.5 + parent: 2 + - uid: 25193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-59.5 + parent: 2 + - uid: 25194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-60.5 + parent: 2 + - uid: 25195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-61.5 + parent: 2 + - uid: 25196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-62.5 + parent: 2 + - uid: 25197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-63.5 + parent: 2 + - uid: 25198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-64.5 + parent: 2 + - uid: 25199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-65.5 + parent: 2 + - uid: 25200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-66.5 + parent: 2 + - uid: 25201 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 2 + - uid: 25202 + components: + - type: Transform + pos: 33.5,-68.5 + parent: 2 + - uid: 25203 + components: + - type: Transform + pos: 32.5,-70.5 + parent: 2 + - uid: 25204 + components: + - type: Transform + pos: 32.5,-71.5 + parent: 2 + - uid: 25205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-72.5 + parent: 2 + - uid: 25206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-73.5 + parent: 2 + - uid: 25303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - uid: 25329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-6.5 + parent: 2 + - uid: 25330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-5.5 + parent: 2 + - uid: 25331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-4.5 + parent: 2 + - uid: 25332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-3.5 + parent: 2 + - uid: 25333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-2.5 + parent: 2 + - uid: 25335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 2 + - uid: 25336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-7.5 + parent: 2 + - uid: 25337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-7.5 + parent: 2 + - uid: 25338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 25339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-7.5 + parent: 2 + - uid: 25340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-7.5 + parent: 2 + - uid: 25342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-11.5 + parent: 2 + - uid: 25343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-11.5 + parent: 2 + - uid: 25344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-11.5 + parent: 2 + - uid: 25345 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 25346 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 25347 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 25348 + components: + - type: Transform + pos: -65.5,-12.5 + parent: 2 + - uid: 25349 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - uid: 25370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-7.5 + parent: 2 + - uid: 25371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 + - uid: 25372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-7.5 + parent: 2 + - uid: 25373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 2 + - uid: 25374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 2 + - uid: 25375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-7.5 + parent: 2 + - uid: 25376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - uid: 25377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 2 + - uid: 25378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - uid: 25379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 + - uid: 25380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 2 + - uid: 25381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 25382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 2 + - uid: 25383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 25384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-8.5 + parent: 2 + - uid: 25385 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 25386 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 25387 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 25388 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 25389 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 25395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-9.5 + parent: 2 + - uid: 25396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-10.5 + parent: 2 + - uid: 25397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-11.5 + parent: 2 + - uid: 25398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 + parent: 2 + - uid: 25399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-12.5 + parent: 2 + - uid: 25400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-12.5 + parent: 2 + - uid: 25401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-12.5 + parent: 2 + - uid: 25403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - uid: 25404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 + - uid: 25405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-8.5 + parent: 2 + - uid: 25406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 2 + - uid: 25407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-7.5 + parent: 2 + - uid: 25408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-6.5 + parent: 2 + - uid: 25409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-5.5 + parent: 2 + - uid: 25410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-4.5 + parent: 2 + - uid: 25411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-4.5 + parent: 2 + - uid: 25412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-4.5 + parent: 2 + - uid: 25542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-34.5 + parent: 2 + - uid: 25543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-34.5 + parent: 2 + - uid: 25544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 2 + - uid: 25545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-34.5 + parent: 2 + - uid: 25546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-34.5 + parent: 2 + - uid: 25547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 2 + - uid: 25548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-34.5 + parent: 2 + - uid: 25549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-34.5 + parent: 2 + - uid: 25550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-35.5 + parent: 2 + - uid: 25551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-36.5 + parent: 2 + - uid: 25552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-37.5 + parent: 2 + - uid: 25553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-38.5 + parent: 2 + - uid: 25554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-38.5 + parent: 2 + - uid: 25560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-41.5 + parent: 2 + - uid: 25561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-40.5 + parent: 2 + - uid: 25563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 2 + - uid: 25564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-42.5 + parent: 2 + - uid: 25565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-42.5 + parent: 2 + - uid: 25566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 2 + - uid: 25567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-50.5 + parent: 2 + - uid: 25568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 25569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-42.5 + parent: 2 + - uid: 25570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 25571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-42.5 + parent: 2 + - uid: 25572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-42.5 + parent: 2 + - uid: 25573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-42.5 + parent: 2 + - uid: 25574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-42.5 + parent: 2 + - uid: 25575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-50.5 + parent: 2 + - uid: 25576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-42.5 + parent: 2 + - uid: 25577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-42.5 + parent: 2 + - uid: 25578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-42.5 + parent: 2 + - uid: 25579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-42.5 + parent: 2 + - uid: 25580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-42.5 + parent: 2 + - uid: 25581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-42.5 + parent: 2 + - uid: 25582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 2 + - uid: 25583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 2 + - uid: 25603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,2.5 + parent: 2 + - uid: 25604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,3.5 + parent: 2 + - uid: 25605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,4.5 + parent: 2 + - uid: 25606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,5.5 + parent: 2 + - uid: 25607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,6.5 + parent: 2 + - uid: 25608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,7.5 + parent: 2 + - uid: 25642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + - uid: 25643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 + - uid: 25644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - uid: 25645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - uid: 25646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - uid: 25647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - uid: 25648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - uid: 25649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - uid: 25656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 2 + - uid: 25657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 2 + - uid: 25658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,9.5 + parent: 2 + - uid: 25659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,8.5 + parent: 2 + - uid: 25661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,6.5 + parent: 2 + - uid: 25662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 2 + - uid: 25663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,4.5 + parent: 2 + - uid: 25665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - uid: 25666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,1.5 + parent: 2 + - uid: 25667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,0.5 + parent: 2 + - uid: 25668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,7.5 + parent: 2 + - uid: 25669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,7.5 + parent: 2 + - uid: 25670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + - uid: 25672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,10.5 + parent: 2 + - uid: 25675 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 25676 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 25681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-50.5 + parent: 2 + - uid: 25682 + components: + - type: Transform + pos: -23.5,11.5 + parent: 2 + - uid: 25683 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 25684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 2 + - uid: 25685 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 25686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 25687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - uid: 25688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,17.5 + parent: 2 + - uid: 25689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + - uid: 25690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 25692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 2 + - uid: 25693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 25696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - uid: 25706 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 25707 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 25709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-3.5 + parent: 2 + - uid: 25710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-3.5 + parent: 2 + - uid: 25711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-3.5 + parent: 2 + - uid: 25712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 + parent: 2 + - uid: 25713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-3.5 + parent: 2 + - uid: 25716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-1.5 + parent: 2 + - uid: 25717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,0.5 + parent: 2 + - uid: 25718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,1.5 + parent: 2 + - uid: 25720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - uid: 25725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 25726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - uid: 25767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 + - uid: 25768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 2 + - uid: 25796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-16.5 + parent: 2 + - uid: 25815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 2 + - uid: 25817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 2 + - uid: 25818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 25819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 2 + - uid: 25823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 25824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-50.5 + parent: 2 + - uid: 25825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 2 + - uid: 25826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 25827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 25828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + - uid: 25829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 25830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 2 + - uid: 25831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-2.5 + parent: 2 + - uid: 25832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 25833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 2 + - uid: 25834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - uid: 25835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 2 + - uid: 25836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + - uid: 25837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - uid: 25838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - uid: 25842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 2 + - uid: 25845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 2 + - uid: 25846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - uid: 25849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 25854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 25856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 + - uid: 25869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - uid: 25872 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 25873 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 25874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-20.5 + parent: 2 + - uid: 25875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 25877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 2 + - uid: 25885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 + - uid: 25886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 + - uid: 25887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 25888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 25889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - uid: 25890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 25891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - uid: 25939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 25975 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 25976 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 25977 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 25978 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 25979 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 25980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 2 + - uid: 25981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - uid: 25982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + - uid: 25983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - uid: 25984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 2 + - uid: 25985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + - uid: 25986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + - uid: 25987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 2 + - uid: 25988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-31.5 + parent: 2 + - uid: 25989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 25990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 + - uid: 25991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-29.5 + parent: 2 + - uid: 25992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 25993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 2 + - uid: 25994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-29.5 + parent: 2 + - uid: 25995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 + - uid: 25996 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 25997 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 25998 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 25999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 2 + - uid: 26001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 2 + - uid: 26002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-24.5 + parent: 2 + - uid: 26003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-23.5 + parent: 2 + - uid: 26004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-22.5 + parent: 2 + - uid: 26005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-21.5 + parent: 2 + - uid: 26027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 26029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 26030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 2 + - uid: 26031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 2 + - uid: 26034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-21.5 + parent: 2 + - uid: 26035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 26036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-23.5 + parent: 2 + - uid: 26037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 2 + - uid: 26038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 26039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-26.5 + parent: 2 + - uid: 26040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-27.5 + parent: 2 + - uid: 26041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 26042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-29.5 + parent: 2 + - uid: 26043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 26044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + - uid: 26045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 26046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 2 + - uid: 26047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 2 + - uid: 26098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 26099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - uid: 26100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + - uid: 26109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 26110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 26111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 26112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 26113 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 26114 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 26116 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 26117 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 26118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + - uid: 26119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - uid: 26120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - uid: 26121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 26122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 26123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,2.5 + parent: 2 + - uid: 26124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - uid: 26125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 + - uid: 26126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - uid: 26127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 26128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 26129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 + - uid: 26130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 26131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 + - uid: 26132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 26133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 26134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - uid: 26135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - uid: 26136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 + - uid: 26151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - uid: 26152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - uid: 26153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - uid: 26154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - uid: 26155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - uid: 26156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 26157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 26175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 26176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 26177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + - uid: 26178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - uid: 26179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - uid: 26180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 26183 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 26184 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 26193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 26194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 26195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 26264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,22.5 + parent: 2 + - uid: 26265 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 26266 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 26267 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 26275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 2 + - uid: 26291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - uid: 26330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - uid: 26331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + - uid: 26333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - uid: 26334 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 26335 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 26336 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 26337 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 26338 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 26339 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 26340 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 26352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - uid: 26353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,1.5 + parent: 2 + - uid: 26358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,6.5 + parent: 2 + - uid: 26359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 2 + - uid: 26360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 2 + - uid: 26361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 2 + - uid: 26375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - uid: 26377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 2 + - uid: 26378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - uid: 26379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 + - uid: 26380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,2.5 + parent: 2 + - uid: 26381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,2.5 + parent: 2 + - uid: 26382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - uid: 26383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - uid: 26384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - uid: 26385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - uid: 26386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - uid: 26387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,2.5 + parent: 2 + - uid: 26388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,3.5 + parent: 2 + - uid: 26389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,5.5 + parent: 2 + - uid: 26390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,4.5 + parent: 2 + - uid: 26399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - uid: 26400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + - uid: 26401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - uid: 26402 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 26403 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 26404 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 26411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 2 + - uid: 26413 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 26414 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 26415 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 26457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-23.5 + parent: 2 + - uid: 26459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-22.5 + parent: 2 + - uid: 26460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 26461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 26463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-21.5 + parent: 2 + - uid: 26464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 26465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-19.5 + parent: 2 + - uid: 26466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-18.5 + parent: 2 + - uid: 26467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-17.5 + parent: 2 + - uid: 26468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-16.5 + parent: 2 + - uid: 26469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-15.5 + parent: 2 + - uid: 26474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 2 + - uid: 26475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - uid: 26476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - uid: 26477 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 26478 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 26480 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 26507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 2 + - uid: 26508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 2 + - uid: 26509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-29.5 + parent: 2 + - uid: 26510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-29.5 + parent: 2 + - uid: 26511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 2 + - uid: 26512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-29.5 + parent: 2 + - uid: 26513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 2 + - uid: 26514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 2 + - uid: 26516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-30.5 + parent: 2 + - uid: 26517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-31.5 + parent: 2 + - uid: 26518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-32.5 + parent: 2 + - uid: 26520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 26521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - uid: 26522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-34.5 + parent: 2 + - uid: 26523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 2 + - uid: 26524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + - uid: 26525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 + - uid: 26526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-34.5 + parent: 2 + - uid: 26527 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - uid: 26529 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 26530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + - uid: 26555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 2 + - uid: 26556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-39.5 + parent: 2 + - uid: 26558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-39.5 + parent: 2 + - uid: 26559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 + parent: 2 + - uid: 26566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 2 + - uid: 26567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 + parent: 2 + - uid: 26568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 2 + - uid: 26569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-43.5 + parent: 2 + - uid: 26570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 2 + - uid: 26575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-46.5 + parent: 2 + - uid: 26576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 2 + - uid: 26577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 2 + - uid: 26578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-46.5 + parent: 2 + - uid: 26579 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 26581 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 26582 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 26583 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 26584 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 2 + - uid: 26589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + - uid: 26590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + - uid: 26591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-44.5 + parent: 2 + - uid: 26592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-44.5 + parent: 2 + - uid: 26593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-44.5 + parent: 2 + - uid: 26594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-44.5 + parent: 2 + - uid: 26631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 26632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-35.5 + parent: 2 + - uid: 26669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-33.5 + parent: 2 + - uid: 26670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - uid: 26702 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 26703 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 28016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-66.5 + parent: 2 + - uid: 28017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-66.5 + parent: 2 + - uid: 28018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-66.5 + parent: 2 + - uid: 28019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-66.5 + parent: 2 + - uid: 28020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-66.5 + parent: 2 + - uid: 28021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-65.5 + parent: 2 + - uid: 28022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-64.5 + parent: 2 + - uid: 28023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-63.5 + parent: 2 + - uid: 28024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-62.5 + parent: 2 + - uid: 28025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-61.5 + parent: 2 + - uid: 28027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-59.5 + parent: 2 + - uid: 28028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-58.5 + parent: 2 + - uid: 28029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-57.5 + parent: 2 + - uid: 28030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-56.5 + parent: 2 + - uid: 28031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-55.5 + parent: 2 + - uid: 28032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-54.5 + parent: 2 + - uid: 28033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-53.5 + parent: 2 + - uid: 28034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-52.5 + parent: 2 + - uid: 28035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-51.5 + parent: 2 + - uid: 28036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-50.5 + parent: 2 + - uid: 28037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-49.5 + parent: 2 + - uid: 29816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 2 + - uid: 29979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-50.5 + parent: 2 + - uid: 29980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 + parent: 2 + - uid: 30000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-42.5 + parent: 2 + - uid: 30006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 2 + - uid: 30008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 2 + - uid: 30009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-43.5 + parent: 2 + - uid: 30014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-44.5 + parent: 2 + - uid: 30041 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 30048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-45.5 + parent: 2 + - uid: 30061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 2 + - uid: 30062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-46.5 + parent: 2 + - uid: 30063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 30091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 2 + - uid: 30114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-48.5 + parent: 2 + - uid: 30199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-45.5 + parent: 2 + - uid: 30200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-44.5 + parent: 2 + - uid: 30806 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 30822 + components: + - type: Transform + pos: -45.5,-47.5 + parent: 2 + - uid: 30823 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - uid: 30828 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 30829 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 30830 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 30833 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 30834 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 30835 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - uid: 30858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-14.5 + parent: 2 + - uid: 30859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - uid: 30860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-0.5 + parent: 2 + - uid: 30861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,0.5 + parent: 2 + - uid: 30862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,1.5 + parent: 2 + - uid: 30863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,2.5 + parent: 2 + - uid: 30864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,3.5 + parent: 2 + - uid: 30865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,4.5 + parent: 2 + - uid: 30866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,5.5 + parent: 2 + - uid: 30867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,6.5 + parent: 2 + - uid: 30868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,6.5 + parent: 2 + - uid: 30869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,6.5 + parent: 2 + - uid: 30870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,6.5 + parent: 2 + - uid: 30871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,6.5 + parent: 2 + - uid: 30872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,6.5 + parent: 2 + - uid: 30873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,6.5 + parent: 2 + - uid: 30874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 + - uid: 30875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,6.5 + parent: 2 + - uid: 30876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - uid: 30877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - uid: 30878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,6.5 + parent: 2 + - uid: 30879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,6.5 + parent: 2 + - uid: 30880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,6.5 + parent: 2 + - uid: 30881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,6.5 + parent: 2 + - uid: 30882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - uid: 30888 + components: + - type: Transform + pos: -73.5,59.5 + parent: 2 + - uid: 30889 + components: + - type: Transform + pos: -73.5,58.5 + parent: 2 + - uid: 30890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,57.5 + parent: 2 + - uid: 30891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,56.5 + parent: 2 + - uid: 30892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,55.5 + parent: 2 + - uid: 30893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,54.5 + parent: 2 + - uid: 30894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,54.5 + parent: 2 + - uid: 30895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,54.5 + parent: 2 + - uid: 30896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,54.5 + parent: 2 + - uid: 30897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,54.5 + parent: 2 + - uid: 30898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,54.5 + parent: 2 + - uid: 30899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,54.5 + parent: 2 + - uid: 30900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,54.5 + parent: 2 + - uid: 30901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,54.5 + parent: 2 + - uid: 30902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,54.5 + parent: 2 + - uid: 30903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,54.5 + parent: 2 + - uid: 30904 + components: + - type: Transform + pos: -63.5,53.5 + parent: 2 + - uid: 30905 + components: + - type: Transform + pos: -63.5,52.5 + parent: 2 + - uid: 30906 + components: + - type: Transform + pos: -63.5,51.5 + parent: 2 + - uid: 30907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,50.5 + parent: 2 + - uid: 30908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,50.5 + parent: 2 + - uid: 30909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,50.5 + parent: 2 + - uid: 30910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,50.5 + parent: 2 + - uid: 30911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,50.5 + parent: 2 + - uid: 30912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,50.5 + parent: 2 + - uid: 30913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,50.5 + parent: 2 + - uid: 30914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,51.5 + parent: 2 + - uid: 30915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,52.5 + parent: 2 + - uid: 30916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,53.5 + parent: 2 + - uid: 30917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,53.5 + parent: 2 + - uid: 30918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,53.5 + parent: 2 + - uid: 30919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,53.5 + parent: 2 + - uid: 30920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,53.5 + parent: 2 + - uid: 30921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,53.5 + parent: 2 + - uid: 30922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,53.5 + parent: 2 + - uid: 30923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,53.5 + parent: 2 + - uid: 30924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,53.5 + parent: 2 + - uid: 30925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,53.5 + parent: 2 + - uid: 30926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,53.5 + parent: 2 + - uid: 30927 + components: + - type: Transform + pos: -43.5,52.5 + parent: 2 + - uid: 30928 + components: + - type: Transform + pos: -43.5,51.5 + parent: 2 + - uid: 30929 + components: + - type: Transform + pos: -43.5,50.5 + parent: 2 + - uid: 30930 + components: + - type: Transform + pos: -43.5,49.5 + parent: 2 + - uid: 30931 + components: + - type: Transform + pos: -43.5,48.5 + parent: 2 + - uid: 30932 + components: + - type: Transform + pos: -43.5,47.5 + parent: 2 + - uid: 30933 + components: + - type: Transform + pos: -43.5,46.5 + parent: 2 + - uid: 30934 + components: + - type: Transform + pos: -43.5,45.5 + parent: 2 + - uid: 30935 + components: + - type: Transform + pos: -43.5,44.5 + parent: 2 + - uid: 30936 + components: + - type: Transform + pos: -43.5,43.5 + parent: 2 + - uid: 30937 + components: + - type: Transform + pos: -43.5,42.5 + parent: 2 + - uid: 30938 + components: + - type: Transform + pos: -43.5,41.5 + parent: 2 + - uid: 30939 + components: + - type: Transform + pos: -43.5,40.5 + parent: 2 + - uid: 30940 + components: + - type: Transform + pos: -43.5,39.5 + parent: 2 + - uid: 30941 + components: + - type: Transform + pos: -43.5,38.5 + parent: 2 + - uid: 30942 + components: + - type: Transform + pos: -43.5,37.5 + parent: 2 + - uid: 30943 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 30944 + components: + - type: Transform + pos: -43.5,35.5 + parent: 2 + - uid: 30945 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 30946 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 30947 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 30948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - uid: 30949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,31.5 + parent: 2 + - uid: 30950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,31.5 + parent: 2 + - uid: 30951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,31.5 + parent: 2 + - uid: 30952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,31.5 + parent: 2 + - uid: 30953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,31.5 + parent: 2 + - uid: 30954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,31.5 + parent: 2 + - uid: 30955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,31.5 + parent: 2 + - uid: 30956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,31.5 + parent: 2 + - uid: 30957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,30.5 + parent: 2 + - uid: 30958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,29.5 + parent: 2 + - uid: 30959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 2 + - uid: 30960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,28.5 + parent: 2 + - uid: 30961 + components: + - type: Transform + pos: -29.5,27.5 + parent: 2 + - uid: 30962 + components: + - type: Transform + pos: -29.5,26.5 + parent: 2 + - uid: 30963 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 30964 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 30965 + components: + - type: Transform + pos: -29.5,23.5 + parent: 2 + - uid: 30966 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 30967 + components: + - type: Transform + pos: -29.5,21.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 1069 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-34.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-34.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-60.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-66.5 + parent: 2 + - uid: 11407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,54.5 + parent: 2 + - uid: 11465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 2 + - uid: 11821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-10.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 18297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-48.5 + parent: 2 + - uid: 18304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-51.5 + parent: 2 + - uid: 24764 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 24766 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 24796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-36.5 + parent: 2 + - uid: 24807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-21.5 + parent: 2 + - uid: 24932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-1.5 + parent: 2 + - uid: 25207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-73.5 + parent: 2 + - uid: 25359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 25402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 2 + - uid: 25522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-39.5 + parent: 2 + - uid: 25528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-39.5 + parent: 2 + - uid: 25599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,8.5 + parent: 2 + - uid: 25631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-2.5 + parent: 2 + - uid: 25634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 + - uid: 25635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,6.5 + parent: 2 + - uid: 25671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,10.5 + parent: 2 + - uid: 25704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-6.5 + parent: 2 + - uid: 25722 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 25816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 2 + - uid: 25821 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 25884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 26026 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 26095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 26150 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 26182 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 26191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 26261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,22.5 + parent: 2 + - uid: 26269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - uid: 26282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 2 + - uid: 26284 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 26343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + - uid: 26371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,5.5 + parent: 2 + - uid: 26393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + - uid: 26394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - uid: 26395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 2 + - uid: 26406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 2 + - uid: 26498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-31.5 + parent: 2 + - uid: 26560 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 26562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-44.5 + parent: 2 + - uid: 26585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-44.5 + parent: 2 + - uid: 26615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-37.5 + parent: 2 + - uid: 26652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-36.5 + parent: 2 + - uid: 26653 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 26668 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - uid: 26699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 2 + - uid: 30831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-45.5 + parent: 2 + - uid: 30887 + components: + - type: Transform + pos: -73.5,60.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 2250 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 2251 + components: + - type: MetaData + desc: НТ уверяют вас, это точно не утилизационный блок, а пневматический лифт. + name: пневматический лифт + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: -46.5,-36.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: -85.5,-34.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -73.5,60.5 + parent: 2 + - uid: 11084 + components: + - type: MetaData + desc: НТ уверяют вас, это точно не утилизационный блок, а пневматический лифт. + name: пневматический лифт + - type: Transform + pos: -52.5,54.5 + parent: 2 + - uid: 11466 + components: + - type: MetaData + desc: НТ уверяют вас, это точно не утилизационный блок, а пневматический лифт. + name: пневматический лифт + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 12255 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + pos: -26.5,10.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 2 + - uid: 13912 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 15113 + components: + - type: MetaData + desc: НТ уверяют вас, это точно не утилизационный блок, а пневматический лифт. + name: пневматический лифт + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 2 + - uid: 19864 + components: + - type: Transform + pos: -74.5,-31.5 + parent: 2 + - uid: 26662 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 2373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 + - uid: 24795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-35.5 + parent: 2 + - uid: 25602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 2 + - uid: 25655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - uid: 26143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 +- proto: DogBed + entities: + - uid: 2295 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 2298 + components: + - type: MetaData + desc: Удобная лежанка для котов. Вы даже можете пристегнуть своего питомца, в случае отключения гравитации. + name: кошачья лежанка + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 10961 + components: + - type: Transform + pos: -78.5,58.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 2299 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: -76.5,-40.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 1141 + components: + - type: Transform + parent: 1139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Dresser + entities: + - uid: 988 + components: + - type: Transform + pos: -89.5,-25.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 990 + - 989 + - 991 + - uid: 2303 + components: + - type: Transform + pos: -95.5,-25.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2304 + - uid: 2305 + components: + - type: Transform + pos: -89.5,-28.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2307 + - 2306 + - uid: 11796 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 11797 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 2308 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2310 + - uid: 2311 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 18348 + components: + - type: Transform + pos: -44.5,22.5 + parent: 2 + - uid: 18349 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 +- proto: Drill + entities: + - uid: 738 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False + - uid: 2312 + components: + - type: Transform + pos: -42.60624,-6.1890197 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 18710 + components: + - type: Transform + pos: -61.857803,-41.020638 + parent: 2 + - uid: 18711 + components: + - type: Transform + pos: -61.18593,-40.770638 + parent: 2 + - uid: 18712 + components: + - type: Transform + pos: -61.93593,-40.114388 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 2313 + components: + - type: Transform + pos: -9.712933,-1.3465285 + parent: 2 +- proto: DrinkCafeLatte + entities: + - uid: 2314 + components: + - type: Transform + pos: 34.645527,8.0436535 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 12132 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkCoffeeLiqueurBottleFull + entities: + - uid: 18480 + components: + - type: Transform + parent: 18477 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkCognacBottleFull + entities: + - uid: 2315 + components: + - type: Transform + pos: -42.46708,-54.231808 + parent: 2 +- proto: DrinkColaCan + entities: + - uid: 2141 + components: + - type: Transform + parent: 2140 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2142 + components: + - type: Transform + parent: 2140 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2143 + components: + - type: Transform + parent: 2140 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkDevilsKiss + entities: + - uid: 2803 + components: + - type: Transform + pos: 3.9155197,-71.54424 + parent: 2 +- proto: DrinkEnergyDrinkCan + entities: + - uid: 15912 + components: + - type: Transform + pos: 11.91655,18.705723 + parent: 2 +- proto: DrinkFlask + entities: + - uid: 2316 + components: + - type: Transform + pos: 10.574608,-18.084614 + parent: 2 +- proto: DrinkFourteenLokoCan + entities: + - uid: 15833 + components: + - type: Transform + pos: 8.789234,18.727001 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 2317 + components: + - type: Transform + pos: -71.51726,-41.38786 + parent: 2 +- proto: DrinkGlassCoupeShaped + entities: + - uid: 10954 + components: + - type: Transform + pos: -74.55576,58.598495 + parent: 2 +- proto: DrinkGrapeJuice + entities: + - uid: 10943 + components: + - type: Transform + pos: -78.47666,60.57092 + parent: 2 +- proto: DrinkIrishCoffeeGlass + entities: + - uid: 18843 + components: + - type: Transform + pos: -75.31247,0.68645096 + parent: 2 +- proto: DrinkJarWhat + entities: + - uid: 2306 + components: + - type: Transform + parent: 2305 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: Beer + Quantity: 30 + - type: Physics + canCollide: False + - uid: 15831 + components: + - type: Transform + pos: 11.5083685,18.705723 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: Beer + Quantity: 30 +- proto: DrinkKvassGlass + entities: + - uid: 12134 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12135 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkMilkCarton + entities: + - uid: 2906 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkNukieCan + entities: + - uid: 2318 + components: + - type: Transform + pos: -75.09486,-33.30242 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 30 + name: null + reagents: + - data: null + ReagentId: Beer + Quantity: 30 + - type: Openable + opened: True + - uid: 2319 + components: + - type: Transform + pos: -14.308838,-16.454233 + parent: 2 +- proto: DrinkOatMilkCarton + entities: + - uid: 2907 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkOrangeJuice + entities: + - uid: 2320 + components: + - type: Transform + pos: 3.6734042,-2.2140357 + parent: 2 +- proto: DrinkPatronBottleFull + entities: + - uid: 2321 + components: + - type: Transform + pos: -19.51666,-11.404518 + parent: 2 +- proto: DrinkPoisonWineGlass + entities: + - uid: 10913 + components: + - type: Transform + pos: -77.66291,54.515255 + parent: 2 +- proto: DrinkRedMeadGlass + entities: + - uid: 2322 + components: + - type: Transform + pos: -35.28466,-35.449062 + parent: 2 +- proto: DrinkRumBottleFull + entities: + - uid: 2132 + components: + - type: Transform + parent: 2131 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2323 + components: + - type: Transform + pos: 10.347658,-18.116135 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 2324 + components: + - type: Transform + pos: -9.351231,-1.4741879 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 2325 + components: + - type: Transform + pos: -19.601715,-22.132145 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: -19.726715,-22.475895 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 10.316137,-18.64222 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 10.706996,-18.484615 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -42.727394,-54.527985 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -42.51463,-54.598907 + parent: 2 + - uid: 18505 + components: + - type: Transform + pos: -69.95819,0.60956764 + parent: 2 +- proto: DrinkSodaWaterCan + entities: + - uid: 2148 + components: + - type: Transform + parent: 2140 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2149 + components: + - type: Transform + parent: 2140 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2150 + components: + - type: Transform + parent: 2140 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkSoyMilkCarton + entities: + - uid: 2908 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkVacuumFlask + entities: + - uid: 2331 + components: + - type: Transform + pos: -43.39013,-51.380447 + parent: 2 +- proto: DrinkVermouthBottleFull + entities: + - uid: 969 + components: + - type: Transform + parent: 942 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkWaterBottleFull + entities: + - uid: 1708 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False + - uid: 1709 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False + - uid: 1710 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False + - uid: 1711 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False +- proto: DrinkWaterCup + entities: + - uid: 2332 + components: + - type: Transform + pos: 39.4228,-10.567071 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 39.76655,-10.285821 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 39.2978,-10.254571 + parent: 2 + - uid: 29684 + components: + - type: Transform + pos: 44.32891,5.7252398 + parent: 2 + - uid: 29685 + components: + - type: Transform + pos: 44.563286,5.7252398 + parent: 2 + - uid: 29686 + components: + - type: Transform + pos: 44.73516,5.7252398 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 2335 + components: + - type: Transform + pos: -19.24234,-22.319645 + parent: 2 + - uid: 10812 + components: + - type: Transform + pos: -60.546227,60.56252 + parent: 2 + - uid: 10813 + components: + - type: Transform + pos: -60.546227,48.57013 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: -77.47541,53.734005 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: -77.47541,55.53088 + parent: 2 +- proto: Dropper + entities: + - uid: 2336 + components: + - type: Transform + pos: -37.498844,-0.5333537 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -32.562054,-6.3963966 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -33.49237,-15.391946 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -54.345055,0.53755885 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 18.400024,0.55583644 + parent: 2 + - uid: 17922 + components: + - type: Transform + pos: 29.502115,20.625847 + parent: 2 +- proto: DungeonMasterCircuitBoard + entities: + - uid: 13871 + components: + - type: Transform + pos: -8.397589,53.27476 + parent: 2 +- proto: EggplantSeeds + entities: + - uid: 30215 + components: + - type: Transform + pos: -16.477612,10.320199 + parent: 2 +- proto: EggSpider + entities: + - uid: 18799 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EggySeeds + entities: + - uid: 2341 + components: + - type: Transform + pos: 11.580406,-13.415109 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 1226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-6.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,14.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-0.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,9.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-7.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-1.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,8.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-12.5 + parent: 2 + - uid: 12289 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 2 + - uid: 12290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-23.5 + parent: 2 + - uid: 12291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 2 + - uid: 12292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-20.5 + parent: 2 + - uid: 12293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 12294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 12295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-23.5 + parent: 2 + - uid: 12296 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 12297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 2 + - uid: 12298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 12299 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 12300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 12301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + - uid: 12302 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 12303 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 12304 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 12306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 12307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 + - uid: 12308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - uid: 12309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 12310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 12311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 12312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 12313 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 12314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 12315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - uid: 12316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - uid: 12317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 12319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - uid: 12320 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 12321 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 12322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 2 + - uid: 12323 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 12324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 2 + - uid: 12325 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 12326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 + - uid: 12327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,1.5 + parent: 2 + - uid: 12328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,1.5 + parent: 2 + - uid: 12329 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 12330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 12332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 12333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-2.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,2.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 2 + - uid: 12337 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 12338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + - uid: 12339 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 12340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 12341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 2 + - uid: 12342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 12344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-15.5 + parent: 2 + - uid: 12345 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 12346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 2 + - uid: 12347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-26.5 + parent: 2 + - uid: 12348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - uid: 12349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 2 + - uid: 12350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 12352 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 12353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 12354 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 12355 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 12357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 12359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 2 + - uid: 12360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + - uid: 12361 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 2 + - uid: 12362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-48.5 + parent: 2 + - uid: 12363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-47.5 + parent: 2 + - uid: 12364 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 12365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-53.5 + parent: 2 + - uid: 12366 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 2 + - uid: 12367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-53.5 + parent: 2 + - uid: 12368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-53.5 + parent: 2 + - uid: 12369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-52.5 + parent: 2 + - uid: 12370 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - uid: 12371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-54.5 + parent: 2 + - uid: 12372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-52.5 + parent: 2 + - uid: 12373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-56.5 + parent: 2 + - uid: 12376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-59.5 + parent: 2 + - uid: 12377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-60.5 + parent: 2 + - uid: 12378 + components: + - type: Transform + pos: 20.5,-67.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-72.5 + parent: 2 + - uid: 12380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-72.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-63.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-61.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-44.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-38.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-38.5 + parent: 2 + - uid: 12386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 2 + - uid: 12387 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 12388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 12389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 12390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 2 + - uid: 12391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,12.5 + parent: 2 + - uid: 12392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,45.5 + parent: 2 + - uid: 12393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,50.5 + parent: 2 + - uid: 12394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,48.5 + parent: 2 + - uid: 12395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,45.5 + parent: 2 + - uid: 12396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,49.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: -58.5,64.5 + parent: 2 + - uid: 12398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,59.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + pos: -60.5,60.5 + parent: 2 + - uid: 12400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,54.5 + parent: 2 + - uid: 12401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,55.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + pos: -68.5,64.5 + parent: 2 + - uid: 12403 + components: + - type: Transform + pos: -67.5,60.5 + parent: 2 + - uid: 12404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,54.5 + parent: 2 + - uid: 12405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,50.5 + parent: 2 + - uid: 12406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,45.5 + parent: 2 + - uid: 12407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,50.5 + parent: 2 + - uid: 12408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,54.5 + parent: 2 + - uid: 12409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,57.5 + parent: 2 + - uid: 12410 + components: + - type: Transform + pos: -79.5,60.5 + parent: 2 + - uid: 12411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - uid: 12412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 12413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,14.5 + parent: 2 + - uid: 12414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - uid: 12415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 12416 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 12417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-36.5 + parent: 2 + - uid: 12418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 + parent: 2 + - uid: 12419 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 12420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-48.5 + parent: 2 + - uid: 12421 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 12423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-52.5 + parent: 2 + - uid: 12424 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 12425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-54.5 + parent: 2 + - uid: 12426 + components: + - type: Transform + pos: -43.5,-49.5 + parent: 2 + - uid: 12427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-54.5 + parent: 2 + - uid: 12428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-49.5 + parent: 2 + - uid: 12429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-45.5 + parent: 2 + - uid: 12430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-43.5 + parent: 2 + - uid: 12431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 + - uid: 12432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 2 + - uid: 12433 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 12434 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 12435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 + - uid: 12436 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 12437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-39.5 + parent: 2 + - uid: 12438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 12439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-38.5 + parent: 2 + - uid: 12440 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 12441 + components: + - type: Transform + pos: -69.5,-33.5 + parent: 2 + - uid: 12442 + components: + - type: Transform + pos: -70.5,-37.5 + parent: 2 + - uid: 12443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,-30.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-19.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: -25.5,4.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 13386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 2 + - uid: 13389 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 13394 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-30.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 2 + - uid: 13454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-32.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-40.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + pos: 41.5,-42.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-44.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 2 + - uid: 14289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-48.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-40.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 4352 + components: + - type: Transform + pos: -28.442593,7.118239 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: -28.489468,7.227614 + parent: 2 + - uid: 30884 + components: + - type: Transform + pos: -28.536343,7.352614 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 1680 + components: + - type: Transform + parent: 1679 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1682 + components: + - type: Transform + parent: 1681 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2359 + components: + - type: Transform + pos: 19.302177,-32.24738 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 19.739677,-32.669254 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 6.418807,-43.246983 + parent: 2 + - type: GasTank + toggleActionEntity: 2362 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 2362 + - uid: 2363 + components: + - type: Transform + pos: 6.5795636,-43.388824 + parent: 2 + - type: GasTank + toggleActionEntity: 2364 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 2364 + - uid: 13910 + components: + - type: Transform + pos: 43.28428,-32.23262 + parent: 2 + - uid: 13911 + components: + - type: Transform + pos: 43.3158,-32.45327 + parent: 2 + - uid: 18619 + components: + - type: Transform + pos: -65.442184,-9.453694 + parent: 2 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 2365 + components: + - type: Transform + pos: -36.499622,-9.528889 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -36.577747,-9.325764 + parent: 2 +- proto: Emitter + entities: + - uid: 1223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,16.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-58.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-57.5 + parent: 2 +- proto: EncryptionKeyCargo + entities: + - uid: 30983 + components: + - type: Transform + parent: 6992 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 30885 + components: + - type: Transform + parent: 6991 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 30987 + components: + - type: Transform + parent: 6996 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 30988 + components: + - type: Transform + parent: 6997 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 30985 + components: + - type: Transform + parent: 6994 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 30984 + components: + - type: Transform + parent: 6993 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 30989 + components: + - type: Transform + parent: 6998 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 30997 + components: + - type: Transform + parent: 30996 + - type: Physics + canCollide: False +- proto: ExosuitFabricator + entities: + - uid: 2374 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 11059 + components: + - type: Transform + pos: -55.5,64.5 + parent: 2 + - uid: 31073 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 +- proto: ExplosivesSignMed + entities: + - uid: 15930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-66.5 + parent: 2 + - uid: 15931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-66.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-76.5 + parent: 2 + - uid: 15933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-76.5 + parent: 2 +- proto: ExtendedEmergencyOxygenTankFilled + entities: + - uid: 8 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: 15.286538,-61.37745 + parent: 2 + - type: GasTank + toggleActionEntity: 9 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 9 + - uid: 2375 + components: + - type: Transform + pos: 15.735889,-61.45865 + parent: 2 +- proto: ExtinguisherCabinet + entities: + - uid: 2376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-32.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-55.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-47.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-39.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-35.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-39.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-66.5 + parent: 2 + - uid: 13529 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - uid: 31035 + components: + - type: Transform + pos: 18.5,-76.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 2386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-64.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-19.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-51.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-33.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-36.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-44.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 21.5,-49.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-44.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-46.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-39.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-1.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,4.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-1.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,15.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -57.5,-41.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-47.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-40.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: -47.5,-52.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-6.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,11.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,9.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-61.5 + parent: 2 + - uid: 10836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-52.5 + parent: 2 + - uid: 10839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-54.5 + parent: 2 + - uid: 11369 + components: + - type: Transform + pos: -72.5,56.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: -76.5,52.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + pos: -67.5,47.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: -52.5,56.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + pos: -58.5,61.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: -66.5,62.5 + parent: 2 + - uid: 11934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-22.5 + parent: 2 + - uid: 12285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-24.5 + parent: 2 + - uid: 12286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,19.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-32.5 + parent: 2 + - uid: 14528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-39.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,46.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,47.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + pos: -8.5,50.5 + parent: 2 + - uid: 15928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-68.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,14.5 + parent: 2 + - uid: 18545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,19.5 + parent: 2 + - uid: 18842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-3.5 + parent: 2 + - uid: 19934 + components: + - type: Transform + pos: -78.5,-24.5 + parent: 2 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 17313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 +- proto: FatExtractor + entities: + - uid: 2436 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - type: FatExtractor + processing: False +- proto: FaxMachineBase + entities: + - uid: 2437 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - type: FaxMachine + name: Кабинет психолога + - uid: 2438 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - type: FaxMachine + name: Адвокат + - uid: 2441 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - type: FaxMachine + name: Офис ГВ + - uid: 2444 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - type: FaxMachine + name: Офис ГСБ + - uid: 2445 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 + - type: FaxMachine + name: Инж. отдел + - uid: 2446 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: FaxMachine + name: Библиотека + - uid: 2447 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - type: FaxMachine + name: Детектив + - uid: 2448 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - type: FaxMachine + name: РнД + - uid: 2449 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - type: FaxMachine + name: Кабинет НРа + - uid: 2450 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - type: FaxMachine + name: Карго + - uid: 2452 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - type: FaxMachine + name: Офис СИ + - uid: 2463 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - type: FaxMachine + name: Глава Персонала +- proto: FaxMachineCaptain + entities: + - uid: 2453 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 +- proto: filingCabinet + entities: + - uid: 2454 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 2455 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 18081 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 18486 + components: + - type: Transform + pos: -74.5,0.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 2469 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 2471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2798 + - 15022 + - 13511 + - 2808 + - 2809 + - 2810 + - 2594 + - 2606 + - 2605 + - 2814 + - 2815 + - 28870 + - uid: 2472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 10861 + - 2621 + - 28868 + - uid: 2473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 2600 + - 2601 + - 2602 + - 28869 + - uid: 2474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 24725 + - 6289 + - 24726 + - 24727 + - 26889 + - uid: 2475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 28866 + - 2762 + - 2600 + - 2967 + - 2829 + - uid: 2476 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 2704 + - 2703 + - 28877 + - 30228 + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 26888 + - 28903 + - 30118 + - 24754 + - 28501 + - uid: 2478 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 2706 + - 2705 + - 2704 + - 28879 + - uid: 2479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 2591 + - 2590 + - 2729 + - 2761 + - 4331 + - uid: 2480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 2585 + - 2589 + - 15920 + - 2586 + - uid: 2481 + components: + - type: Transform + pos: -21.5,-52.5 + parent: 2 + - type: DeviceList + devices: + - 2729 + - 2761 + - 2587 + - 28584 + - uid: 2483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 13436 + - 13434 + - 13433 + - 13435 + - 30263 + - uid: 2484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 13435 + - 424 + - uid: 2485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 24734 + - 13432 + - 30262 + - 30261 + - uid: 2486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 2698 + - 2699 + - 28594 + - uid: 2487 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 2698 + - 2697 + - 2696 + - 28593 + - 10091 + - 28607 + - 396 + - 25927 + - 23297 + - 10074 + - uid: 2488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 2593 + - 28607 + - uid: 2489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 2698 + - 2697 + - 2696 + - 28593 + - uid: 2490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 2690 + - 2839 + - 2689 + - 2838 + - 2840 + - 2593 + - 2707 + - 2703 + - 28606 + - uid: 2491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 2694 + - 24763 + - 2695 + - 28595 + - uid: 2492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 2690 + - 2839 + - 2689 + - 2838 + - 2840 + - 30225 + - 2693 + - 2692 + - uid: 2493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 2705 + - 2691 + - 2841 + - 30143 + - 28596 + - uid: 2494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 10861 + - 2762 + - 15022 + - 2798 + - 28867 + - uid: 2495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 2594 + - 28865 + - uid: 2496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 28617 + - 2800 + - 2801 + - 2802 + - 2804 + - 2596 + - 2598 + - uid: 2497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2598 + - 28619 + - uid: 2498 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 2597 + - 2596 + - 2595 + - 2599 + - 28608 + - uid: 2499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 24741 + - 30127 + - 30126 + - 28898 + - uid: 2500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 30118 + - 24748 + - 24747 + - 24745 + - 24746 + - 26921 + - uid: 2501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 11005 + - 11006 + - 11007 + - 24753 + - 24746 + - 24745 + - 24751 + - 24750 + - 24749 + - 30285 + - 26919 + - 26920 + - uid: 2502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 30118 + - 24748 + - 24747 + - 24745 + - 24746 + - 26921 + - uid: 2503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 2783 + - 2784 + - 2785 + - 28896 + - uid: 2504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 2785 + - 2786 + - 2787 + - 2778 + - 28895 + - uid: 2505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 2777 + - 2778 + - 2776 + - 2382 + - uid: 2506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 10876 + - 2786 + - 10878 + - 10877 + - 28893 + - 28894 + - uid: 2507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-62.5 + parent: 2 + - type: DeviceList + devices: + - 10876 + - 2786 + - 10878 + - 10877 + - 28893 + - 28894 + - uid: 2508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 24749 + - 24750 + - 24751 + - 2784 + - 2783 + - 2773 + - 2772 + - 2777 + - 26922 + - uid: 2509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 2766 + - 2767 + - 2768 + - 2770 + - 2773 + - 2772 + - 2775 + - 2774 + - 28885 + - uid: 2510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 2769 + - 2770 + - 2771 + - 28887 + - uid: 2511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 2771 + - 2766 + - 2767 + - 2768 + - 28886 + - uid: 2512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 2848 + - 2769 + - 2781 + - 2782 + - 28889 + - uid: 2513 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 2780 + - 2779 + - 2781 + - 2782 + - 2851 + - 2852 + - 2850 + - 28891 + - 28890 + - uid: 2514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 2774 + - 2775 + - 2776 + - 2779 + - 2780 + - 2848 + - 28888 + - uid: 2515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-69.5 + parent: 2 + - type: DeviceList + devices: + - 2852 + - 2851 + - 15672 + - uid: 2516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 28615 + - 2595 + - uid: 2517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-66.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 2668 + - 2667 + - 28587 + - uid: 2519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 2816 + - 2817 + - 2818 + - 2650 + - 2641 + - 2639 + - 2638 + - 2660 + - 2659 + - 2669 + - 2652 + - 2651 + - 28545 + - uid: 2520 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 2816 + - 2817 + - 2818 + - 2650 + - 2641 + - 2639 + - 2638 + - 2660 + - 2659 + - 2669 + - 2652 + - 2651 + - 28545 + - uid: 2521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 14506 + - 14490 + - 2635 + - 2633 + - 2634 + - 2639 + - 2638 + - 28556 + - uid: 2522 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 2636 + - 2642 + - 2670 + - 2641 + - 2640 + - 28567 + - uid: 2523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 2662 + - 2661 + - 2663 + - 2633 + - 2634 + - 2636 + - 2670 + - 28566 + - uid: 2524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 2663 + - 2664 + - 30298 + - uid: 2525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 30297 + - 2643 + - 2661 + - 2662 + - 2642 + - 2644 + - 2645 + - uid: 2526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 2637 + - 2635 + - 28568 + - uid: 2527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 28874 + - 2603 + - uid: 2528 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 2810 + - 2603 + - 2811 + - 28875 + - uid: 2529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2811 + - 10191 + - 13994 + - uid: 2530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 2605 + - 13720 + - uid: 2531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 2792 + - 2678 + - 2677 + - 2676 + - 28626 + - uid: 2532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 2678 + - 2679 + - 2680 + - 28876 + - uid: 2533 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 2799 + - 2607 + - 2797 + - 2608 + - 2606 + - 30160 + - uid: 2534 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 2614 + - 2611 + - uid: 2535 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 2612 + - 2613 + - 28872 + - uid: 2536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 2608 + - 2609 + - 2610 + - 30162 + - uid: 2537 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 2610 + - 2614 + - 2615 + - 28873 + - 2791 + - 2617 + - uid: 2538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 2609 + - 2814 + - 2815 + - 2612 + - 2611 + - 28871 + - uid: 2539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 2618 + - 2619 + - 2620 + - 30198 + - 30197 + - uid: 2540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 2812 + - 2813 + - 13511 + - 2808 + - 2967 + - 2829 + - 2607 + - 2799 + - 28864 + - uid: 2541 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 30028 + - 30029 + - 2627 + - 2626 + - 2624 + - 28572 + - uid: 2542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 2624 + - 28576 + - uid: 2543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 2672 + - 30301 + - 30302 + - 28571 + - 2671 + - 2673 + - 30110 + - 30111 + - 2674 + - uid: 2544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 2658 + - 2659 + - 28540 + - uid: 2545 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 2657 + - 2655 + - 2656 + - 30291 + - 30292 + - uid: 2546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-48.5 + parent: 2 + - type: DeviceList + devices: + - 2590 + - 2657 + - 2654 + - 2653 + - 28581 + - uid: 2547 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 2644 + - 2793 + - 2819 + - 2820 + - 2648 + - 2649 + - 28536 + - 2818 + - 2817 + - 2816 + - 2640 + - 2645 + - uid: 2550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 2643 + - 30296 + - uid: 2551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 14410 + - 14411 + - 14412 + - 2589 + - 2585 + - 2665 + - 2646 + - 2647 + - 2591 + - 26925 + - uid: 2552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 2667 + - 2666 + - 28588 + - uid: 2553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 2825 + - 2826 + - 2827 + - 2828 + - 2830 + - 2597 + - 2804 + - 2802 + - 2801 + - 2800 + - 2805 + - 2806 + - 15025 + - 15023 + - uid: 2554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 2825 + - 2826 + - 2827 + - 2828 + - 2830 + - 2681 + - 2835 + - 2836 + - 28881 + - uid: 2555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 28880 + - uid: 2556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 2836 + - 2835 + - 2834 + - 2831 + - 2832 + - 2683 + - 2682 + - 28882 + - uid: 2557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 2683 + - 2682 + - 2685 + - 30223 + - uid: 2558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 28904 + - 28905 + - 28878 + - 30229 + - uid: 2559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 14139 + - 10984 + - 11131 + - 14140 + - 2760 + - 2757 + - 28904 + - 11055 + - 11058 + - 11054 + - 11053 + - 24748 + - 26888 + - 28903 + - 26442 + - 13449 + - 13447 + - 26890 + - 30274 + - uid: 2560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 30228 + - 28 + - uid: 2561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 24744 + - 24743 + - 30125 + - 30124 + - 28897 + - uid: 2562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 28899 + - 30127 + - uid: 2563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 2710 + - 2708 + - 2709 + - 2712 + - 2711 + - 28883 + - uid: 2564 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 2714 + - 2722 + - 2723 + - 2724 + - 2726 + - 2725 + - 28661 + - uid: 2565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 2720 + - 2721 + - 2722 + - 2723 + - 28677 + - 30266 + - uid: 2567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 2747 + - 2753 + - 2748 + - 2749 + - 28674 + - uid: 2568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 2744 + - 2745 + - 28676 + - uid: 2569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 2745 + - 2747 + - 28662 + - 2746 + - uid: 2570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 2750 + - 2749 + - 2748 + - 2716 + - 2717 + - 28639 + - 28640 + - 2713 + - 2710 + - 2718 + - 2719 + - uid: 2571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 2751 + - 2750 + - 2727 + - 2728 + - 28638 + - uid: 2572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 2724 + - 2725 + - 2726 + - 2720 + - 2721 + - 2719 + - 2718 + - 2744 + - 28673 + - uid: 2573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 2752 + - 2751 + - 28637 + - uid: 2574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 2738 + - 2737 + - 28732 + - uid: 2575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 2742 + - 2731 + - 2730 + - 2764 + - 2732 + - 2734 + - 2733 + - 2754 + - 2738 + - 28731 + - uid: 2576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 2754 + - 2755 + - 2756 + - 28713 + - uid: 2577 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 2756 + - 2757 + - 2760 + - 28711 + - uid: 2578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 2759 + - 30271 + - 30272 + - uid: 2579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 2759 + - 2758 + - 2755 + - 2733 + - 2734 + - 2737 + - 2735 + - 2736 + - 28730 + - uid: 2580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-14.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 2736 + - 2735 + - 2740 + - 2739 + - 2741 + - 30273 + - uid: 4260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-62.5 + parent: 2 + - type: DeviceList + devices: + - 2787 + - 10876 + - 28892 + - uid: 8989 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 11053 + - 11054 + - 11058 + - 11055 + - 24747 + - 2706 + - 2841 + - 30143 + - 11005 + - 11006 + - 11007 + - 26891 + - 24744 + - 24743 + - 2686 + - 2687 + - 2688 + - 26895 + - 14345 + - 14344 + - 14343 + - 24740 + - 2696 + - 2697 + - 12879 + - 12880 + - 14516 + - 30284 + - 30283 + - uid: 10843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-53.5 + parent: 2 + - type: DeviceList + devices: + - 10876 + - 2786 + - 10878 + - 10877 + - 28893 + - 28894 + - uid: 11141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 11155 + - 11156 + - 11157 + - 11153 + - 11152 + - 11151 + - 30245 + - 11169 + - uid: 11160 + components: + - type: Transform + pos: -67.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 30242 + - 11167 + - 11168 + - 11166 + - 11151 + - 11152 + - 11153 + - 11282 + - 11281 + - 11280 + - 30254 + - 30253 + - 30252 + - 30255 + - 11296 + - 11294 + - 11292 + - 11291 + - 11283 + - 11290 + - 11289 + - 11288 + - 11287 + - 11286 + - 11285 + - 11284 + - 11293 + - 11241 + - 11339 + - uid: 11205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,59.5 + parent: 2 + - type: DeviceList + devices: + - 11170 + - 11166 + - 11167 + - 11168 + - 30246 + - 11229 + - uid: 11242 + components: + - type: Transform + pos: -61.5,47.5 + parent: 2 + - type: DeviceList + devices: + - 11281 + - 11282 + - 11280 + - 11155 + - 11156 + - 11157 + - 30250 + - 30251 + - uid: 11352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 11283 + - 11292 + - 11291 + - 11290 + - 11289 + - 11288 + - 11287 + - 11286 + - 11285 + - 11284 + - 11293 + - 30255 + - uid: 11376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,53.5 + parent: 2 + - type: DeviceList + devices: + - 11295 + - 11296 + - 11297 + - 30256 + - uid: 11380 + components: + - type: Transform + pos: -74.5,61.5 + parent: 2 + - type: DeviceList + devices: + - 11297 + - 30257 + - uid: 11387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 11295 + - 30258 + - 30260 + - 30259 + - uid: 11932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 14483 + - 14510 + - 12881 + - 24584 + - 26943 + - uid: 12207 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 24737 + - 24738 + - 30311 + - 14483 + - 14510 + - 26942 + - 11165 + - 11164 + - 1402 + - 1405 + - uid: 12288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 12881 + - 24584 + - 20742 + - 9891 + - 10585 + - 30312 + - 30308 + - uid: 12464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 24762 + - 9057 + - 24761 + - 29999 + - 26948 + - uid: 12850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 13450 + - 10867 + - 13532 + - 2708 + - 2709 + - 2834 + - 2831 + - 2832 + - 24728 + - 26916 + - 26917 + - 2731 + - 2730 + - 2764 + - 2732 + - 14139 + - 10984 + - 11131 + - 14140 + - 24729 + - uid: 12893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 24738 + - 12877 + - 12876 + - 12878 + - 24736 + - 2699 + - 24739 + - 14516 + - 12880 + - 12879 + - 26897 + - 26898 + - uid: 13106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 12878 + - 12876 + - 12877 + - 11235 + - 2679 + - 2797 + - 2677 + - 12873 + - 12874 + - 12875 + - 26900 + - 26899 + - uid: 13292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 13314 + - 13315 + - 13316 + - 2812 + - 2813 + - 12875 + - 12874 + - 12873 + - 26901 + - 2796 + - 2588 + - 2795 + - 2676 + - 24735 + - 10862 + - 26902 + - uid: 13304 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 10862 + - 13314 + - 13315 + - 13316 + - 29918 + - 11468 + - 13317 + - 13318 + - 13319 + - 2601 + - 26930 + - 95 + - uid: 13320 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 11468 + - 29918 + - 10862 + - 13314 + - 13315 + - 13316 + - 2601 + - 13319 + - 13318 + - 13317 + - 95 + - 26930 + - uid: 13339 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 13317 + - 13318 + - 13319 + - 11234 + - 26932 + - uid: 13350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 24734 + - 13432 + - 2796 + - 2588 + - 2795 + - 2805 + - 2806 + - 13436 + - 24732 + - 24733 + - 26894 + - 6651 + - 26905 + - 26904 + - 26903 + - uid: 13351 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 24734 + - 13432 + - 2796 + - 2588 + - 2795 + - 2805 + - 2806 + - 13436 + - 24732 + - 24733 + - 26894 + - 6651 + - 26905 + - 26904 + - 26903 + - uid: 13408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 26894 + - 6651 + - 26905 + - 24731 + - 2728 + - 2727 + - 2716 + - 2717 + - 13450 + - 10867 + - 13532 + - 26915 + - 26914 + - uid: 13426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 13450 + - 10867 + - 13532 + - 2708 + - 2709 + - 2834 + - 2831 + - 2832 + - 24728 + - 26916 + - 26917 + - 2731 + - 2730 + - 2764 + - 2732 + - 14139 + - 10984 + - 11131 + - 14140 + - 24729 + - uid: 13527 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 13447 + - 13449 + - 26442 + - 6289 + - 24726 + - 24727 + - 24724 + - 24725 + - 24721 + - 24722 + - 24723 + - 24756 + - 28902 + - uid: 13545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 13447 + - 13449 + - 26442 + - 6289 + - 24726 + - 24727 + - 24724 + - 24725 + - 24721 + - 24722 + - 24723 + - 24756 + - 28902 + - uid: 13985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 2691 + - 2692 + - 2693 + - 2694 + - 2686 + - 2687 + - 2688 + - 30224 + - uid: 14041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 4332 + - 30277 + - 14086 + - 14084 + - 24717 + - 24716 + - 24715 + - 13608 + - 13607 + - 24718 + - 24720 + - 24719 + - 14083 + - 14082 + - uid: 14042 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 28901 + - 13609 + - 24715 + - 24716 + - 24717 + - 14087 + - 26875 + - uid: 14047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 13610 + - 13607 + - 13608 + - 13609 + - 26876 + - uid: 14099 + components: + - type: Transform + pos: 48.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 14083 + - 14082 + - 30280 + - uid: 14224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 11053 + - 11054 + - 11058 + - 11055 + - 24747 + - 2706 + - 2841 + - 30143 + - 11005 + - 11006 + - 11007 + - 26891 + - 24744 + - 24743 + - 2686 + - 2687 + - 2688 + - 26895 + - 14345 + - 14344 + - 14343 + - 24740 + - 2696 + - 2697 + - 12879 + - 12880 + - 14516 + - 30284 + - 30283 + - uid: 14514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 14343 + - 14344 + - 14345 + - 24741 + - 14410 + - 14411 + - 14412 + - 24752 + - 2847 + - 24742 + - 26924 + - 26923 + - uid: 14515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 14343 + - 14344 + - 14345 + - 24741 + - 14410 + - 14411 + - 14412 + - 24752 + - 2847 + - 24742 + - 26924 + - 26923 + - uid: 14593 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 30231 + - 30232 + - 30230 + - 30236 + - uid: 14831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,42.5 + parent: 2 + - type: DeviceList + devices: + - 30230 + - 30233 + - 30238 + - uid: 14952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 30237 + - 30231 + - 30234 + - uid: 15092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,44.5 + parent: 2 + - type: DeviceList + devices: + - 30234 + - 30232 + - 30233 + - 30239 + - 30235 + - uid: 15273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,50.5 + parent: 2 + - type: DeviceList + devices: + - 30235 + - 30240 + - uid: 17431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-64.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-60.5 + parent: 2 + - type: DeviceList + devices: + - 2790 + - 2789 + - 2788 + - 24757 + - 30281 + - 30282 + - uid: 17975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 17889 + - 17888 + - 17887 + - 29936 + - 29935 + - 29934 + - 29942 + - 30267 + - uid: 17976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 17812 + - 17813 + - 17807 + - 17887 + - 17888 + - 17889 + - 30268 + - uid: 26698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 24742 + - 24740 + - 30279 + - uid: 28635 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 29926 + - 24733 + - 24732 + - 28630 + - uid: 30265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 2713 + - 2711 + - 2714 + - 28884 + - uid: 30275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-45.5 + parent: 2 + - type: DeviceList + devices: + - 30276 + - 14086 + - 14084 + - 14087 + - uid: 30300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 2822 + - 2823 + - 2821 + - 2824 + - 30299 + - uid: 30304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 2821 + - 30301 + - 30302 + - 2672 + - 28571 + - 30303 + - uid: 30305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 30110 + - 30111 + - 2675 + - 30307 + - uid: 30313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,52.5 + parent: 2 + - type: DeviceList + devices: + - 11169 + - 11170 + - 30241 +- proto: FireAxeCabinetFilled + entities: + - uid: 2583 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 16171 + components: + - type: Transform + pos: -28.705284,-30.393255 + parent: 2 + - uid: 17869 + components: + - type: Transform + parent: 17868 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17870 + components: + - type: Transform + parent: 17868 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17872 + components: + - type: Transform + parent: 17871 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17873 + components: + - type: Transform + parent: 17871 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Firelock + entities: + - uid: 973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - uid: 974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-47.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: -20.5,-52.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-44.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: -27.5,11.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,1.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,5.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-6.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,13.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: -60.5,-38.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: -61.5,-35.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: -61.5,-34.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: -49.5,-38.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -37.5,-40.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: -44.5,-50.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: -50.5,-45.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-35.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-33.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-34.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-40.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-51.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-35.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: -77.5,-34.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: -77.5,-39.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -86.5,-39.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -86.5,-42.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: -94.5,-29.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,0.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-1.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-6.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,0.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-2.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,2.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-50.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-47.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-45.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-47.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-49.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-49.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-52.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-49.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-52.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 2780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 2781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 2782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 2783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-44.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-49.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-54.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 32.5,-61.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 32.5,-63.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 10876 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 10877 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 10878 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 11054 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 11058 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - uid: 11164 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 11165 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 11169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,52.5 + parent: 2 + - uid: 11170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,56.5 + parent: 2 + - uid: 11229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,62.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + pos: -21.5,16.5 + parent: 2 + - uid: 11235 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 11294 + components: + - type: Transform + pos: -71.5,47.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: -75.5,52.5 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: -72.5,54.5 + parent: 2 + - uid: 11297 + components: + - type: Transform + pos: -75.5,56.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-40.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-42.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-36.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + pos: 48.5,-33.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: 48.5,-41.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + pos: -47.5,-35.5 + parent: 2 + - uid: 14506 + components: + - type: Transform + pos: -47.5,-34.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - uid: 15063 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,17.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 15934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 + - uid: 17807 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 17812 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 17813 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 21138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 24584 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 24735 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 24762 + components: + - type: Transform + pos: -63.5,-23.5 + parent: 2 + - uid: 26655 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - uid: 26888 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 28903 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 28904 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 28905 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 29917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - uid: 29918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - uid: 29919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - uid: 29920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,19.5 + parent: 2 + - uid: 29921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 + - uid: 29922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 29923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,19.5 + parent: 2 + - uid: 29925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 2 + - uid: 29926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - uid: 29927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,20.5 + parent: 2 + - uid: 29928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,16.5 + parent: 2 + - uid: 29929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 2 + - uid: 29930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 2 + - uid: 29931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 2 + - uid: 29932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,23.5 + parent: 2 + - uid: 29933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - uid: 29934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 29937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - uid: 29939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 + - uid: 29940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,20.5 + parent: 2 + - uid: 29941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + - uid: 29942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,28.5 + parent: 2 + - uid: 29948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,22.5 + parent: 2 + - uid: 29981 + components: + - type: Transform + pos: -51.5,17.5 + parent: 2 + - uid: 29982 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 29983 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 29984 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 29985 + components: + - type: Transform + pos: -49.5,18.5 + parent: 2 + - uid: 29986 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 29987 + components: + - type: Transform + pos: -50.5,15.5 + parent: 2 + - uid: 29988 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 29989 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 29990 + components: + - type: Transform + pos: -63.5,6.5 + parent: 2 + - uid: 29991 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 29992 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 29993 + components: + - type: Transform + pos: -71.5,-0.5 + parent: 2 + - uid: 29994 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - uid: 29995 + components: + - type: Transform + pos: -67.5,-0.5 + parent: 2 + - uid: 29996 + components: + - type: Transform + pos: -67.5,4.5 + parent: 2 + - uid: 29997 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 29998 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 29999 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 30001 + components: + - type: Transform + pos: -75.5,-19.5 + parent: 2 + - uid: 30002 + components: + - type: Transform + pos: -70.5,-16.5 + parent: 2 + - uid: 30007 + components: + - type: Transform + pos: -71.5,-25.5 + parent: 2 + - uid: 30010 + components: + - type: Transform + pos: -66.5,-28.5 + parent: 2 + - uid: 30011 + components: + - type: Transform + pos: -70.5,-26.5 + parent: 2 + - uid: 30012 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - uid: 30019 + components: + - type: Transform + pos: -62.5,-26.5 + parent: 2 + - uid: 30023 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 2 + - uid: 30028 + components: + - type: Transform + pos: -52.5,-34.5 + parent: 2 + - uid: 30029 + components: + - type: Transform + pos: -52.5,-35.5 + parent: 2 + - uid: 30030 + components: + - type: Transform + pos: -63.5,-31.5 + parent: 2 + - uid: 30031 + components: + - type: Transform + pos: -62.5,-36.5 + parent: 2 + - uid: 30034 + components: + - type: Transform + pos: -51.5,-40.5 + parent: 2 + - uid: 30037 + components: + - type: Transform + pos: -54.5,-43.5 + parent: 2 + - uid: 30038 + components: + - type: Transform + pos: -53.5,-51.5 + parent: 2 + - uid: 30039 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 30040 + components: + - type: Transform + pos: -51.5,-46.5 + parent: 2 + - uid: 30043 + components: + - type: Transform + pos: -62.5,-27.5 + parent: 2 + - uid: 30045 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 30046 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 + - uid: 30050 + components: + - type: Transform + pos: -71.5,-19.5 + parent: 2 + - uid: 30051 + components: + - type: Transform + pos: -71.5,-20.5 + parent: 2 + - uid: 30059 + components: + - type: Transform + pos: 51.5,2.5 + parent: 2 + - uid: 30060 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 2 + - uid: 30064 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - uid: 30071 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 30073 + components: + - type: Transform + pos: 48.5,15.5 + parent: 2 + - uid: 30084 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 30085 + components: + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 30090 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 30093 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 30095 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 30098 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 30110 + components: + - type: Transform + pos: -91.5,-36.5 + parent: 2 + - uid: 30111 + components: + - type: Transform + pos: -92.5,-36.5 + parent: 2 + - uid: 30118 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 30122 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 30123 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 30124 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 30125 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 30126 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 30127 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 30128 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 30129 + components: + - type: Transform + pos: 35.5,-68.5 + parent: 2 + - uid: 30130 + components: + - type: Transform + pos: 32.5,-70.5 + parent: 2 + - uid: 30140 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 30141 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 2 + - uid: 30142 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 30143 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 30228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 30230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,43.5 + parent: 2 + - uid: 30231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,43.5 + parent: 2 + - uid: 30232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,44.5 + parent: 2 + - uid: 30233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,46.5 + parent: 2 + - uid: 30234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 2 + - uid: 30235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,48.5 + parent: 2 + - uid: 30242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,61.5 + parent: 2 + - uid: 30266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,1.5 + parent: 2 + - uid: 30271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 30285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-40.5 + parent: 2 + - uid: 30289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 2 + - uid: 30301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-37.5 + parent: 2 + - uid: 30302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-38.5 + parent: 2 + - uid: 30311 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 2791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 11151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,51.5 + parent: 2 + - uid: 11152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,50.5 + parent: 2 + - uid: 11153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,49.5 + parent: 2 + - uid: 11155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,47.5 + parent: 2 + - uid: 11156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,47.5 + parent: 2 + - uid: 11157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,47.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,57.5 + parent: 2 + - uid: 11167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,58.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,59.5 + parent: 2 + - uid: 11280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,47.5 + parent: 2 + - uid: 11281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,47.5 + parent: 2 + - uid: 11282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,47.5 + parent: 2 + - uid: 11283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,51.5 + parent: 2 + - uid: 11284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,57.5 + parent: 2 + - uid: 11285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,57.5 + parent: 2 + - uid: 11286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,56.5 + parent: 2 + - uid: 11287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,55.5 + parent: 2 + - uid: 11288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,54.5 + parent: 2 + - uid: 11289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,53.5 + parent: 2 + - uid: 11290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,52.5 + parent: 2 + - uid: 11291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,51.5 + parent: 2 + - uid: 11292 + components: + - type: Transform + pos: -69.5,51.5 + parent: 2 + - uid: 11293 + components: + - type: Transform + pos: -71.5,57.5 + parent: 2 + - uid: 11468 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + pos: 46.5,22.5 + parent: 2 + - uid: 29943 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 29944 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 29945 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 29946 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 29947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 +- proto: FirelockElectronics + entities: + - uid: 1142 + components: + - type: Transform + parent: 1139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FirelockGlass + entities: + - uid: 396 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - 2487 + - uid: 2762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-41.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-42.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-43.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: -64.5,-34.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -64.5,-35.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: -73.5,-34.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-62.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 2851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 2852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 6289 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: -52.5,-21.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - 2487 + - uid: 10091 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 44 + - 2487 + - uid: 10191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 10861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - uid: 10862 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 10867 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 10984 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 2 + - uid: 11007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-34.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 11055 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 11131 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,0.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 13449 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 14516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 17887 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 17888 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 17889 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 18012 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - uid: 18013 + components: + - type: Transform + pos: 30.5,35.5 + parent: 2 + - uid: 18014 + components: + - type: Transform + pos: 29.5,35.5 + parent: 2 + - uid: 24715 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 2 + - uid: 24716 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 2 + - uid: 24717 + components: + - type: Transform + pos: 44.5,-41.5 + parent: 2 + - uid: 24718 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 24719 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 24720 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 24721 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 24722 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 24723 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 24724 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 24725 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 24726 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 24727 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 24728 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 24729 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 24731 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 24732 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 24733 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 24734 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 24736 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 24737 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 24738 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 24739 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 24740 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 24741 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 24742 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 24743 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 24744 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 24745 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 24746 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 24747 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 24748 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 24749 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 24750 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 24751 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 24752 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 24753 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 24754 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 24755 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 24756 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 2 + - uid: 24757 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 24761 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 24763 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 26442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 2 + - uid: 26894 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 26905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 28901 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 29935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 29936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - uid: 30283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 + - uid: 30284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 +- proto: Flash + entities: + - uid: 2853 + components: + - type: Transform + pos: -19.287117,-54.026405 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: -1.9340982,-11.436697 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: -25.52929,-49.449688 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: -72.485405,-35.42703 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: -1.5737158,-38.47808 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: 20.54106,10.561088 + parent: 2 + - uid: 11230 + components: + - type: Transform + pos: -56.331142,64.6185 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 18 + components: + - type: Transform + pos: -33.43976,-37.56324 + parent: 2 + - type: HandheldLight + toggleActionEntity: 19 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 19 + - type: ActionsContainer + - uid: 2164 + components: + - type: Transform + parent: 2163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2859 + components: + - type: Transform + pos: 4.4924083,-21.521631 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: -1.454891,-34.474243 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 19.504948,-36.580555 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 4.590074,-53.52469 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 28.472984,-12.556581 + parent: 2 + - uid: 18134 + components: + - type: Transform + pos: -13.591146,20.522156 + parent: 2 + - uid: 18877 + components: + - type: Transform + pos: -62.464157,-12.441303 + parent: 2 +- proto: FlashlightSeclite + entities: + - uid: 2865 + components: + - type: Transform + pos: -19.372383,-38.192684 + parent: 2 + - type: HandheldLight + toggleActionEntity: 11023 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 11023 + - type: ActionsContainer + - uid: 2866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.51126,-50.581196 + parent: 2 + - uid: 2867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.526976,-52.42992 + parent: 2 + - uid: 20307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.48317,-15.453969 + parent: 2 +- proto: FloodlightBroken + entities: + - uid: 11917 + components: + - type: Transform + pos: -86.60716,64.627304 + parent: 2 +- proto: FloorBananiumEntity + entities: + - uid: 15961 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 17682 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 +- proto: FloorDrain + entities: + - uid: 2868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2869 + components: + - type: Transform + pos: -29.5,12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2870 + components: + - type: Transform + pos: -83.5,-35.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2871 + components: + - type: Transform + pos: -81.5,-35.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5852 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 10972 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11508 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11576 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 30838 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorWaterEntity + entities: + - uid: 10163 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 + - uid: 10863 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 2872 + components: + - type: Transform + pos: -43.51081,-14.468704 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: -76.45448,-46.456585 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: -95.49773,-37.13669 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: -84.50471,-40.5076 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 15.48059,-25.486183 + parent: 2 + - uid: 2877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.53889,-12.436707 + parent: 2 + - uid: 14138 + components: + - type: Transform + pos: 52.482243,-37.3558 + parent: 2 + - uid: 15279 + components: + - type: Transform + pos: -59.29814,19.897976 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: -28.743109,-66.519005 + parent: 2 + - uid: 15307 + components: + - type: Transform + pos: 67.72986,5.565247 + parent: 2 + - uid: 15310 + components: + - type: Transform + pos: 24.484552,39.546356 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: 6.493368,28.709976 + parent: 2 + - uid: 15584 + components: + - type: Transform + pos: -12.515752,26.703293 + parent: 2 + - uid: 15585 + components: + - type: Transform + pos: -6.4988704,14.680889 + parent: 2 + - uid: 20577 + components: + - type: Transform + pos: -61.58996,-45.2789 + parent: 2 + - uid: 20592 + components: + - type: Transform + pos: -53.48963,-55.25541 + parent: 2 +- proto: FloraRockSolid02 + entities: + - uid: 2086 + components: + - type: Transform + pos: 61.49973,3.593961 + parent: 2 + - uid: 15275 + components: + - type: Transform + pos: -57.855946,20.162458 + parent: 2 + - uid: 15282 + components: + - type: Transform + pos: -30.80067,29.058844 + parent: 2 + - uid: 18785 + components: + - type: Transform + pos: -60.173134,15.716196 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 2878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.503663,-9.394154 + parent: 2 + - uid: 15133 + components: + - type: Transform + pos: -75.51416,-2.5191422 + parent: 2 + - uid: 15278 + components: + - type: Transform + pos: -21.127691,28.559248 + parent: 2 + - uid: 15280 + components: + - type: Transform + pos: -59.89189,21.00735 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: -29.003796,29.761969 + parent: 2 + - uid: 15297 + components: + - type: Transform + pos: -31.914986,-68.362755 + parent: 2 + - uid: 15311 + components: + - type: Transform + pos: 20.539364,34.53073 + parent: 2 + - uid: 18784 + components: + - type: Transform + pos: -74.48182,13.7090645 + parent: 2 +- proto: FloraTree01 + entities: + - uid: 2879 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 +- proto: FloraTree03 + entities: + - uid: 2880 + components: + - type: Transform + pos: -28.562174,-10.618305 + parent: 2 +- proto: FloraTree05 + entities: + - uid: 2881 + components: + - type: Transform + pos: -29.624674,-11.649555 + parent: 2 +- proto: FloraTree06 + entities: + - uid: 2882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.449924,14.316078 + parent: 2 +- proto: FloraTreeLarge04 + entities: + - uid: 1277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.159428,54.293182 + parent: 2 +- proto: FoamCutlass + entities: + - uid: 18361 + components: + - type: Transform + pos: -51.375454,21.564356 + parent: 2 +- proto: FoodApple + entities: + - uid: 10919 + components: + - type: Transform + pos: -77.303535,54.361416 + parent: 2 +- proto: FoodBakedMuffin + entities: + - uid: 16055 + components: + - type: Transform + pos: 49.44268,18.912525 + parent: 2 +- proto: FoodBakedPretzel + entities: + - uid: 11206 + components: + - type: Transform + pos: -53.64595,59.861336 + parent: 2 + - uid: 11207 + components: + - type: Transform + pos: -53.433186,59.691124 + parent: 2 + - uid: 11208 + components: + - type: Transform + pos: -53.29134,59.889706 + parent: 2 +- proto: FoodBanana + entities: + - uid: 2883 + components: + - type: Transform + pos: 25.573685,14.474129 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: -30.546549,-11.493305 + parent: 2 +- proto: FoodBoxDonkpocket + entities: + - uid: 2885 + components: + - type: Transform + pos: 39.57905,-10.317071 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: -9.510237,-3.4163895 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: -43.437145,-41.37588 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 16129 + components: + - type: Transform + pos: 48.4726,27.55034 + parent: 2 +- proto: FoodBoxPizza + entities: + - uid: 29707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.728573,4.8033648 + parent: 2 +- proto: FoodBoxPizzaFilled + entities: + - uid: 2890 + components: + - type: Transform + pos: 3.4968872,-3.220667 + parent: 2 + - uid: 29703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.541073,4.8033648 + parent: 2 +- proto: FoodBreadMimana + entities: + - uid: 6876 + components: + - type: Transform + pos: -25.584805,23.55008 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 1712 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False + - uid: 1713 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False +- proto: FoodBreadPlain + entities: + - uid: 11086 + components: + - type: Transform + pos: -53.31049,51.491787 + parent: 2 +- proto: FoodBreadPlainSlice + entities: + - uid: 11120 + components: + - type: Transform + pos: -53.701115,51.273037 + parent: 2 + - uid: 11121 + components: + - type: Transform + pos: -53.419865,51.179287 + parent: 2 +- proto: FoodBreadSausage + entities: + - uid: 2891 + components: + - type: Transform + pos: -68.47471,-40.472965 + parent: 2 +- proto: FoodBreadSausageSlice + entities: + - uid: 2186 + components: + - type: Transform + parent: 2184 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerClown + entities: + - uid: 2892 + components: + - type: Transform + pos: -14.319691,-7.664896 + parent: 2 +- proto: FoodBurgerMime + entities: + - uid: 2893 + components: + - type: Transform + pos: -14.649279,-6.047875 + parent: 2 +- proto: FoodBurgerRat + entities: + - uid: 11016 + components: + - type: Transform + pos: -82.60215,-49.32861 + parent: 2 +- proto: FoodCabbage + entities: + - uid: 2894 + components: + - type: Transform + pos: 22.535276,-3.6928988 + parent: 2 +- proto: FoodCakePlain + entities: + - uid: 2895 + components: + - type: Transform + pos: 10.557716,-1.3634899 + parent: 2 +- proto: FoodCakeSuppermatter + entities: + - uid: 2896 + components: + - type: Transform + pos: 22.492281,-61.391716 + parent: 2 +- proto: FoodCarrot + entities: + - uid: 2897 + components: + - type: Transform + pos: 22.43441,-3.1696525 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 2898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 2899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 +- proto: FoodCheeseSlice + entities: + - uid: 2901 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2902 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 2909 + components: + - type: Transform + pos: -82.44415,-45.187546 + parent: 2 + - uid: 11622 + components: + - type: Transform + pos: -37.36213,-17.176052 + parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 2910 + components: + - type: Transform + pos: -76.160286,-40.363037 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 11.832893,-1.1720006 + parent: 2 +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 2912 + components: + - type: Transform + pos: -82.31649,-45.27265 + parent: 2 + - uid: 11623 + components: + - type: Transform + pos: -37.53234,-17.303713 + parent: 2 +- proto: FoodContainerEgg + entities: + - uid: 2913 + components: + - type: Transform + pos: -75.39131,-40.33467 + parent: 2 + - uid: 30786 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30788 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodDonutJellySlugcat + entities: + - uid: 11211 + components: + - type: Transform + pos: -53.727478,57.742287 + parent: 2 + - uid: 11212 + components: + - type: Transform + pos: -53.301945,57.742287 + parent: 2 + - uid: 11213 + components: + - type: Transform + pos: -53.500526,57.472786 + parent: 2 +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 2915 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 2916 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 2917 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13441 + components: + - type: Transform + parent: 13437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 2918 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 2919 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13438 + components: + - type: Transform + parent: 13437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowcone + entities: + - uid: 2920 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowconeBase + entities: + - uid: 2921 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowconeBerry + entities: + - uid: 2922 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowconeClown + entities: + - uid: 2923 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2930 + components: + - type: Transform + pos: -14.773309,-7.119794 + parent: 2 +- proto: FoodFrozenSnowconeFruit + entities: + - uid: 2924 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowconeMime + entities: + - uid: 2925 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2931 + components: + - type: Transform + pos: -14.752032,-5.630432 + parent: 2 +- proto: FoodFrozenSnowconeRainbow + entities: + - uid: 2926 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 2927 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodGrape + entities: + - uid: 10891 + components: + - type: Transform + pos: -58.349762,60.75771 + parent: 2 + - uid: 10892 + components: + - type: Transform + pos: -58.49935,48.56701 + parent: 2 +- proto: FoodKebabSkewer + entities: + - uid: 10973 + components: + - type: Transform + pos: -82.5084,-49.39111 + parent: 2 +- proto: FoodMealPigblanket + entities: + - uid: 2932 + components: + - type: Transform + pos: 3.5031915,-6.356554 + parent: 2 + - uid: 11186 + components: + - type: Transform + pos: 7.709256,-2.9470904 + parent: 2 +- proto: FoodMealPotatoLoaded + entities: + - uid: 2933 + components: + - type: Transform + pos: 10.463915,0.6511518 + parent: 2 +- proto: FoodMeat + entities: + - uid: 2903 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2904 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2935 + components: + - type: Transform + parent: 2934 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2936 + components: + - type: Transform + parent: 2934 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatBacon + entities: + - uid: 2938 + components: + - type: Transform + parent: 2937 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2939 + components: + - type: Transform + parent: 2937 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatChicken + entities: + - uid: 2942 + components: + - type: Transform + parent: 2941 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatChickenFried + entities: + - uid: 16069 + components: + - type: Transform + pos: 49.622715,18.698627 + parent: 2 +- proto: FoodMeatDragon + entities: + - uid: 29964 + components: + - type: Transform + pos: -51.54782,25.559933 + parent: 2 + - uid: 30998 + components: + - type: Transform + pos: -54.469696,26.356808 + parent: 2 +- proto: FoodMeatRotten + entities: + - uid: 20466 + components: + - type: Transform + pos: -76.508385,-16.549757 + parent: 2 +- proto: FoodMeatSpider + entities: + - uid: 17748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.664701,-45.59848 + parent: 2 + - uid: 17749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.461576,-44.582855 + parent: 2 +- proto: FoodMeatSpiderLeg + entities: + - uid: 18792 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18793 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18794 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18795 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18796 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18797 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18798 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18800 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMimana + entities: + - uid: 30161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.41293,23.98758 + parent: 2 +- proto: FoodNoodlesSpesslaw + entities: + - uid: 2943 + components: + - type: Transform + pos: -43.51161,-46.285114 + parent: 2 + - uid: 18690 + components: + - type: Transform + pos: -55.485863,-27.337452 + parent: 2 +- proto: FoodOnion + entities: + - uid: 2905 + components: + - type: Transform + parent: 2900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPieBananaCream + entities: + - uid: 2944 + components: + - type: Transform + pos: -14.258903,-6.5946918 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: -14.769541,-6.5946918 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: -14.492945,-6.743628 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: -14.514222,-6.4457555 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: 4.2842073,29.018696 + parent: 2 +- proto: FoodPieFrosty + entities: + - uid: 2928 + components: + - type: Transform + parent: 2914 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPizzaArnoldSlice + entities: + - uid: 29713 + components: + - type: Transform + pos: 44.572323,4.6158648 + parent: 2 + - uid: 29716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.712948,4.8658648 + parent: 2 +- proto: FoodPizzaDankSlice + entities: + - uid: 16127 + components: + - type: Transform + pos: 46.56568,19.122538 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: 46.393806,19.481913 + parent: 2 +- proto: FoodPizzaMoldySlice + entities: + - uid: 1714 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False + - uid: 1715 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False + - uid: 1716 + components: + - type: Transform + parent: 1706 + - type: Physics + canCollide: False +- proto: FoodPizzaMushroomSlice + entities: + - uid: 16130 + components: + - type: Transform + pos: 43.56568,18.591288 + parent: 2 + - uid: 16131 + components: + - type: Transform + pos: 43.425056,18.810038 + parent: 2 +- proto: FoodPizzaPineappleSlice + entities: + - uid: 16132 + components: + - type: Transform + pos: 46.44068,18.435038 + parent: 2 + - uid: 16133 + components: + - type: Transform + pos: 43.44068,19.450663 + parent: 2 +- proto: FoodPizzaVegetableSlice + entities: + - uid: 29715 + components: + - type: Transform + pos: 44.572323,5.2721148 + parent: 2 +- proto: FoodPlate + entities: + - uid: 2948 + components: + - type: Transform + pos: 7.4755344,-3.3330393 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: -73.50324,-42.217648 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: -73.48197,-41.2602 + parent: 2 +- proto: FoodPlatePlastic + entities: + - uid: 910 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 911 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPlateSmall + entities: + - uid: 912 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 913 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2951 + components: + - type: Transform + pos: 3.4653666,-6.3187294 + parent: 2 +- proto: FoodPlateSmallPlastic + entities: + - uid: 914 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 915 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPoppy + entities: + - uid: 1798 + components: + - type: Transform + pos: -13.338043,-8.452651 + parent: 2 + - uid: 11192 + components: + - type: Transform + pos: -60.302864,48.669106 + parent: 2 + - uid: 11210 + components: + - type: Transform + pos: -60.3145,60.686787 + parent: 2 +- proto: FoodPotato + entities: + - uid: 2952 + components: + - type: Transform + pos: 9.485191,0.6229896 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 2953 + components: + - type: Transform + pos: -2.5048556,-7.416399 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: -73.78417,-40.530888 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 3.2762413,-2.5824084 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 7.5601563,-4.0086927 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 2957 + components: + - type: Transform + pos: -2.5143127,-7.1516232 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: -73.59505,-40.530888 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 3.2762413,-2.2735038 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 7.4277687,-3.9424992 + parent: 2 +- proto: FoodSnackChips + entities: + - uid: 1873 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1874 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1875 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2961 + components: + - type: Transform + pos: 34.450096,7.9175706 + parent: 2 + - uid: 12131 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12133 + components: + - type: Transform + parent: 12126 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.71816,-58.532814 + parent: 2 +- proto: FoodSnackCookieFortune + entities: + - uid: 10962 + components: + - type: Transform + pos: -76.52279,53.55433 + parent: 2 + - uid: 10963 + components: + - type: Transform + pos: -76.600914,55.61683 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 2962 + components: + - type: Transform + pos: -68.47471,-39.536797 + parent: 2 +- proto: FoodTartGrape + entities: + - uid: 10941 + components: + - type: Transform + pos: -79.02354,60.50842 + parent: 2 +- proto: FoodTartMime + entities: + - uid: 2963 + components: + - type: Transform + pos: -14.308852,-5.750003 + parent: 2 +- proto: FoodTomato + entities: + - uid: 2964 + components: + - type: Transform + pos: 22.69288,-3.2768235 + parent: 2 +- proto: Fork + entities: + - uid: 18660 + components: + - type: Transform + pos: -55.454613,-27.431202 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 916 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 917 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2965 + components: + - type: Transform + pos: -71.49599,-39.494244 + parent: 2 +- proto: FuelDispenser + entities: + - uid: 892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 2 +- proto: GarlicSeeds + entities: + - uid: 2966 + components: + - type: Transform + pos: 11.346364,-13.372556 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 2155 + components: + - type: Transform + parent: 2153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2970 + components: + - type: Transform + parent: 2969 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2971 + components: + - type: Transform + pos: -85.67622,-45.66627 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: -85.25069,-45.687546 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 11.475245,-13.370062 + parent: 2 + - uid: 2975 + components: + - type: Transform + parent: 2974 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2976 + components: + - type: Transform + pos: 43.828953,-1.4021343 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: 25.586084,-55.48534 + parent: 2 + - uid: 10001 + components: + - type: Transform + pos: 6.517915,-42.492332 + parent: 2 + - uid: 10819 + components: + - type: Transform + pos: -0.6991451,-54.316868 + parent: 2 + - uid: 10820 + components: + - type: Transform + pos: -0.3587196,-54.338142 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: 13.289104,-35.305164 + parent: 2 + - uid: 14222 + components: + - type: Transform + pos: 13.650806,-35.432823 + parent: 2 + - uid: 14577 + components: + - type: Transform + pos: -14.366964,9.875175 + parent: 2 + - uid: 14578 + components: + - type: Transform + pos: -14.398485,8.251791 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 10714 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 +- proto: GasFilter + entities: + - uid: 30805 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 +- proto: GasMinerCarbonDioxide + entities: + - uid: 15802 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 3068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-50.5 + parent: 2 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 3061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-54.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 15806 + components: + - type: Transform + pos: -0.5,-66.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 14800 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 2977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 10871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-51.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-59.5 + parent: 2 + - type: GasMixer + inletTwoConcentration: 0.98 + inletOneConcentration: 0.02 + targetPressure: 4500 +- proto: GasMixerFlipped + entities: + - uid: 2979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-41.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 2980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-39.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 15847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-57.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-53.5 + parent: 2 + - uid: 15849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-49.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-65.5 + parent: 2 + - uid: 15851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-65.5 + parent: 2 + - uid: 15852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-65.5 + parent: 2 + - uid: 15853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-65.5 + parent: 2 + - uid: 17878 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 1227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-76.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-75.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-73.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-72.5 + parent: 2 + - uid: 15855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-65.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-65.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-65.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-59.5 + parent: 2 + - uid: 15860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-55.5 + parent: 2 + - uid: 15861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,3.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -55.5,-40.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-41.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: -54.5,-39.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,2.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-51.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,2.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 6535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 9047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-60.5 + parent: 2 + - uid: 11038 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 2 + - uid: 11039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-62.5 + parent: 2 + - uid: 11386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-55.5 + parent: 2 + - uid: 11481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-55.5 + parent: 2 + - uid: 11633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-60.5 + parent: 2 + - uid: 11634 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 + - uid: 11635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-62.5 + parent: 2 + - uid: 11877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-62.5 + parent: 2 + - uid: 11886 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 12374 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13836 + components: + - type: Transform + pos: 15.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-59.5 + parent: 2 + - uid: 13883 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 15940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21578 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21908 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21993 + components: + - type: Transform + pos: 28.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22383 + components: + - type: Transform + pos: 32.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22410 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22435 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22505 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22941 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22968 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23265 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24858 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24867 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24869 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24881 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24941 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24963 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24985 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24990 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24992 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24999 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25288 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25422 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25449 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25749 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25764 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25892 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25916 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25929 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25934 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25965 + components: + - type: Transform + pos: -59.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26189 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26201 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26204 + components: + - type: Transform + pos: -62.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26211 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26219 + components: + - type: Transform + pos: -68.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26259 + components: + - type: Transform + pos: -79.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26283 + components: + - type: Transform + pos: -84.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26310 + components: + - type: Transform + pos: -91.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26422 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26449 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26487 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26546 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26616 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26641 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26657 + components: + - type: Transform + pos: 33.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26686 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26766 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26796 + components: + - type: Transform + pos: 47.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26809 + components: + - type: Transform + pos: 44.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27003 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27019 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27059 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27113 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27146 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27171 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27189 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27195 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27227 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27252 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27265 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27276 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27292 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27297 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27340 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27395 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27581 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27640 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27643 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27648 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27658 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27677 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27734 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27789 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27803 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27813 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27817 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27828 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27835 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27868 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27907 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,28.5 + parent: 2 + - uid: 27932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27974 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27997 + components: + - type: Transform + pos: 50.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28007 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28045 + components: + - type: Transform + pos: -72.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28049 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28054 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28135 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28139 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28201 + components: + - type: Transform + pos: -66.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28234 + components: + - type: Transform + pos: -66.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28582 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28585 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28653 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28712 + components: + - type: Transform + pos: -24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28738 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28760 + components: + - type: Transform + pos: -22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28773 + components: + - type: Transform + pos: -24.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28824 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28838 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28844 + components: + - type: Transform + pos: -30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28855 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29156 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29197 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29208 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29437 + components: + - type: Transform + pos: -70.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29463 + components: + - type: Transform + pos: -30.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29470 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29471 + components: + - type: Transform + pos: -31.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29477 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29529 + components: + - type: Transform + pos: -50.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29552 + components: + - type: Transform + pos: -43.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29719 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29796 + components: + - type: Transform + pos: -74.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29815 + components: + - type: Transform + pos: -73.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29842 + components: + - type: Transform + pos: -58.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29882 + components: + - type: Transform + pos: -67.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29898 + components: + - type: Transform + pos: -71.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29911 + components: + - type: Transform + pos: -54.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 29963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 30134 + components: + - type: Transform + pos: 35.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30182 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,1.5 + parent: 2 + - uid: 30816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,1.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 12153 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + pos: -12.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13632 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 14517 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16158 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21298 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22377 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22635 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22722 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25462 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25467 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25500 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25947 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26235 + components: + - type: Transform + pos: -78.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26354 + components: + - type: Transform + pos: -92.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26417 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26939 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27091 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27303 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27372 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27761 + components: + - type: Transform + pos: -28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28724 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29166 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 48 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 49 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 103 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 1407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2862 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 2993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-39.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-39.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-39.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-1.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-2.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,0.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,1.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,2.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,3.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,4.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,5.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,6.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,6.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,4.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-3.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 6501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 6561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 7143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 7956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-60.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + pos: 31.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 9509 + components: + - type: Transform + pos: -14.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 10864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-61.5 + parent: 2 + - uid: 11029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-60.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-60.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-60.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-60.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-60.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-60.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-60.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 + parent: 2 + - uid: 11040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-62.5 + parent: 2 + - uid: 11041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-62.5 + parent: 2 + - uid: 11042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-62.5 + parent: 2 + - uid: 11043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-62.5 + parent: 2 + - uid: 11044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-61.5 + parent: 2 + - uid: 11050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-59.5 + parent: 2 + - uid: 11063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-58.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-57.5 + parent: 2 + - uid: 11233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-56.5 + parent: 2 + - uid: 11236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-55.5 + parent: 2 + - uid: 11237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-54.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-53.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-59.5 + parent: 2 + - uid: 11631 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - uid: 11632 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 + - uid: 11799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-61.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-62.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-62.5 + parent: 2 + - uid: 11878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-61.5 + parent: 2 + - uid: 11879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-60.5 + parent: 2 + - uid: 11880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-54.5 + parent: 2 + - uid: 12336 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 12375 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - uid: 12478 + components: + - type: Transform + anchored: False + pos: 23.5,-54.5 + parent: 2 + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 12684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-51.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13629 + components: + - type: Transform + pos: -12.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13633 + components: + - type: Transform + pos: -14.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13681 + components: + - type: Transform + pos: -14.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13683 + components: + - type: Transform + pos: -14.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13691 + components: + - type: Transform + pos: -10.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13722 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13846 + components: + - type: Transform + pos: 10.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13847 + components: + - type: Transform + pos: 10.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13848 + components: + - type: Transform + pos: 15.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13849 + components: + - type: Transform + pos: 15.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13850 + components: + - type: Transform + pos: 10.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13851 + components: + - type: Transform + pos: 10.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13852 + components: + - type: Transform + pos: 15.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-59.5 + parent: 2 + - uid: 13881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-59.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 13885 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 13886 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: -19.5,-77.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: -19.5,-78.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: -19.5,-79.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + pos: -17.5,-77.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + pos: -17.5,-78.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: -17.5,-79.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-49.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-49.5 + parent: 2 + - uid: 15865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-49.5 + parent: 2 + - uid: 15866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-51.5 + parent: 2 + - uid: 15868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-53.5 + parent: 2 + - uid: 15870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-53.5 + parent: 2 + - uid: 15871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-55.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-55.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-55.5 + parent: 2 + - uid: 15877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-57.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-57.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-57.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-59.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-59.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-59.5 + parent: 2 + - uid: 15883 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 15886 + components: + - type: Transform + pos: -3.5,-64.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 15889 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 15891 + components: + - type: Transform + pos: -1.5,-64.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 + - uid: 15896 + components: + - type: Transform + pos: 2.5,-62.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 2 + - uid: 15898 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 2 + - uid: 15899 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 15900 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 15901 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 15902 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16187 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 19527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20741 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21146 + components: + - type: Transform + pos: 31.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21344 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21345 + components: + - type: Transform + pos: 20.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21346 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21357 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21388 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21580 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21581 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21585 + components: + - type: Transform + pos: 20.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21586 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21587 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21824 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21825 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21826 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21894 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21895 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21896 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21897 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21898 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21899 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21900 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21901 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21902 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21909 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21910 + components: + - type: Transform + pos: 17.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21911 + components: + - type: Transform + pos: 17.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21912 + components: + - type: Transform + pos: 17.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21995 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21996 + components: + - type: Transform + pos: 28.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21998 + components: + - type: Transform + pos: 28.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21999 + components: + - type: Transform + pos: 28.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22001 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22002 + components: + - type: Transform + pos: 28.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22005 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22006 + components: + - type: Transform + pos: 27.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22007 + components: + - type: Transform + pos: 27.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22008 + components: + - type: Transform + pos: 27.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22237 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22238 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22239 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22244 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22378 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22379 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22380 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22381 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22382 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22384 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22436 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22719 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22737 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22744 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22749 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22750 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22752 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22799 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22800 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22801 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22802 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22803 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22804 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22973 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23025 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24882 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24887 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24888 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24889 + components: + - type: Transform + anchored: False + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 24891 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24892 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25021 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25022 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25023 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25024 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25025 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25026 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25089 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25090 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25092 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25145 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25158 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25222 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25223 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25260 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25261 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25262 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25266 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25267 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25268 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25328 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25334 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25356 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25413 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25417 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25418 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25419 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25420 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25421 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25450 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25451 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25452 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25453 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25454 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25455 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25460 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 25461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25463 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25464 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25465 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25466 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25468 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25469 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25488 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25489 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25490 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25491 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25492 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25493 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25494 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25495 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25525 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25526 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25527 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25529 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25530 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25531 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25532 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25533 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25534 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25535 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25536 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25537 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25622 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25623 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25624 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25637 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25701 + components: + - type: Transform + pos: -45.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25702 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25703 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25733 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25750 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25751 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25752 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25753 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25754 + components: + - type: Transform + pos: -27.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25765 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25766 + components: + - type: Transform + pos: -23.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25779 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25780 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25790 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25791 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25794 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25795 + components: + - type: Transform + pos: -38.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25797 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25798 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25799 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25857 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25858 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25859 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25860 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25861 + components: + - type: Transform + pos: -45.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25862 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25863 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25864 + components: + - type: Transform + pos: -45.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25865 + components: + - type: Transform + pos: -45.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25899 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25900 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25905 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25906 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25907 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25908 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25909 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25913 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25914 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25933 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 25936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25954 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25955 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26052 + components: + - type: Transform + pos: -68.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26053 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26054 + components: + - type: Transform + pos: -68.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26057 + components: + - type: Transform + pos: -67.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26106 + components: + - type: Transform + pos: -50.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26107 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26108 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26137 + components: + - type: Transform + pos: -51.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26138 + components: + - type: Transform + pos: -51.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26139 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26160 + components: + - type: Transform + pos: -52.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26161 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26162 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26163 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26164 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26165 + components: + - type: Transform + pos: -52.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26166 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26212 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26220 + components: + - type: Transform + pos: -70.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26245 + components: + - type: Transform + pos: -81.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26252 + components: + - type: Transform + pos: -82.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26253 + components: + - type: Transform + pos: -82.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26276 + components: + - type: Transform + pos: -86.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26277 + components: + - type: Transform + pos: -86.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26278 + components: + - type: Transform + pos: -86.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26279 + components: + - type: Transform + pos: -86.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -85.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -91.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -94.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -90.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -90.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26412 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26416 + components: + - type: Transform + pos: -23.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26441 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26443 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26481 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26482 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26483 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26547 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26548 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26549 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26550 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26554 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26586 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26587 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26588 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26597 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26598 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26599 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26607 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26608 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26609 + components: + - type: Transform + pos: 30.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26610 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26611 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26612 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26613 + components: + - type: Transform + pos: 30.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26618 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26619 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26620 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26621 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26622 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26623 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26624 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26625 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26626 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26627 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26628 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26629 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26630 + components: + - type: Transform + pos: 31.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26650 + components: + - type: Transform + pos: 33.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26659 + components: + - type: Transform + pos: 31.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26660 + components: + - type: Transform + pos: 31.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26661 + components: + - type: Transform + pos: 32.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26663 + components: + - type: Transform + pos: 32.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26752 + components: + - type: Transform + pos: 42.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26753 + components: + - type: Transform + pos: 42.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26765 + components: + - type: Transform + pos: 42.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26769 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26770 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26789 + components: + - type: Transform + pos: 42.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26790 + components: + - type: Transform + pos: 42.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26797 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26798 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26805 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26806 + components: + - type: Transform + pos: 43.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26813 + components: + - type: Transform + pos: 42.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26814 + components: + - type: Transform + pos: 42.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26815 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26823 + components: + - type: Transform + pos: 48.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26940 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26941 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26955 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26956 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26957 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26958 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26959 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26960 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26961 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26971 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26996 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27005 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27006 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27009 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27010 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27026 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27027 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27037 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27038 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27039 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27054 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27055 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27056 + components: + - type: Transform + pos: 37.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27060 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27061 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27085 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27086 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27087 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27088 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27089 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27090 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27092 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27101 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27103 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27110 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27114 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27115 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27119 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27121 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27122 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27123 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27138 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27139 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27147 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27148 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27149 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27150 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27172 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27182 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27183 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27184 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27185 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27190 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-55.5 + parent: 2 + - uid: 27218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-55.5 + parent: 2 + - uid: 27219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-55.5 + parent: 2 + - uid: 27220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-54.5 + parent: 2 + - uid: 27221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-53.5 + parent: 2 + - uid: 27222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-52.5 + parent: 2 + - uid: 27223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27246 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27247 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27248 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27249 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27260 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27268 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27269 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27270 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27289 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27290 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27291 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27336 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27337 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27338 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27348 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27362 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27375 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27376 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27377 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-51.5 + parent: 2 + - uid: 27399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27404 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27424 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27425 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27426 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27427 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27428 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27464 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27465 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27466 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27483 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27547 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 27548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27575 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27582 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27583 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27584 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27590 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27604 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27605 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27606 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27613 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27614 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27619 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27620 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27625 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27626 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27630 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27631 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27632 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27690 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27691 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27692 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27693 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27694 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27695 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27696 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27697 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27698 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27699 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27700 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27701 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27702 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27703 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27704 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27705 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27706 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27707 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27708 + components: + - type: Transform + pos: -4.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27709 + components: + - type: Transform + pos: -4.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27710 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27711 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27712 + components: + - type: Transform + pos: -4.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27713 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27714 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27715 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27716 + components: + - type: Transform + pos: -4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27717 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27726 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27727 + components: + - type: Transform + pos: -4.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27728 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27729 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27731 + components: + - type: Transform + pos: -4.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27732 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27733 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27739 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27740 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27741 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27742 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27752 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27753 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27754 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27788 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27794 + components: + - type: Transform + pos: -18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27795 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27852 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27863 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27864 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27865 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27866 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27867 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27887 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27888 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27889 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27896 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27897 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27898 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27910 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27911 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27912 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27914 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27915 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27919 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 27933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27943 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27944 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27945 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27965 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27966 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27967 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27998 + components: + - type: Transform + pos: 50.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27999 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28000 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28008 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28009 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28010 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-51.5 + parent: 2 + - uid: 28013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 + - uid: 28040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28070 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28071 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28084 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28136 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28573 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28575 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28577 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28597 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28598 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28599 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28600 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28601 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28602 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28603 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28604 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28605 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28609 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28610 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28611 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28612 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28613 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28627 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28628 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28629 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28642 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28643 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28644 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28645 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28646 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28647 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28650 + components: + - type: Transform + anchored: False + rot: 1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 28651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28678 + components: + - type: Transform + pos: -25.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28685 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28686 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28697 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28698 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28699 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28714 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28717 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28718 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28719 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28725 + components: + - type: Transform + pos: -25.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28727 + components: + - type: Transform + pos: -25.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28756 + components: + - type: Transform + pos: -22.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28757 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28758 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28759 + components: + - type: Transform + pos: -22.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,18.5 + parent: 2 + - uid: 28769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28770 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28771 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28772 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28784 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28785 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28786 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28787 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28788 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28794 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28801 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28802 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28803 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28843 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28852 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28853 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28854 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29139 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29140 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29141 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29142 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29161 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29174 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29175 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29176 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29216 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29217 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29218 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29219 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29229 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29230 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29231 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29242 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29243 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29244 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29245 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29284 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29285 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29301 + components: + - type: Transform + pos: -61.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29302 + components: + - type: Transform + pos: -61.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29303 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29304 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29310 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29312 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29313 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29339 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29341 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29361 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29365 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29422 + components: + - type: Transform + pos: -67.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29423 + components: + - type: Transform + pos: -67.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29424 + components: + - type: Transform + pos: -67.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29425 + components: + - type: Transform + pos: -67.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29426 + components: + - type: Transform + pos: -67.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29427 + components: + - type: Transform + pos: -67.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29433 + components: + - type: Transform + pos: -71.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29442 + components: + - type: Transform + pos: -70.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29443 + components: + - type: Transform + pos: -70.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29472 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29641 + components: + - type: Transform + pos: -54.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29643 + components: + - type: Transform + pos: -54.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29644 + components: + - type: Transform + pos: -54.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29651 + components: + - type: Transform + pos: -55.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29652 + components: + - type: Transform + pos: -55.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29653 + components: + - type: Transform + pos: -55.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29654 + components: + - type: Transform + pos: -54.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29655 + components: + - type: Transform + pos: -54.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29656 + components: + - type: Transform + pos: -55.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29657 + components: + - type: Transform + pos: -55.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29688 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: -56.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - type: Physics + canCollide: True + bodyType: Dynamic + - uid: 29689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29699 + components: + - type: Transform + pos: -58.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29706 + components: + - type: Transform + pos: -62.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29730 + components: + - type: Transform + pos: -71.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29731 + components: + - type: Transform + pos: -71.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29793 + components: + - type: Transform + pos: -75.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29794 + components: + - type: Transform + pos: -75.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29801 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29819 + components: + - type: Transform + pos: -75.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29820 + components: + - type: Transform + pos: -75.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29821 + components: + - type: Transform + pos: -75.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29827 + components: + - type: Transform + pos: -67.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29828 + components: + - type: Transform + pos: -67.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29829 + components: + - type: Transform + pos: -67.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29834 + components: + - type: Transform + pos: -54.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29843 + components: + - type: Transform + pos: -58.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29853 + components: + - type: Transform + pos: -56.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29854 + components: + - type: Transform + pos: -56.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29855 + components: + - type: Transform + pos: -54.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29856 + components: + - type: Transform + pos: -56.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29857 + components: + - type: Transform + pos: -54.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29858 + components: + - type: Transform + pos: -54.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29905 + components: + - type: Transform + pos: -79.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29907 + components: + - type: Transform + pos: -79.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29912 + components: + - type: Transform + pos: -54.5,62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 30131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30138 + components: + - type: Transform + pos: 35.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30139 + components: + - type: Transform + pos: 35.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,1.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 1615 + components: + - type: Transform + pos: -67.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 2549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,3.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,3.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,3.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 5193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,2.5 + parent: 2 + - uid: 10865 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 11801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,3.5 + parent: 2 + - uid: 12150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-52.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 13631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 13833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 15071 + components: + - type: Transform + pos: 37.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15676 + components: + - type: Transform + pos: -70.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18024 + components: + - type: Transform + pos: -69.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21187 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21555 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21569 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21827 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22315 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22346 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22425 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22428 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22853 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22889 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24857 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25144 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25275 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25353 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25414 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25434 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25517 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25619 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25732 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25735 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25784 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25855 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25910 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25961 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25972 + components: + - type: Transform + pos: -62.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26051 + components: + - type: Transform + pos: -68.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26056 + components: + - type: Transform + pos: -67.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26097 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26104 + components: + - type: Transform + pos: -52.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26242 + components: + - type: Transform + pos: -81.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26274 + components: + - type: Transform + pos: -86.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -92.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26301 + components: + - type: Transform + pos: -90.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -95.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26365 + components: + - type: Transform + pos: -92.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26479 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26553 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26596 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26791 + components: + - type: Transform + pos: 43.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27052 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27168 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27180 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27232 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27250 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27262 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27267 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27361 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27421 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27459 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27474 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27495 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27557 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27562 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27592 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27622 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27751 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27775 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27846 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,28.5 + parent: 2 + - uid: 27927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,28.5 + parent: 2 + - uid: 27939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27991 + components: + - type: Transform + pos: 51.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-55.5 + parent: 2 + - uid: 28041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28066 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28076 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28077 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28078 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28095 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28104 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28107 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28119 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28238 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28242 + components: + - type: Transform + pos: -75.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28634 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28641 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28689 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28694 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29167 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29215 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29273 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29328 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29355 + components: + - type: Transform + pos: -54.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29393 + components: + - type: Transform + pos: -62.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29440 + components: + - type: Transform + pos: -70.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29445 + components: + - type: Transform + pos: -71.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29678 + components: + - type: Transform + pos: -55.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29698 + components: + - type: Transform + pos: -58.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29704 + components: + - type: Transform + pos: -62.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29711 + components: + - type: Transform + pos: -63.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29725 + components: + - type: Transform + pos: -68.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29729 + components: + - type: Transform + pos: -71.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29808 + components: + - type: Transform + pos: -74.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29836 + components: + - type: Transform + pos: -55.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29849 + components: + - type: Transform + pos: -56.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29852 + components: + - type: Transform + pos: -59.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30286 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 1395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-57.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: 26.5,-51.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-40.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-41.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-1.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-0.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,2.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + pos: -19.5,-75.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + pos: -17.5,-75.5 + parent: 2 + - uid: 16963 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,32.5 + parent: 2 + - uid: 18519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18667 + components: + - type: Transform + pos: -76.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30287 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 30288 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 2458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-57.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 48.5,5.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 14749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 14750 + components: + - type: Transform + pos: -15.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 15072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 15634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-76.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: -19.5,-76.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-49.5 + parent: 2 + - uid: 15813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-53.5 + parent: 2 + - uid: 15814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-57.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-61.5 + parent: 2 + - uid: 15821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-61.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-61.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-59.5 + parent: 2 + - uid: 15824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-55.5 + parent: 2 + - uid: 15825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-51.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-61.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27720 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27931 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasThermoMachineFreezer + entities: + - uid: 3032 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-53.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-61.5 + parent: 2 + - uid: 17893 + components: + - type: Transform + pos: 28.5,29.5 + parent: 2 + - uid: 27379 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 3037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 3040 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,3.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-56.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasThermoMachineHellfireFreezer + entities: + - uid: 10237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-53.5 + parent: 2 +- proto: GasValve + entities: + - uid: 3044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-40.5 + parent: 2 + - type: GasValve + open: False + - uid: 3045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-2.5 + parent: 2 + - type: GasValve + open: False + - uid: 3046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 2 + - type: GasValve + open: False + - uid: 17892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 23181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-61.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVentPump + entities: + - uid: 2845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3047 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3048 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3054 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 3066 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 + - uid: 10870 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 10889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-62.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 13653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 15743 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 16189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17725 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 17726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 18022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 21120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22266 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22450 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22528 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22587 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22739 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22972 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23065 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23097 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 24901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25066 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25245 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25341 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25366 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25480 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25512 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25559 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25584 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25585 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25591 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25592 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25593 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25677 + components: + - type: Transform + pos: -44.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25715 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25782 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25807 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25904 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25927 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2487 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26000 + components: + - type: Transform + pos: -55.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26066 + components: + - type: Transform + pos: -65.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26172 + components: + - type: Transform + pos: -56.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26254 + components: + - type: Transform + pos: -82.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -95.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26491 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26638 + components: + - type: Transform + pos: 35.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26639 + components: + - type: Transform + pos: 41.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26764 + components: + - type: Transform + pos: 48.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26833 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26867 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26868 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26954 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26982 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 26989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27030 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27036 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27084 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27095 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27102 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27305 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27334 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27369 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27374 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27452 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27488 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27603 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27612 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27621 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27636 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 + - uid: 27669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,37.5 + parent: 2 + - uid: 27725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27787 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27851 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27873 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27928 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 27929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 + - uid: 27951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27963 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27964 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28069 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28434 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28574 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 28761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29206 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29314 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29320 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29345 + components: + - type: Transform + pos: -47.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29369 + components: + - type: Transform + pos: -51.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29451 + components: + - type: Transform + pos: -75.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29682 + components: + - type: Transform + pos: -54.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29874 + components: + - type: Transform + pos: -62.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29908 + components: + - type: Transform + pos: -79.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 29916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 30196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 1974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3067 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3069 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 3076 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-4.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 8612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13655 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 13656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-65.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15941 + components: + - type: Transform + pos: -68.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 15942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 16584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 17719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 18025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21228 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21516 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-59.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 73 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22297 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22298 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22738 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22971 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23297 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2487 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 24954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25327 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25459 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25487 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25511 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25586 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25587 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25588 + components: + - type: Transform + pos: -39.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25589 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25590 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26006 + components: + - type: Transform + pos: -60.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26065 + components: + - type: Transform + pos: -69.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26236 + components: + - type: Transform + pos: -78.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26345 + components: + - type: Transform + pos: -95.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26751 + components: + - type: Transform + pos: 46.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26856 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26946 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27140 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27293 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27321 + components: + - type: Transform + pos: 47.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27347 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27393 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27644 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27737 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27738 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27909 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28696 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28703 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28776 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 28863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29292 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29693 + components: + - type: Transform + pos: -59.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29739 + components: + - type: Transform + pos: -75.5,59.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 29873 + components: + - type: Transform + pos: -63.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 30195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' +- proto: GasVolumePump + entities: + - uid: 11045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-62.5 + parent: 2 + - uid: 11630 + components: + - type: Transform + pos: 22.5,-58.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-62.5 + parent: 2 +- proto: Gateway + entities: + - uid: 3077 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 +- proto: Gauze + entities: + - uid: 3078 + components: + - type: Transform + pos: -40.34854,7.4475183 + parent: 2 + - uid: 18460 + components: + - type: Transform + pos: -70.578125,6.474407 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 3079 + components: + - type: Transform + pos: -7.703274,11.634326 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 15.517139,-61.4274 + parent: 2 +- proto: Girder + entities: + - uid: 3081 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -57.5,-43.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + pos: 35.5,30.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: -48.5,17.5 + parent: 2 + - uid: 15715 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 15718 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 15720 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 15721 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 15722 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 15724 + components: + - type: Transform + pos: -21.5,21.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -20.5,15.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 16154 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 16167 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 16265 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 2 + - uid: 16266 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 2 + - uid: 16274 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - uid: 16283 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 16294 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 16295 + components: + - type: Transform + pos: -51.5,-51.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + pos: -53.5,-44.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 16362 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 16363 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 16410 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 16412 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 + - uid: 17502 + components: + - type: Transform + pos: 34.5,-73.5 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: 32.5,-68.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 17762 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 2 + - uid: 17770 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 17771 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 17847 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 18076 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 18392 + components: + - type: Transform + pos: -61.5,-39.5 + parent: 2 + - uid: 18427 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 + - uid: 18433 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - uid: 18455 + components: + - type: Transform + pos: -71.5,6.5 + parent: 2 + - uid: 18506 + components: + - type: Transform + pos: -70.5,-1.5 + parent: 2 + - uid: 18557 + components: + - type: Transform + pos: -60.5,-9.5 + parent: 2 + - uid: 18589 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 18616 + components: + - type: Transform + pos: -64.5,-13.5 + parent: 2 + - uid: 18641 + components: + - type: Transform + pos: -74.5,-20.5 + parent: 2 + - uid: 18644 + components: + - type: Transform + pos: -68.5,-19.5 + parent: 2 + - uid: 18677 + components: + - type: Transform + pos: -63.5,-33.5 + parent: 2 + - uid: 18693 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 18722 + components: + - type: Transform + pos: -69.5,-28.5 + parent: 2 + - uid: 18922 + components: + - type: Transform + pos: -67.5,-27.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: 31.5,-42.5 + parent: 2 +- proto: GlowstickBase + entities: + - uid: 15838 + components: + - type: Transform + parent: 15837 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17559 + components: + - type: Transform + pos: 50.4657,7.517844 + parent: 2 +- proto: GlowstickBlue + entities: + - uid: 18787 + components: + - type: Transform + pos: -71.53505,5.5336165 + parent: 2 +- proto: GlowstickPurple + entities: + - uid: 15951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.520565,12.490163 + parent: 2 +- proto: GlowstickRed + entities: + - uid: 20862 + components: + - type: Transform + pos: 31.504932,-71.53523 + parent: 2 +- proto: Gohei + entities: + - uid: 3083 + components: + - type: Transform + pos: 11.5632515,-21.520805 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 3084 + components: + - type: Transform + pos: 39.5,-61.5 + parent: 2 +- proto: GrenadeFlashBang + entities: + - uid: 3085 + components: + - type: Transform + pos: -70.486984,-35.45855 + parent: 2 +- proto: Grille + entities: + - uid: 3052 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,8.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,1.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,1.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,8.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 53.5,16.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: 29.5,34.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: -45.5,19.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: -66.5,-38.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: -87.5,-26.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: -66.5,-37.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: -87.5,-25.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: -69.5,-36.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: -85.5,-32.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -88.5,-32.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: -87.5,-28.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: -87.5,-29.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: -89.5,-32.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: -67.5,-43.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: -73.5,-43.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -71.5,-43.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -70.5,-43.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -68.5,-43.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -74.5,-43.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: -77.5,-43.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -76.5,-43.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -92.5,-24.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -74.5,-36.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: -91.5,-24.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -78.5,-32.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: -75.5,-36.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: -76.5,-36.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: -79.5,-32.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: -75.5,-39.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: -67.5,-36.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: -74.5,-39.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: -95.5,-30.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: -96.5,-30.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: -98.5,-31.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: -97.5,-31.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: -98.5,-33.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: -98.5,-32.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: -97.5,-34.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: -98.5,-34.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: 50.5,-44.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: 47.5,-33.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: 45.5,-33.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: -27.5,-54.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: -25.5,-58.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: -19.5,-57.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: -21.5,-58.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: -40.5,-55.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: -41.5,-55.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: -45.5,-54.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: -46.5,-54.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: -50.5,-52.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: -57.5,-40.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: -57.5,-38.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,0.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: -58.5,-52.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -59.5,-52.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -59.5,-50.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: -58.5,-50.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: -57.5,-47.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: -57.5,-46.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: -57.5,-45.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -61.5,-42.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: -62.5,-42.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: -64.5,-37.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: -64.5,-38.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 14.5,-65.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: -28.5,-69.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -28.5,-71.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -28.5,-73.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: -24.5,-76.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: -20.5,-81.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: -16.5,-81.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: -15.5,-77.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: 41.5,-69.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 40.5,-69.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: 40.5,-67.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: 41.5,-67.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: 32.5,-76.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: 31.5,-75.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: -95.5,-35.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -93.5,-36.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -93.5,-37.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -93.5,-38.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -92.5,-40.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: -91.5,-40.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -90.5,-40.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -86.5,-36.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: -88.5,-36.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: -87.5,-36.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -87.5,-40.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -87.5,-41.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: -85.5,-40.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: -85.5,-41.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: -81.5,-41.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: -89.5,-43.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -89.5,-47.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: -83.5,-43.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -82.5,-44.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: -81.5,-46.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -81.5,-47.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -85.5,-48.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: -86.5,-48.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -87.5,-48.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -89.5,-46.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: -62.5,-31.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -62.5,-29.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: -62.5,-28.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: -61.5,-28.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: -52.5,-22.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: -73.5,-27.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: -73.5,-28.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: -74.5,-28.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -74.5,-30.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: -73.5,-30.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: -73.5,-31.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 3564 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-0.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-44.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-28.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-40.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-49.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-49.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: -23.5,-52.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: -42.5,-59.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: -60.5,-61.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: -63.5,-61.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: -66.5,-61.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: -68.5,-61.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: -69.5,-61.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: -71.5,-61.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: -72.5,-61.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: -74.5,-61.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: -73.5,-59.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: -74.5,-59.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: -71.5,-59.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: -70.5,-59.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: -68.5,-59.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: -67.5,-59.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: -65.5,-59.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: -64.5,-59.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: -79.5,-57.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: -77.5,-59.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: -64.5,-42.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: -65.5,-42.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: -60.5,-39.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: -71.5,-36.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: -72.5,-36.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: -96.5,-25.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: -96.5,-26.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 44.5,-25.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 44.5,-26.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,0.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,3.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,5.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,5.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,3.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,19.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,19.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: -60.5,47.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -59.5,47.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -58.5,47.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: -53.5,46.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -53.5,45.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: -54.5,44.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: -54.5,43.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: -55.5,43.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: -56.5,43.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -57.5,43.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: -58.5,43.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: -59.5,43.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: -60.5,43.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: -61.5,43.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: -62.5,43.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: -63.5,43.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -64.5,43.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: -65.5,43.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: -66.5,43.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: -67.5,43.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -77.5,45.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: -82.5,49.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: -82.5,50.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: -57.5,55.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: -56.5,56.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: -54.5,56.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: -54.5,52.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: -56.5,52.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: -57.5,53.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,63.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,58.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,59.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 38.5,-47.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-58.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: 43.5,-46.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: 62.5,25.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: -7.5,26.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-58.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-58.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-58.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: 43.5,-47.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-63.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 63.5,25.5 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-58.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-58.5 + parent: 2 + - uid: 9478 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 9480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-58.5 + parent: 2 + - uid: 9551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-58.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + pos: 39.5,-46.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-64.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-64.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-66.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-64.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-66.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-64.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-66.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-64.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-58.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-56.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-54.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-52.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-50.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-62.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-58.5 + parent: 2 + - uid: 10995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,55.5 + parent: 2 + - uid: 10996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,54.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,53.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 11060 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - uid: 11065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-58.5 + parent: 2 + - uid: 11071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-58.5 + parent: 2 + - uid: 11072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-58.5 + parent: 2 + - uid: 11081 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 2 + - uid: 11216 + components: + - type: Transform + pos: -56.5,65.5 + parent: 2 + - uid: 11217 + components: + - type: Transform + pos: -57.5,65.5 + parent: 2 + - uid: 11502 + components: + - type: Transform + pos: -70.5,44.5 + parent: 2 + - uid: 11527 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 11532 + components: + - type: Transform + pos: 49.5,-41.5 + parent: 2 + - uid: 11536 + components: + - type: Transform + pos: 50.5,-35.5 + parent: 2 + - uid: 11537 + components: + - type: Transform + pos: 51.5,-35.5 + parent: 2 + - uid: 11538 + components: + - type: Transform + pos: 52.5,-35.5 + parent: 2 + - uid: 11539 + components: + - type: Transform + pos: 53.5,-35.5 + parent: 2 + - uid: 11540 + components: + - type: Transform + pos: 54.5,-35.5 + parent: 2 + - uid: 11541 + components: + - type: Transform + pos: 53.5,-36.5 + parent: 2 + - uid: 11542 + components: + - type: Transform + pos: 53.5,-37.5 + parent: 2 + - uid: 11543 + components: + - type: Transform + pos: 53.5,-38.5 + parent: 2 + - uid: 11544 + components: + - type: Transform + pos: 53.5,-39.5 + parent: 2 + - uid: 11545 + components: + - type: Transform + pos: 51.5,-36.5 + parent: 2 + - uid: 11546 + components: + - type: Transform + pos: 51.5,-37.5 + parent: 2 + - uid: 11547 + components: + - type: Transform + pos: 51.5,-38.5 + parent: 2 + - uid: 11548 + components: + - type: Transform + pos: 51.5,-39.5 + parent: 2 + - uid: 11549 + components: + - type: Transform + pos: 50.5,-39.5 + parent: 2 + - uid: 11550 + components: + - type: Transform + pos: 52.5,-39.5 + parent: 2 + - uid: 11551 + components: + - type: Transform + pos: 54.5,-39.5 + parent: 2 + - uid: 11552 + components: + - type: Transform + pos: 54.5,-41.5 + parent: 2 + - uid: 11553 + components: + - type: Transform + pos: 53.5,-41.5 + parent: 2 + - uid: 11554 + components: + - type: Transform + pos: 52.5,-41.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + pos: 51.5,-41.5 + parent: 2 + - uid: 11556 + components: + - type: Transform + pos: 54.5,-43.5 + parent: 2 + - uid: 11557 + components: + - type: Transform + pos: 53.5,-43.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 52.5,-43.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + pos: 51.5,-43.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: 50.5,-43.5 + parent: 2 + - uid: 11589 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 2 + - uid: 11590 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 2 + - uid: 11591 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 2 + - uid: 11592 + components: + - type: Transform + pos: 51.5,-33.5 + parent: 2 + - uid: 11596 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 + - uid: 11597 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 11602 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 12467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-25.5 + parent: 2 + - uid: 12468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-25.5 + parent: 2 + - uid: 12469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-25.5 + parent: 2 + - uid: 12919 + components: + - type: Transform + pos: -78.5,15.5 + parent: 2 + - uid: 12920 + components: + - type: Transform + pos: -78.5,16.5 + parent: 2 + - uid: 12921 + components: + - type: Transform + pos: -78.5,18.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: -78.5,19.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: -76.5,14.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + pos: -76.5,15.5 + parent: 2 + - uid: 12927 + components: + - type: Transform + pos: -76.5,16.5 + parent: 2 + - uid: 12928 + components: + - type: Transform + pos: -76.5,17.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + pos: -76.5,19.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: -76.5,20.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: -74.5,20.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + pos: -74.5,21.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + pos: -74.5,22.5 + parent: 2 + - uid: 12937 + components: + - type: Transform + pos: -74.5,24.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + pos: -74.5,25.5 + parent: 2 + - uid: 12939 + components: + - type: Transform + pos: -73.5,24.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + pos: -71.5,24.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + pos: -71.5,25.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + pos: -71.5,26.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + pos: -72.5,26.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + pos: -70.5,26.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + pos: -68.5,26.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + pos: -67.5,26.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + pos: -69.5,28.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + pos: -68.5,28.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: -66.5,28.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: -65.5,28.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,52.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: -13.5,-73.5 + parent: 2 + - uid: 13637 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + pos: -13.5,-75.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-64.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-64.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-84.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-84.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-84.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-84.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-84.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-84.5 + parent: 2 + - uid: 13750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-84.5 + parent: 2 + - uid: 13751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-84.5 + parent: 2 + - uid: 13752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-84.5 + parent: 2 + - uid: 13753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-84.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-82.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-81.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-80.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-79.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-77.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-76.5 + parent: 2 + - uid: 13781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-75.5 + parent: 2 + - uid: 13809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-58.5 + parent: 2 + - uid: 13810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-58.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-78.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-78.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-58.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,38.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,37.5 + parent: 2 + - uid: 14700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,39.5 + parent: 2 + - uid: 14709 + components: + - type: Transform + pos: -7.5,23.5 + parent: 2 + - uid: 14710 + components: + - type: Transform + pos: -7.5,25.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: 71.5,12.5 + parent: 2 + - uid: 14835 + components: + - type: Transform + pos: 71.5,13.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: 71.5,14.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: 71.5,15.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + pos: 71.5,16.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 71.5,17.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: 71.5,18.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: 64.5,23.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: 65.5,25.5 + parent: 2 + - uid: 14867 + components: + - type: Transform + pos: 63.5,23.5 + parent: 2 + - uid: 14868 + components: + - type: Transform + pos: 62.5,23.5 + parent: 2 + - uid: 14872 + components: + - type: Transform + pos: 66.5,23.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + pos: 68.5,22.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + pos: 65.5,23.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: 67.5,22.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + pos: -1.5,26.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + pos: -11.5,36.5 + parent: 2 + - uid: 15690 + components: + - type: Transform + pos: -20.5,-75.5 + parent: 2 + - uid: 15691 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 2 + - uid: 15692 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,28.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + pos: -50.5,-54.5 + parent: 2 + - uid: 16181 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 + - uid: 16281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-47.5 + parent: 2 + - uid: 16306 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 16307 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 17687 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 18104 + components: + - type: Transform + pos: -10.5,13.5 + parent: 2 + - uid: 18145 + components: + - type: Transform + pos: -18.5,21.5 + parent: 2 + - uid: 18213 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 18214 + components: + - type: Transform + pos: -42.5,20.5 + parent: 2 + - uid: 18215 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 18216 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 18217 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 18218 + components: + - type: Transform + pos: -38.5,22.5 + parent: 2 + - uid: 18219 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 18220 + components: + - type: Transform + pos: -38.5,24.5 + parent: 2 + - uid: 18221 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 18223 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 18224 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 18225 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 18398 + components: + - type: Transform + pos: -57.5,18.5 + parent: 2 + - uid: 18399 + components: + - type: Transform + pos: -56.5,18.5 + parent: 2 + - uid: 18401 + components: + - type: Transform + pos: -56.5,16.5 + parent: 2 + - uid: 18402 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 18543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-11.5 + parent: 2 + - uid: 18544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-9.5 + parent: 2 + - uid: 18642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,-20.5 + parent: 2 + - uid: 20799 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 20890 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 29563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,53.5 + parent: 2 + - uid: 29564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,53.5 + parent: 2 + - uid: 29565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,52.5 + parent: 2 + - uid: 29566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,51.5 + parent: 2 + - uid: 29626 + components: + - type: Transform + pos: -58.5,41.5 + parent: 2 + - uid: 29627 + components: + - type: Transform + pos: -58.5,39.5 + parent: 2 + - uid: 29628 + components: + - type: Transform + pos: -58.5,38.5 + parent: 2 + - uid: 29629 + components: + - type: Transform + pos: -57.5,38.5 + parent: 2 + - uid: 29630 + components: + - type: Transform + pos: -55.5,38.5 + parent: 2 + - uid: 29631 + components: + - type: Transform + pos: -54.5,38.5 + parent: 2 + - uid: 29632 + components: + - type: Transform + pos: -54.5,37.5 + parent: 2 + - uid: 29633 + components: + - type: Transform + pos: -54.5,34.5 + parent: 2 + - uid: 29634 + components: + - type: Transform + pos: -54.5,33.5 + parent: 2 + - uid: 29635 + components: + - type: Transform + pos: -54.5,32.5 + parent: 2 + - uid: 29636 + components: + - type: Transform + pos: -55.5,31.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 3753 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 15974 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 15976 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 15977 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 15979 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 16168 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 16276 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - uid: 16282 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 16290 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 16364 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 16367 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 16368 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 16445 + components: + - type: Transform + pos: -52.5,-41.5 + parent: 2 + - uid: 17686 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 17688 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 17689 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 17691 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 17692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-5.5 + parent: 2 + - uid: 18101 + components: + - type: Transform + pos: -8.5,18.5 + parent: 2 + - uid: 18105 + components: + - type: Transform + pos: -10.5,14.5 + parent: 2 + - uid: 18113 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 + - uid: 18450 + components: + - type: Transform + pos: -61.5,7.5 + parent: 2 + - uid: 18587 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 18924 + components: + - type: Transform + pos: -65.5,-27.5 + parent: 2 + - uid: 19487 + components: + - type: Transform + pos: -74.5,-22.5 + parent: 2 + - uid: 20545 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 20547 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 20553 + components: + - type: Transform + pos: -53.5,-44.5 + parent: 2 + - uid: 20580 + components: + - type: Transform + pos: -57.5,-43.5 + parent: 2 + - uid: 20581 + components: + - type: Transform + pos: -58.5,-43.5 + parent: 2 + - uid: 20714 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 20721 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 20826 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 20880 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 3759 + components: + - type: Transform + pos: -81.5,-53.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: -81.5,-56.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -79.5,-55.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: -79.5,-54.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: -79.5,-52.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: -79.5,-51.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: -89.5,-36.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: -78.5,17.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: -78.5,14.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: -76.5,18.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: -76.5,13.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: -74.5,23.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + pos: -69.5,26.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + pos: -66.5,26.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + pos: -67.5,28.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + pos: -72.5,24.5 + parent: 2 + - uid: 13754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-84.5 + parent: 2 + - uid: 13755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-84.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-84.5 + parent: 2 + - uid: 13768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-81.5 + parent: 2 + - uid: 13778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-78.5 + parent: 2 + - uid: 13783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-80.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-79.5 + parent: 2 + - uid: 13807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-78.5 + parent: 2 + - uid: 14703 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 14713 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: 67.5,25.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + pos: 70.5,24.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: 69.5,24.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: 71.5,21.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: 68.5,24.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: 71.5,22.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: 71.5,20.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: 64.5,25.5 + parent: 2 + - uid: 14869 + components: + - type: Transform + pos: 67.5,23.5 + parent: 2 + - uid: 14871 + components: + - type: Transform + pos: 70.5,22.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + pos: -7.5,31.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 15507 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + pos: -7.5,27.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + pos: -1.5,25.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: -1.5,33.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + pos: -13.5,35.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + pos: -10.5,36.5 + parent: 2 + - uid: 15538 + components: + - type: Transform + pos: -10.5,31.5 + parent: 2 + - uid: 15539 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 + - uid: 15540 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 15541 + components: + - type: Transform + pos: -13.5,34.5 + parent: 2 + - uid: 15542 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - uid: 15543 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 15544 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + pos: 0.5,39.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: 21.5,28.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-14.5 + parent: 2 + - uid: 16303 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 16381 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 18102 + components: + - type: Transform + pos: -11.5,15.5 + parent: 2 + - uid: 18780 + components: + - type: Transform + pos: -77.5,8.5 + parent: 2 + - uid: 18781 + components: + - type: Transform + pos: -77.5,7.5 + parent: 2 + - uid: 18782 + components: + - type: Transform + pos: -77.5,6.5 + parent: 2 + - uid: 18783 + components: + - type: Transform + pos: -77.5,5.5 + parent: 2 + - uid: 18844 + components: + - type: Transform + pos: -70.5,-1.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - uid: 20539 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 + - uid: 20546 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 20590 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 20591 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 20720 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 29567 + components: + - type: Transform + pos: -45.5,53.5 + parent: 2 + - uid: 29568 + components: + - type: Transform + pos: -46.5,53.5 + parent: 2 + - uid: 29569 + components: + - type: Transform + pos: -46.5,54.5 + parent: 2 + - uid: 29570 + components: + - type: Transform + pos: -46.5,55.5 + parent: 2 + - uid: 29571 + components: + - type: Transform + pos: -48.5,56.5 + parent: 2 + - uid: 29572 + components: + - type: Transform + pos: -49.5,56.5 + parent: 2 + - uid: 29573 + components: + - type: Transform + pos: -47.5,56.5 + parent: 2 + - uid: 29574 + components: + - type: Transform + pos: -46.5,56.5 + parent: 2 + - uid: 29575 + components: + - type: Transform + pos: -43.5,50.5 + parent: 2 + - uid: 29576 + components: + - type: Transform + pos: -42.5,49.5 + parent: 2 + - uid: 29577 + components: + - type: Transform + pos: -41.5,49.5 + parent: 2 + - uid: 29578 + components: + - type: Transform + pos: -39.5,49.5 + parent: 2 + - uid: 29579 + components: + - type: Transform + pos: -40.5,49.5 + parent: 2 + - uid: 29580 + components: + - type: Transform + pos: -39.5,48.5 + parent: 2 + - uid: 29581 + components: + - type: Transform + pos: -39.5,46.5 + parent: 2 + - uid: 29582 + components: + - type: Transform + pos: -39.5,47.5 + parent: 2 + - uid: 29583 + components: + - type: Transform + pos: -41.5,45.5 + parent: 2 + - uid: 29584 + components: + - type: Transform + pos: -40.5,45.5 + parent: 2 + - uid: 29585 + components: + - type: Transform + pos: -39.5,45.5 + parent: 2 + - uid: 29586 + components: + - type: Transform + pos: -39.5,44.5 + parent: 2 + - uid: 29587 + components: + - type: Transform + pos: -39.5,42.5 + parent: 2 + - uid: 29588 + components: + - type: Transform + pos: -39.5,40.5 + parent: 2 + - uid: 29589 + components: + - type: Transform + pos: -39.5,43.5 + parent: 2 + - uid: 29590 + components: + - type: Transform + pos: -41.5,42.5 + parent: 2 + - uid: 29591 + components: + - type: Transform + pos: -40.5,42.5 + parent: 2 + - uid: 29592 + components: + - type: Transform + pos: -39.5,41.5 + parent: 2 + - uid: 29593 + components: + - type: Transform + pos: -39.5,39.5 + parent: 2 + - uid: 29594 + components: + - type: Transform + pos: -39.5,38.5 + parent: 2 + - uid: 29595 + components: + - type: Transform + pos: -34.5,38.5 + parent: 2 + - uid: 29596 + components: + - type: Transform + pos: -40.5,38.5 + parent: 2 + - uid: 29597 + components: + - type: Transform + pos: -41.5,38.5 + parent: 2 + - uid: 29598 + components: + - type: Transform + pos: -35.5,38.5 + parent: 2 + - uid: 29599 + components: + - type: Transform + pos: -36.5,38.5 + parent: 2 + - uid: 29600 + components: + - type: Transform + pos: -37.5,38.5 + parent: 2 + - uid: 29601 + components: + - type: Transform + pos: -38.5,38.5 + parent: 2 + - uid: 29602 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 29603 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 29604 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 29605 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 29606 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - uid: 29607 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 29608 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 + - uid: 29609 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - uid: 29637 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 29638 + components: + - type: Transform + pos: -54.5,36.5 + parent: 2 + - uid: 29639 + components: + - type: Transform + pos: -56.5,38.5 + parent: 2 + - uid: 29640 + components: + - type: Transform + pos: -58.5,40.5 + parent: 2 + - uid: 29658 + components: + - type: Transform + pos: -56.5,68.5 + parent: 2 + - uid: 29659 + components: + - type: Transform + pos: -55.5,68.5 + parent: 2 + - uid: 29660 + components: + - type: Transform + pos: -54.5,68.5 + parent: 2 + - uid: 29661 + components: + - type: Transform + pos: -53.5,68.5 + parent: 2 + - uid: 29662 + components: + - type: Transform + pos: -52.5,68.5 + parent: 2 + - uid: 29663 + components: + - type: Transform + pos: -51.5,68.5 + parent: 2 + - uid: 29664 + components: + - type: Transform + pos: -50.5,68.5 + parent: 2 + - uid: 29665 + components: + - type: Transform + pos: -49.5,68.5 + parent: 2 + - uid: 29666 + components: + - type: Transform + pos: -48.5,68.5 + parent: 2 + - uid: 29667 + components: + - type: Transform + pos: -47.5,68.5 + parent: 2 + - uid: 29668 + components: + - type: Transform + pos: -46.5,68.5 + parent: 2 + - uid: 29669 + components: + - type: Transform + pos: -46.5,67.5 + parent: 2 + - uid: 29670 + components: + - type: Transform + pos: -46.5,66.5 + parent: 2 + - uid: 29671 + components: + - type: Transform + pos: -46.5,65.5 + parent: 2 + - uid: 29672 + components: + - type: Transform + pos: -46.5,64.5 + parent: 2 + - uid: 29673 + components: + - type: Transform + pos: -46.5,63.5 + parent: 2 + - uid: 29674 + components: + - type: Transform + pos: -46.5,62.5 + parent: 2 + - uid: 29675 + components: + - type: Transform + pos: -46.5,60.5 + parent: 2 + - uid: 29676 + components: + - type: Transform + pos: -46.5,59.5 + parent: 2 + - uid: 29677 + components: + - type: Transform + pos: -46.5,58.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 1100 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14786 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1108 + - 1106 + - 1104 + - 1109 + - 1105 + - 1102 + - 1107 + - 1101 + - 1103 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2468 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + missingComponents: + - AccessReader + - uid: 20123 + components: + - type: Transform + pos: -79.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14783 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 20125 + - 20124 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader +- proto: Handcuffs + entities: + - uid: 3768 + components: + - type: Transform + pos: -35.47496,1.5675664 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: -19.439404,-54.464073 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: -25.513664,-49.449688 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: -38.436077,-15.418693 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: -53.486885,-38.336334 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: -72.4728,-35.445942 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: -70.53111,-35.433334 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -3.4550886,-14.37287 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 37.515583,-0.45770407 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: 39.530544,-41.46416 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: 45.529823,-30.438921 + parent: 2 + - uid: 18175 + components: + - type: Transform + pos: -19.55078,24.458258 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 3777 + components: + - type: Transform + pos: 5.4734077,-25.357151 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: 43.475597,-9.444438 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 34.33037,-10.230054 + parent: 2 +- proto: HandheldHealthAnalyzer + entities: + - uid: 3780 + components: + - type: Transform + pos: -40.525566,10.556132 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: -43.52304,9.501132 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: -43.031723,-6.1890197 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 1.481081,-15.436701 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 23.51255,11.561686 + parent: 2 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 3786 + components: + - type: Transform + pos: -40.535023,-38.42917 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: -32.477924,-14.589077 + parent: 2 + - uid: 18458 + components: + - type: Transform + pos: -69.453125,6.474407 + parent: 2 +- proto: HandheldStationMap + entities: + - uid: 1741 + components: + - type: Transform + parent: 1734 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.450443,-3.3916168 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: -40.52118,-52.379593 + parent: 2 +- proto: HandheldStationMapUnpowered + entities: + - uid: 3790 + components: + - type: Transform + pos: -54.44423,-37.400684 + parent: 2 +- proto: HandLabeler + entities: + - uid: 3791 + components: + - type: Transform + pos: 10.56806,10.432092 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: 21.531036,-35.4201 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: 4.473189,-14.444576 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 3.6031804,-25.621603 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: -12.500055,-2.6175723 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -7.4088745,-11.457263 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 17.542793,-48.456284 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: -15.462999,-36.46254 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: -38.48248,-37.464394 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -28.358343,-39.500256 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: -46.48379,9.505128 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: -19.56196,-12.143262 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: -19.353922,-12.489991 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: -36.546497,-9.544514 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 15.5305805,-2.45619 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 33.566666,-2.3765333 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 43.491222,-9.475688 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 27.567127,-24.500483 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 33.534363,-21.470032 + parent: 2 + - uid: 10816 + components: + - type: Transform + pos: -4.449051,-54.561005 + parent: 2 + - uid: 18143 + components: + - type: Transform + parent: 18139 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18611 + components: + - type: Transform + pos: -62.470848,-10.437921 + parent: 2 +- proto: HarmonicaInstrument + entities: + - uid: 3810 + components: + - type: Transform + pos: -93.45588,-34.44332 + parent: 2 +- proto: HarpInstrument + entities: + - uid: 11474 + components: + - type: Transform + pos: -70.5,52.5 + parent: 2 +- proto: HeadBorgService + entities: + - uid: 11222 + components: + - type: Transform + parent: 11220 + - type: Physics + canCollide: False +- proto: HeadHuman + entities: + - uid: 4950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.966343,23.865236 + parent: 2 + - uid: 12142 + components: + - type: Transform + pos: -85.726494,48.997528 + parent: 2 +- proto: HeadMoth + entities: + - uid: 18169 + components: + - type: MetaData + name: череп + - type: Transform + pos: -21.472654,24.005133 + parent: 2 +- proto: HeadSkeleton + entities: + - uid: 13670 + components: + - type: Transform + pos: 20.503607,20.49641 + parent: 2 +- proto: HeadVox + entities: + - uid: 3811 + components: + - type: Transform + pos: -39.52521,-30.71747 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 13814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 13831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: Hemostat + entities: + - uid: 3812 + components: + - type: Transform + pos: -42.662975,-6.5105324 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 171 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 3813 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 15742 + components: + - type: Transform + pos: -8.411914,-67.55948 + parent: 2 +- proto: Holoprojector + entities: + - uid: 3819 + components: + - type: Transform + pos: -9.54272,-3.6231241 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 3820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 + - type: Door + secondsUntilStateChange: -411753 + state: Opening + - uid: 10725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -75.5,47.5 + parent: 2 + - uid: 10906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,48.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + pos: -77.5,59.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 3822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,10.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,10.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: -82.5,-36.5 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 3829 + components: + - type: Transform + pos: -85.5,-44.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: -88.5,-46.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: -88.5,-47.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: -87.5,-47.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -85.5,-47.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: -87.5,-44.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: -85.5,-46.5 + parent: 2 + - uid: 11176 + components: + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 11178 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 11179 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 + - uid: 11180 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 11181 + components: + - type: Transform + pos: -18.5,8.5 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 3836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.270424,-46.710915 + parent: 2 + - uid: 3837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -88.395424,-47.72654 + parent: 2 + - uid: 11184 + components: + - type: Transform + pos: -14.4173975,9.314104 + parent: 2 + - uid: 11185 + components: + - type: Transform + pos: -14.430006,7.678111 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 3838 + components: + - type: Transform + pos: -88.457924,-46.57029 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: -88.53605,-47.617165 + parent: 2 + - uid: 11182 + components: + - type: Transform + pos: -14.354356,7.649506 + parent: 2 + - uid: 11183 + components: + - type: Transform + pos: -14.385877,9.3582325 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 3840 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 11174 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 11175 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 +- proto: HydroponicsTrayEmpty + entities: + - uid: 3854 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 3856 + components: + - type: Transform + pos: 18.533634,-17.300537 + parent: 2 +- proto: IngotGold + entities: + - uid: 15844 + components: + - type: Transform + pos: 18.540306,20.549063 + parent: 2 +- proto: IntercomAll + entities: + - uid: 3858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-20.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 15276 + components: + - type: Transform + pos: -4.5,55.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 3861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-40.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + pos: -0.5,48.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 15601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 3872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-35.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 11473 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 12177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 12253 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 12465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-23.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,5.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,6.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 13428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-35.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 20908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-73.5 + parent: 2 +- proto: IntercomElectronics + entities: + - uid: 1143 + components: + - type: Transform + parent: 1139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IntercomEngineering + entities: + - uid: 3880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-39.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-49.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-54.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-48.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-42.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-58.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-52.5 + parent: 2 + - uid: 15286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,53.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: 50.5,17.5 + parent: 2 + - uid: 18729 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 20575 + components: + - type: Transform + pos: -55.5,-49.5 + parent: 2 + - uid: 20873 + components: + - type: Transform + pos: 37.5,-66.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 3886 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-9.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-13.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-3.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 3896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-37.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-37.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,5.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,5.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 15285 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 18015 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 18016 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 3905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-1.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-36.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -70.5,-32.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-39.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -93.5,-30.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: -87.5,-42.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-51.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-55.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-48.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-35.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-42.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-33.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-54.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-31.5 + parent: 2 + - uid: 15277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 2 + - uid: 20486 + components: + - type: Transform + pos: -78.5,-14.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 3926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-6.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + pos: -64.5,64.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + pos: -62.5,64.5 + parent: 2 + - uid: 11470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,16.5 + parent: 2 + - uid: 15284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,52.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 3935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-14.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,52.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 3940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 2 + - uid: 18127 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 +- proto: JawsOfLife + entities: + - uid: 3941 + components: + - type: Transform + pos: -10.520139,8.6557255 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 13439 + components: + - type: Transform + parent: 13437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: JetpackMiniFilled + entities: + - uid: 3943 + components: + - type: Transform + pos: 2.429512,-38.157043 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: 2.5713558,-38.4691 + parent: 2 +- proto: KalimbaInstrument + entities: + - uid: 11475 + components: + - type: Transform + pos: -71.50033,60.61282 + parent: 2 +- proto: Katana + entities: + - uid: 3945 + components: + - type: MetaData + desc: Когда-кто ей владел ниндзя, способный предсказывать будующее... + name: катана "нуль" + - type: Transform + pos: -36.424824,-60.5951 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 3946 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 3947 + components: + - type: Transform + pos: 12.423206,-1.3634899 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: 4.4567432,28.40932 + parent: 2 + - uid: 16344 + components: + - type: Transform + pos: -55.417263,-47.56605 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 3948 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: -75.5,-42.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 3955 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 17897 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 3961 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 14.5,-6.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 918 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 919 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.458427,50.974247 + parent: 2 +- proto: KvassTankFull + entities: + - uid: 18708 + components: + - type: Transform + pos: -61.5,-41.5 + parent: 2 + - uid: 18709 + components: + - type: Transform + pos: -61.5,-40.5 + parent: 2 +- proto: Lamp + entities: + - uid: 3963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.476677,-48.26904 + parent: 2 +- proto: LampBanana + entities: + - uid: 12181 + components: + - type: Transform + pos: -80.32995,55.57381 + parent: 2 +- proto: LampGold + entities: + - uid: 20 + components: + - type: Transform + pos: -15.626908,-36.784054 + parent: 2 + - type: HandheldLight + toggleActionEntity: 21 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 21 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 22 + components: + - type: Transform + pos: 36.73573,-10.914295 + parent: 2 + - type: HandheldLight + toggleActionEntity: 23 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 23 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 3964 + components: + - type: Transform + pos: -39.683323,15.843317 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: -19.62866,-21.300316 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: -41.622505,-52.211483 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: -17.45884,-1.4325662 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -20.474022,-2.15597 + parent: 2 + - uid: 3969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.652296,-15.154546 + parent: 2 + - uid: 12182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.43932,55.776936 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 3970 + components: + - type: Transform + pos: -26.544518,-32.366074 + parent: 2 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 3971 + - uid: 12179 + components: + - type: Transform + pos: -81.56432,55.620686 + parent: 2 +- proto: Lantern + entities: + - uid: 3973 + components: + - type: Transform + parent: 3972 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3974 + components: + - type: Transform + pos: -16.313673,-7.4283943 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -56.526142,53.63407 + parent: 2 + - uid: 10755 + components: + - type: Transform + pos: -69.47496,51.675037 + parent: 2 + - uid: 10798 + components: + - type: Transform + pos: -69.7484,48.642467 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: -69.54527,48.454967 + parent: 2 + - uid: 10800 + components: + - type: Transform + pos: -69.29527,48.611217 + parent: 2 + - uid: 11085 + components: + - type: Transform + pos: -69.47524,57.474182 + parent: 2 + - uid: 11113 + components: + - type: Transform + pos: -56.541767,55.44657 + parent: 2 + - uid: 12184 + components: + - type: Transform + pos: -80.2362,54.48006 + parent: 2 + - uid: 12185 + components: + - type: Transform + pos: -81.89245,54.526936 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 3975 + components: + - type: Transform + pos: -32.70268,-6.3807716 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: -54.58034,0.5325482 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: 23.51505,6.5488663 + parent: 2 + - uid: 17920 + components: + - type: Transform + pos: 29.401247,20.720411 + parent: 2 +- proto: LauncherCreamPie + entities: + - uid: 3978 + components: + - type: Transform + pos: -14.578052,-7.4827647 + parent: 2 +- proto: LeftArmBorgService + entities: + - uid: 11219 + components: + - type: Transform + pos: -56.633244,64.60432 + parent: 2 + - uid: 11221 + components: + - type: Transform + parent: 11220 + - type: Physics + canCollide: False +- proto: LeftArmSkeleton + entities: + - uid: 18166 + components: + - type: Transform + pos: -21.39453,23.895758 + parent: 2 +- proto: LeftFootReptilian + entities: + - uid: 30993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.169468,22.208986 + parent: 2 +- proto: LeftFootSkeleton + entities: + - uid: 18165 + components: + - type: Transform + pos: -21.472654,23.833258 + parent: 2 +- proto: LeftHandHuman + entities: + - uid: 30995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.200718,24.240236 + parent: 2 +- proto: LeftHandSkeleton + entities: + - uid: 18167 + components: + - type: Transform + pos: -21.36328,23.911383 + parent: 2 +- proto: LeftLegBorg + entities: + - uid: 3979 + components: + - type: Transform + pos: -2.6328177,-38.509598 + parent: 2 +- proto: LeftLegHuman + entities: + - uid: 18296 + components: + - type: Transform + pos: -39.19514,25.071976 + parent: 2 + - uid: 30991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.153843,21.974611 + parent: 2 +- proto: LeftLegReptilian + entities: + - uid: 30990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.231968,23.662111 + parent: 2 + - uid: 30992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.716343,22.833986 + parent: 2 +- proto: LeftLegSkeleton + entities: + - uid: 18157 + components: + - type: Transform + pos: -21.42578,23.911383 + parent: 2 +- proto: LightBulb + entities: + - uid: 2310 + components: + - type: Transform + parent: 2309 + - type: Physics + canCollide: False +- proto: LightBulbBroken + entities: + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.447145,6.9117384 + parent: 2 + - uid: 11225 + components: + - type: Transform + pos: -56.820877,63.379242 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: 11.889473,16.571886 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: 12.84692,19.817116 + parent: 2 +- proto: Lighter + entities: + - uid: 3980 + components: + - type: Transform + pos: -96.57097,-29.459915 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: -43.500755,-44.546215 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 13.53749,-22.522768 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: 34.68697,-10.267958 + parent: 2 + - uid: 12161 + components: + - type: Transform + pos: -30.433369,-24.477861 + parent: 2 +- proto: LightHeadBorg + entities: + - uid: 3984 + components: + - type: Transform + pos: -2.4815173,-38.370907 + parent: 2 +- proto: LightPostSmall + entities: + - uid: 15322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,18.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-16.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-54.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,13.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 +- proto: LightReplacerEmpty + entities: + - uid: 1079 + components: + - type: Transform + parent: 1075 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3985 + components: + - type: Transform + pos: 17.50768,-33.248077 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: 26.471724,-32.27389 + parent: 2 +- proto: LightTubeBroken + entities: + - uid: 3987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.75557,-26.435493 + parent: 2 + - uid: 3988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.32656,-27.020031 + parent: 2 + - uid: 15614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.893954,10.698973 + parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 31039 + components: + - type: Transform + pos: 26.5,-51.5 + parent: 2 +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 13870 + components: + - type: Transform + pos: -8.475714,53.39976 + parent: 2 +- proto: LockerAtmosphericsFilled + entities: + - uid: 2056 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3990 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4787 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 +- proto: LockerBooze + entities: + - uid: 12112 + components: + - type: MetaData + desc: Обычный деревянный шкафчик, хронящий чьи-то секреты. + name: шкафчик + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.49301 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12118 + - 12117 + - 12116 + - 12115 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 12119 + components: + - type: MetaData + desc: Обычный деревянный шкафчик, хронящий чьи-то секреты. + name: шкафчик + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12121 + - 12120 + - 12122 + - 12123 + - 12124 + - 12125 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 12126 + components: + - type: MetaData + desc: Обычный деревянный шкафчик, хронящий чьи-то секреты. + name: шкафчик + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.49301 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12133 + - 12132 + - 12131 + - 12130 + - 12129 + - 12127 + - 12128 + - 12134 + - 12135 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 12136 + components: + - type: MetaData + desc: Обычный деревянный шкафчик, хронящий чьи-то секреты. + name: шкафчик + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.422104 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12137 + - 12140 + - 12139 + - 12138 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 18477 + components: + - type: MetaData + desc: Деревянный шкафчик. + name: шкафчик + - type: Transform + pos: -76.5,3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18480 + - 18478 + - 18479 + - 18481 + - 18482 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader +- proto: LockerBoozeFilled + entities: + - uid: 3972 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 3973 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 14781 + components: + - type: Transform + pos: 50.5,26.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 2969 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2970 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBotanistLoot + entities: + - uid: 2974 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 20.85312 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2975 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBrigmedicFilled + entities: + - uid: 926 + components: + - type: Transform + pos: -42.5,-37.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 928 + - 927 + - 929 + - 930 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerCaptainFilled + entities: + - uid: 3994 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 3995 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 864 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerChiefEngineerFilled + entities: + - uid: 3996 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 3997 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 +- proto: LockerDetectiveFilled + entities: + - uid: 868 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 869 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSupplies + entities: + - uid: 1139 + components: + - type: MetaData + name: шкаф с микросхемами + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1140 + - 1142 + - 1141 + - 1143 + - 1145 + - 1144 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 1131 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1134 + - 1133 + - 1132 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 3998 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 18713 + components: + - type: Transform + pos: -53.5,9.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 1856 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1857 + - 1858 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1859 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1861 + - 1860 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerEvidence + entities: + - uid: 3999 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: -56.5,-33.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: -55.5,-33.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: -56.5,-37.5 + parent: 2 + - uid: 4013 + components: + - type: MetaData + desc: Для хранения вещей зеков. + name: шкаф пермабрига + - type: Transform + pos: -72.5,-33.5 + parent: 2 + - uid: 4014 + components: + - type: MetaData + desc: Для хранения вещей зеков. + name: шкаф пермабрига + - type: Transform + pos: -71.5,-33.5 + parent: 2 + - uid: 4015 + components: + - type: MetaData + desc: Для хранения вещей зеков. + name: шкаф пермабрига + - type: Transform + pos: -70.5,-33.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 2914 + components: + - type: MetaData + desc: Маленький холодильник хранящий в себе большие секреты. + name: холодильник мороженого + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.422104 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2920 + - 2919 + - 2923 + - 2925 + - 2922 + - 2924 + - 2917 + - 2928 + - 2918 + - 2915 + - 2921 + - 2927 + - 2926 + - 2916 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2934 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2935 + - 2936 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2937 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2938 + - 2940 + - 2939 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2941 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2942 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13437 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13442 + - 13441 + - 13440 + - 13439 + - 13438 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerBase + entities: + - uid: 2900 + components: + - type: Transform + pos: -77.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2906 + - 2905 + - 2902 + - 2901 + - 2907 + - 2908 + - 2904 + - 2903 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 4016 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 11816 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 4017 + components: + - type: Transform + pos: -43.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1754 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 942 + components: + - type: MetaData + name: шкаф психолога + - type: Transform + pos: -40.5,14.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 970 + - 965 + - 966 + - 964 + - 969 + - 967 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1720 + components: + - type: MetaData + name: шкаф хирурга + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1723 + - 1721 + - 1724 + - 1725 + - 1726 + - 1728 + - 1727 + - 1722 + - 1729 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18060 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 18061 + - 18062 + - 18063 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 1841 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1842 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1843 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1844 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicineFilled + entities: + - uid: 4019 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 31074 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 1787 + components: + - type: Transform + pos: -28.5,8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1789 + - 1788 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerQuarterMasterFilled + entities: + - uid: 4023 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 4024 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17740 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 4025 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 4028 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 + - uid: 17924 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 +- proto: LockerScientist + entities: + - uid: 1777 + components: + - type: MetaData + name: шкаф генетика + - type: Transform + pos: 28.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1778 + - 1779 + - 1783 + - 1785 + - 1784 + - 1780 + - 1781 + - 1782 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurity + entities: + - uid: 1734 + components: + - type: MetaData + name: шкаф пилота службы безопасноти + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 51.061054 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1741 + - 1737 + - 1736 + - 1742 + - 1738 + - 1740 + - 1735 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurityFilled + entities: + - uid: 877 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 878 + - 879 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2177 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2178 + - 2179 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2184 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2185 + - 2186 + - 2187 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 2198 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 2199 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4031 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4032 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4033 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4034 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4035 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4036 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4037 + components: + - type: Transform + pos: -27.5,-45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4038 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4039 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4040 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 4041 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4042 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 13594 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 13595 + - 13596 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWardenFilled + entities: + - uid: 4043 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1755 + - 1773 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 4044 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 + - uid: 18707 + components: + - type: Transform + pos: -52.5,11.5 + parent: 2 +- proto: Log + entities: + - uid: 18419 + components: + - type: Transform + parent: 18418 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Machete + entities: + - uid: 1742 + components: + - type: Transform + parent: 1734 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MachineAnomalyGenerator + entities: + - uid: 4045 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 4046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-3.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-2.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 4048 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 1394 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 1017 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 4051 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: 43.5,-26.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,12.5 + parent: 2 + - uid: 17143 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 4054 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 17890 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 17891 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 +- proto: MagazineShotgun + entities: + - uid: 1102 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1103 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunBeanbag + entities: + - uid: 1104 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1105 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunIncendiary + entities: + - uid: 1106 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1107 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunSlug + entities: + - uid: 1108 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1109 + components: + - type: Transform + parent: 1100 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagicDiceBag + entities: + - uid: 15826 + components: + - type: Transform + pos: 12.27484,18.571825 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 720 + components: + - type: Transform + pos: 60.5,-2.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 16948 + components: + - type: Transform + pos: 48.5,22.5 + parent: 2 + - uid: 17494 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 17557 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 17558 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 17753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-43.5 + parent: 2 + - uid: 17760 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 2 + - uid: 18200 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 18510 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 18586 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 18607 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 18625 + components: + - type: Transform + pos: -68.5,-13.5 + parent: 2 + - uid: 18650 + components: + - type: Transform + pos: -69.5,-22.5 + parent: 2 + - uid: 18664 + components: + - type: Transform + pos: -77.5,-22.5 + parent: 2 + - uid: 19341 + components: + - type: Transform + pos: -67.5,-21.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 16928 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 17757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-47.5 + parent: 2 + - uid: 17759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-50.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 18197 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 18512 + components: + - type: Transform + pos: -66.5,5.5 + parent: 2 + - uid: 18585 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 18603 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 18663 + components: + - type: Transform + pos: -77.5,-24.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 940 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 16930 + components: + - type: Transform + pos: 38.5,24.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 16954 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 16965 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 17541 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 18199 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 18201 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 18511 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 18565 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 18566 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 18601 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 18605 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 18636 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 18651 + components: + - type: Transform + pos: -69.5,-23.5 + parent: 2 + - uid: 18860 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 19362 + components: + - type: Transform + pos: -67.5,-21.5 + parent: 2 + - uid: 19376 + components: + - type: Transform + pos: -67.5,-22.5 + parent: 2 + - uid: 19948 + components: + - type: Transform + pos: -67.5,-25.5 + parent: 2 + - uid: 20550 + components: + - type: Transform + pos: -51.5,-38.5 + parent: 2 + - uid: 20551 + components: + - type: Transform + pos: -51.5,-38.5 + parent: 2 + - uid: 20555 + components: + - type: Transform + pos: -56.5,-45.5 + parent: 2 + - uid: 20718 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 981 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 2 + - uid: 16927 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 18109 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 18198 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 18606 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 18624 + components: + - type: Transform + pos: -68.5,-13.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 18652 + components: + - type: Transform + pos: -70.5,-23.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 19965 + components: + - type: Transform + pos: -67.5,-25.5 + parent: 2 + - uid: 20468 + components: + - type: Transform + pos: -71.5,-15.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: -56.5,-45.5 + parent: 2 +- proto: MaterialBananium + entities: + - uid: 9737 + components: + - type: Transform + pos: 32.37422,-45.649483 + parent: 2 +- proto: MaterialCardboard + entities: + - uid: 4055 + components: + - type: Transform + pos: -81.51646,-40.512848 + parent: 2 + - type: Stack + count: 20 + - type: Item + size: 20 + - uid: 4056 + components: + - type: Transform + pos: 29.503298,-21.351547 + parent: 2 +- proto: MaterialCardboard1 + entities: + - uid: 2151 + components: + - type: Transform + parent: 2140 + - type: Stack + count: 10 + - type: Item + size: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaterialCloth10 + entities: + - uid: 18404 + components: + - type: Transform + pos: -22.550251,23.689777 + parent: 2 +- proto: MaterialHideBear + entities: + - uid: 18354 + components: + - type: Transform + pos: -47.548862,22.45498 + parent: 2 +- proto: MaterialWoodPlank10 + entities: + - uid: 1087 + components: + - type: Transform + parent: 1084 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4057 + components: + - type: Transform + pos: -12.500055,-2.426083 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 25 + components: + - type: Transform + pos: 15.325822,-20.28895 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: 32.702515,-0.34528327 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: 32.59314,-0.54840827 + parent: 2 + - uid: 14621 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14624 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18629 + components: + - type: Transform + parent: 18627 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18630 + components: + - type: Transform + parent: 18627 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedicalBed + entities: + - uid: 4058 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 4066 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 +- proto: MedicatedSuture + entities: + - uid: 4067 + components: + - type: Transform + pos: -27.668974,4.611777 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 4068 + components: + - type: Transform + pos: -48.37232,2.6033564 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -48.46688,2.5087938 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -48.561443,2.4268394 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 4072 + components: + - type: Transform + pos: -48.366013,3.5287802 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: -48.460575,3.440522 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: -48.555138,3.3522635 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 4076 + components: + - type: Transform + pos: 3.2799542,-21.493776 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 4077 + components: + - type: Transform + pos: -43.480488,9.572054 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: -35.490433,9.552394 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: 3.432321,-21.543331 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: -40.613148,-39.39792 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: -37.50123,-45.51131 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: -28.500172,4.533652 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 23.550375,11.649944 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: -30.462734,-19.315426 + parent: 2 + - uid: 12256 + components: + - type: Transform + pos: -44.491417,-16.465498 + parent: 2 + - uid: 18459 + components: + - type: Transform + pos: -69.421875,6.411907 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 4084 + components: + - type: Transform + pos: -44.372757,2.6621232 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: -44.46732,2.5675607 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: -44.55243,2.472998 + parent: 2 + - uid: 18620 + components: + - type: Transform + pos: -65.42656,-9.531819 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 1785 + components: + - type: Transform + parent: 1777 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitToxinFilled + entities: + - uid: 4087 + components: + - type: Transform + pos: -44.373775,3.5258389 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: -44.468338,3.4375806 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -44.5629,3.349322 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 4090 + components: + - type: Transform + pos: 33.612812,-0.53278327 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 15.348636,-20.50025 + parent: 2 + - uid: 14617 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14618 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MicrophoneInstrument + entities: + - uid: 16017 + components: + - type: Transform + pos: 49.44268,19.742313 + parent: 2 +- proto: MimanaSeeds + entities: + - uid: 4091 + components: + - type: Transform + pos: -85.47918,-46.681217 + parent: 2 +- proto: Mirror + entities: + - uid: 4093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-3.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-3.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-6.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -42.5,-35.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-6.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-23.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-23.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 2 + - uid: 11925 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 11926 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 18327 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 18730 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 +- proto: MMI + entities: + - uid: 4105 + components: + - type: Transform + pos: -2.4815173,-38.446556 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: 22.533047,6.577432 + parent: 2 + - uid: 11080 + components: + - type: Transform + pos: -58.487976,62.63033 + parent: 2 +- proto: ModularGrenade + entities: + - uid: 4107 + components: + - type: Transform + pos: 25.339779,11.579069 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: 26.769938,-32.54546 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: -32.374554,-6.3651466 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: -53.11068,3.5063088 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: -52.89193,3.7563088 + parent: 2 +- proto: MonkeyCube + entities: + - uid: 4112 + components: + - type: Transform + pos: 26.524244,13.463769 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: -29.519497,-12.525138 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: -28.476944,-11.482584 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: -30.519497,-9.418755 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: 23.481691,13.463769 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: 23.502968,14.506322 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 26.54552,15.548876 + parent: 2 +- proto: MopItem + entities: + - uid: 4121 + components: + - type: Transform + pos: 28.517185,-35.403973 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: -76.50389,-35.445976 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: 13.420882,-3.4656696 + parent: 2 + - uid: 17670 + components: + - type: Transform + pos: 36.456997,-5.48187 + parent: 2 + - uid: 18128 + components: + - type: Transform + pos: -15.481922,18.513466 + parent: 2 +- proto: Morgue + entities: + - uid: 4124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-39.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14713 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1462 + moles: + - 1.606311 + - 6.042789 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 4134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,51.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,50.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,49.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,48.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 16459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: MousetrapArmed + entities: + - uid: 18416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.44102,23.69785 + parent: 2 +- proto: Multitool + entities: + - uid: 4135 + components: + - type: Transform + pos: -4.4767456,-36.271812 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: 2.418693,-34.400032 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: -33.780186,-37.307922 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: 29.70746,-13.234557 + parent: 2 + - uid: 14707 + components: + - type: Transform + pos: -1.472578,5.708167 + parent: 2 + - uid: 15337 + components: + - type: Transform + pos: -5.493578,58.6051 + parent: 2 + - uid: 30981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.914352,-51.796852 + parent: 2 +- proto: MusicalLungInstrument + entities: + - uid: 1876 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MusicBoxInstrument + entities: + - uid: 4139 + components: + - type: Transform + pos: -11.555434,-6.3032136 + parent: 2 +- proto: Musket + entities: + - uid: 20125 + components: + - type: Transform + parent: 20123 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MysteryFigureBox + entities: + - uid: 4140 + components: + - type: Transform + pos: -85.16596,-33.28597 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 16.55748,-36.34415 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: -20.4861,0.6311283 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: -65.72507,-32.41403 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: 32.844658,-10.21749 + parent: 2 + - uid: 11627 + components: + - type: Transform + pos: -38.808937,-17.26116 + parent: 2 + - uid: 12121 + components: + - type: Transform + parent: 12119 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 12122 + components: + - type: Transform + parent: 12119 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15834 + components: + - type: Transform + pos: 8.546404,18.586288 + parent: 2 + - uid: 17708 + components: + - type: Transform + parent: 17707 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NettleSeeds + entities: + - uid: 31000 + components: + - type: Transform + pos: -18.493237,10.351449 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 4146 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 25.5,-58.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: 33.5,-65.5 + parent: 2 + - uid: 17709 + components: + - type: Transform + pos: 29.5,-50.5 + parent: 2 + - uid: 18424 + components: + - type: Transform + pos: -53.5,7.5 + parent: 2 + - uid: 18514 + components: + - type: Transform + pos: -71.5,-5.5 + parent: 2 + - uid: 18592 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 +- proto: NitrogenTank + entities: + - uid: 16173 + components: + - type: Transform + pos: -28.424034,-30.549505 + parent: 2 +- proto: NitrogenTankFilled + entities: + - uid: 6 + components: + - type: Transform + pos: -19.378433,-53.52701 + parent: 2 + - type: GasTank + toggleActionEntity: 7 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 7 + - uid: 14 + components: + - type: Transform + pos: -55.641533,-41.395615 + parent: 2 + - type: GasTank + toggleActionEntity: 15 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 15 + - uid: 16 + components: + - type: Transform + pos: -55.279827,-41.395615 + parent: 2 + - type: GasTank + toggleActionEntity: 17 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 17 + - uid: 1819 + components: + - type: Transform + parent: 1815 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15749 + components: + - type: Transform + pos: -10.530325,-68.39385 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 4153 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: -56.5,-41.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 +- proto: NitrousOxideTankFilled + entities: + - uid: 12 + components: + - type: Transform + pos: -41.493835,-6.302893 + parent: 2 + - type: GasTank + toggleActionEntity: 13 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13 +- proto: NodeScanner + entities: + - uid: 4159 + components: + - type: Transform + pos: 43.609123,8.76432 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 13864 + components: + - type: Transform + pos: -8.631964,53.74351 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 4160 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 15414 + components: + - type: Transform + pos: -1.5,60.5 + parent: 2 +- proto: NutimovCircuitBoard + entities: + - uid: 13875 + components: + - type: Transform + pos: -0.49768686,53.540386 + parent: 2 +- proto: Ointment + entities: + - uid: 4162 + components: + - type: Transform + pos: 33.740536,9.704989 + parent: 2 +- proto: Ointment10Lingering + entities: + - uid: 4163 + components: + - type: Transform + pos: -41.986748,-6.3407183 + parent: 2 +- proto: OperatingTable + entities: + - uid: 4164 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 18047 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 +- proto: OreBag + entities: + - uid: 17458 + components: + - type: Transform + pos: 34.52355,16.545414 + parent: 2 +- proto: OreBox + entities: + - uid: 4171 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 16373 + components: + - type: Transform + pos: 37.5,16.5 + parent: 2 + - uid: 17769 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 18549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-8.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 4174 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 +- proto: OrganArachnidEyes + entities: + - uid: 18807 + components: + - type: Transform + parent: 18791 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganDionaEyes + entities: + - uid: 20404 + components: + - type: Transform + pos: -69.55389,-22.531487 + parent: 2 +- proto: OrganHumanEyes + entities: + - uid: 1877 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganHumanHeart + entities: + - uid: 1878 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18067 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 +- proto: OrganHumanLiver + entities: + - uid: 2133 + components: + - type: Transform + parent: 2131 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganHumanTongue + entities: + - uid: 1879 + components: + - type: Transform + parent: 1871 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OxygenCanister + entities: + - uid: 4177 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - uid: 16293 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 17554 + components: + - type: Transform + pos: 34.5,-66.5 + parent: 2 + - uid: 17710 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 + - uid: 17877 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 18426 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 18518 + components: + - type: Transform + pos: -70.5,-5.5 + parent: 2 + - uid: 18593 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 10 + components: + - type: Transform + pos: -19.653744,-53.43659 + parent: 2 + - type: GasTank + toggleActionEntity: 11 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 11 + - uid: 1820 + components: + - type: Transform + parent: 1815 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 13509 + components: + - type: Transform + pos: -9.468349,47.504208 + parent: 2 + - uid: 16955 + components: + - type: Transform + pos: 42.48513,28.548035 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: 40.490303,10.532861 + parent: 2 + - uid: 17623 + components: + - type: Transform + pos: 34.457764,-67.537926 + parent: 2 +- proto: PackPaperRollingFilters + entities: + - uid: 970 + components: + - type: Transform + parent: 942 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4184 + components: + - type: Transform + pos: -94.534004,-34.552696 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 4185 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 4186 + components: + - type: Transform + pos: -89.5,-24.5 + parent: 2 +- proto: PaintingSkeletonBoof + entities: + - uid: 4187 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 +- proto: PaladinCircuitBoard + entities: + - uid: 13876 + components: + - type: Transform + pos: -0.40393686,53.46226 + parent: 2 +- proto: PanFluteInstrument + entities: + - uid: 11200 + components: + - type: Transform + pos: -53.483643,50.39426 + parent: 2 +- proto: Paper + entities: + - uid: 4188 + components: + - type: Transform + pos: -13.617336,-21.444414 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: -38.436077,-15.481193 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: -82.805855,-45.42159 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: -69.67967,46.46104 + parent: 2 + - type: Paper + content: >2- + Barbarus, iratus + Midnight Madonna + + Barbarus, iratus + + Midnight Madonna + + In the final night, bring sundown forever + + In the darkest time, we follow the trail of this game + + In the fullmoon light, the godless endeavor + + Stand pale and lunar + + On a dead-end sky so restless but ever + + Giving up the fight, we bring back the blood in your name + + And again tonight + + Let out a beast you can't tame + + Come raise your hands and fight + + Get alive and wake your might + + Midnight Madonna come + + Get alive and break the light + + Midnight Madonna + + In the primal dawn, bring blood from the living + + On the sabbath morn, we strike back and leave no farewell + + And a foreign might, held strong by the father's hand + + Sanguine order + + On a sabbath night, so faithless but ever + + Living up defied, we bring back the saints of despair + + And before the dawn, sacred and borne on the air + + Come raise your hands and fight + + Get alive and wake your might + + Midnight Madonna come + + Get alive and break the light + + Midnight Madonna + + Come raise your hands and fight + + Get alive and wake your might + + Midnight Madonna come + + Get alive and break the light + + Midnight Madonna + - uid: 10914 + components: + - type: Transform + pos: -77.334785,54.81213 + parent: 2 + - type: Paper + content: >- + Я хочу любить тебя, но мне лучше не прикасаться + + Я хочу обнять тебя, но мои чувства говорят мне остановиться + + Я хочу поцеловать тебя, но я хочу этого слишком сильно + + Я хочу попробовать тебя на вкус, но твои губы ядовиты + + Твой яд бежит по моим венам + + Твой яд + + Я не хочу разрывать эти цепи + - uid: 18326 + components: + - type: Transform + pos: -36.5496,19.61884 + parent: 2 + - uid: 26494 + components: + - type: Transform + pos: 17.624681,-72.35748 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >+ + ⠀[color=#1b487e]███░███░░░░██░░░░[/color] + + ⠀[color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + ⠀[color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + ⠀[color=#1b487e]░░░░██░░██░██░██░[/color] [bold]Station XX-000 КОМ[/bold] + + ⠀[color=#1b487e]░░░░██░░░████░███[/color] + ============================================= + Приказ о казни заключенного №137 + ============================================ + Приказ о казни заключенного №137 + + Заключенный:Виннислав Трейдович старший + + Нарушения:Обвиняется в грубой халатности, а так же в саботаже всей станции.Старший Инженер, пытаясь оправдаться, обвинил инженеров NanoTrasen в некомпетентности, говоря, что они могут только раковины строить.На вопрос о поломки ТЭГа заявил:"да это научный руководитель всё сломал, там что-то с платами не так".После этих слов НР была найдена мертвой в атмосии.Так же пытался компенсировать убытки NanoTrasen введя "налог на свет". По истечении времени, отведенного для постройки цели, заявил, что даже не знает о ее существовании. Так же признался в ритуальном убийстве нескольких технических ассистенов, дабы боги, приняв эти жертвы, зарядили СМЭСы. + + Исполнение приговора будет исполнено с учетом всех прав заключенного, в их числе право на информирование о его нарушении и праве на последнее слово. После проведение казни медиком будет констатирована смерть, а распоряжение телом произойдет согласно итоговому заключению о смерти заключенного. + + Приговор окончательный и обжалованию не подлежит. + + Место для печатей – Глава службы безопасности / Капитан + ============================================= + ⠀[italic]Место для печатей[/italic] + +- proto: PaperBin10 + entities: + - uid: 2702 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: -30.749949,5.55941 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: 11.3612385,-25.38507 + parent: 2 + - uid: 4193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.6579366,-28.368567 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.53271,5.639219 + parent: 2 + - uid: 4196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.325165,15.589034 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: -4.8250484,-26.390463 + parent: 2 + - uid: 4205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-37.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-39.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -19.60609,-12.313475 + parent: 2 + - uid: 4217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: -2.6256418,-2.4512985 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: -96.33849,-34.40215 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: 36.307594,-11.403466 + parent: 2 + - uid: 4224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.342567,-13.406326 + parent: 2 + - uid: 10952 + components: + - type: Transform + pos: -76.5,58.5 + parent: 2 + - uid: 12188 + components: + - type: Transform + pos: -33.58602,-19.409636 + parent: 2 + - uid: 12257 + components: + - type: Transform + pos: -51.640354,-20.422943 + parent: 2 + - uid: 18312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,27.5 + parent: 2 + - uid: 26693 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 4225 + components: + - type: Transform + pos: -19.622955,-23.230919 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: 23.337858,-41.4089 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: 17.340975,-43.40048 + parent: 2 + - uid: 4229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-36.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: -22.660637,-36.40782 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 7.371874,-5.3662047 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: 22.393785,-4.37375 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: 37.39265,-3.3986022 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: 33.366753,9.61143 + parent: 2 + - uid: 4235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.736942,11.610591 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: 28.351301,-18.365004 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: 15.344414,-51.39263 + parent: 2 + - uid: 10002 + components: + - type: Transform + pos: 9.338564,-43.403347 + parent: 2 + - uid: 10817 + components: + - type: Transform + pos: -8.349134,-60.414284 + parent: 2 + - uid: 11047 + components: + - type: Transform + pos: 21.369587,-31.38594 + parent: 2 + - uid: 11087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.334866,49.61165 + parent: 2 + - uid: 11476 + components: + - type: Transform + pos: -70.346664,60.61282 + parent: 2 + - uid: 11624 + components: + - type: Transform + pos: -38.021706,-17.388819 + parent: 2 + - uid: 13109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.655048,-5.403922 + parent: 2 + - uid: 13290 + components: + - type: Transform + pos: -25.65797,4.596917 + parent: 2 + - uid: 13797 + components: + - type: Transform + pos: 43.656227,-32.409138 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: 46.368736,-44.398716 + parent: 2 + - uid: 14151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.357815,-45.402817 + parent: 2 + - uid: 14586 + components: + - type: Transform + pos: -6.572541,42.541607 + parent: 2 + - uid: 15817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.650073,15.59985 + parent: 2 + - uid: 17925 + components: + - type: Transform + pos: 32.35331,29.588417 + parent: 2 + - uid: 20309 + components: + - type: Transform + pos: -74.66994,-15.40984 + parent: 2 +- proto: PaperOffice + entities: + - uid: 4238 + components: + - type: Transform + pos: 18.37875,0.7047727 + parent: 2 + - uid: 16547 + components: + - type: Transform + pos: 39.765152,20.989357 + parent: 2 + - type: Paper + content: >- + [color=#00000][bold]Местный бар заявлет о закрытии к концу года.[/bold] [/color] + + + После долгой борьбы за то, чтобы остаться в бизнесе после трагедии, поразившей их много лет назад, "B.F.BAR" объявила о том, что закроется к концу года. + + Несмотря на многолетние поиска покупателя, оказалось, что ни одна компания не желает связываться с ними. + + "Эти персонажи будут жить. Эти персонажи будут жить в сердцах детей." + + - Ген. директор. + - type: ActiveUserInterface +- proto: PartRodMetal + entities: + - uid: 4239 + components: + - type: Transform + pos: 6.5165935,-34.337532 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: 9.549206,-50.446384 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 27.342142,-49.468796 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 27.57855,-49.506622 + parent: 2 + - uid: 9996 + components: + - type: Transform + pos: 9.637501,-50.479458 + parent: 2 + - uid: 18315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.44848,26.52769 + parent: 2 + - uid: 18628 + components: + - type: Transform + parent: 18627 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Pen + entities: + - uid: 397 + components: + - type: Transform + pos: -6.5022583,-15.501642 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: -9.345028,-15.466007 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: -19.438925,-44.437706 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: 11.484169,-25.38507 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: -2.645328,-28.330742 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: -19.578825,-23.224613 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: -30.769571,5.5033393 + parent: 2 + - uid: 4248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.617975,-5.4326763 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -40.515247,-38.867584 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -7.3754573,11.470417 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: -3.3629904,5.6028833 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -39.236908,15.614251 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -14.580135,-18.30379 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -9.364489,-21.381914 + parent: 2 + - uid: 4255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.374613,-25.55379 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -44.450756,5.607698 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: 22.546007,-35.470535 + parent: 2 + - uid: 4261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.558386,-50.431538 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: 17.292587,-43.372673 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: 23.419813,-41.371075 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: 34.47979,-63.34287 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -15.488098,-39.50671 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -47.593395,-45.40713 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: -46.375443,-37.61945 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: -37.372505,-54.414608 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: -40.752216,-52.42944 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -36.454353,-45.48006 + parent: 2 + - uid: 4271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.498104,-39.535656 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: -27.404345,-39.459824 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: -27.54497,-35.428574 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -26.341845,-33.491074 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: -17.35376,-2.3390603 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -29.43561,-2.4946241 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -17.734856,-6.5022144 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -19.490648,-2.4670315 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -38.451702,-15.246818 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -32.491764,11.581964 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -2.5121667,-2.476515 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -59.454372,-36.50349 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -97.43049,-32.546204 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -96.237625,-34.307587 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -96.32588,-34.43367 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -82.805855,-45.527973 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -29.448227,-51.477898 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -37.641495,-40.44162 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -22.57238,-36.369995 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -27.478163,-6.7073903 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: 7.4380684,-5.40403 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: 22.46313,-4.4115753 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -4.444459,-17.44134 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: 28.611376,-1.5973763 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: 37.487213,-3.3986022 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: 33.620754,9.46543 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: 25.780186,11.706175 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: 24.636776,5.540976 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: 34.600388,-10.530639 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: 29.485632,-13.326362 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: 28.534122,-18.409132 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -76.20907,58.595295 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: 9.408242,-43.404106 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: -9.673153,-15.606632 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: -8.3743515,-60.382763 + parent: 2 + - uid: 11049 + components: + - type: Transform + pos: 21.518524,-31.428493 + parent: 2 + - uid: 11199 + components: + - type: Transform + pos: -53.376472,49.675587 + parent: 2 + - uid: 11477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.52949,60.600212 + parent: 2 + - uid: 11625 + components: + - type: Transform + pos: -38.04298,-17.367542 + parent: 2 + - uid: 12191 + components: + - type: Transform + pos: -33.5545,-19.38442 + parent: 2 + - uid: 12259 + components: + - type: Transform + pos: -51.56219,-20.33475 + parent: 2 + - uid: 13110 + components: + - type: Transform + pos: -26.30832,-5.3850093 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: -25.456236,4.552788 + parent: 2 + - uid: 13800 + components: + - type: Transform + pos: 43.681442,-32.409138 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: 46.402164,-33.433495 + parent: 2 + - uid: 14120 + components: + - type: Transform + pos: 46.562595,-41.470818 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: 46.553135,-44.398716 + parent: 2 + - uid: 14152 + components: + - type: Transform + pos: 39.51542,-45.42173 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: -74.51233,-15.378319 + parent: 2 + - uid: 14600 + components: + - type: Transform + pos: -6.3965545,42.548134 + parent: 2 + - uid: 15818 + components: + - type: Transform + pos: 12.531476,15.58606 + parent: 2 + - uid: 15828 + components: + - type: Transform + pos: 12.615266,18.529272 + parent: 2 + - uid: 17926 + components: + - type: Transform + pos: 32.504612,29.493855 + parent: 2 + - uid: 18318 + components: + - type: Transform + pos: -35.505943,20.548815 + parent: 2 + - uid: 20467 + components: + - type: Transform + pos: -71.542145,-15.519026 + parent: 2 + - uid: 26495 + components: + - type: Transform + pos: 20.171556,-71.37311 + parent: 2 + - uid: 26692 + components: + - type: Transform + pos: -11.618032,-35.488728 + parent: 2 +- proto: PenCap + entities: + - uid: 4302 + components: + - type: Transform + pos: 10.599857,-22.382893 + parent: 2 +- proto: PenHop + entities: + - uid: 4303 + components: + - type: Transform + pos: -4.855754,-26.352636 + parent: 2 +- proto: PersonalAI + entities: + - uid: 4304 + components: + - type: Transform + pos: -19.474022,-1.5602255 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -2.4665918,-6.474998 + parent: 2 + - uid: 12269 + components: + - type: Transform + pos: -51.496838,-17.434984 + parent: 2 + - uid: 14620 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PestSpray + entities: + - uid: 4306 + components: + - type: Transform + pos: 19.742508,-7.4882197 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 4307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 1858 + components: + - type: Transform + parent: 1856 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1861 + components: + - type: Transform + parent: 1859 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4308 + components: + - type: Transform + pos: 2.449943,-34.431282 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: 46.44199,-9.428813 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: -6.444143,40.61315 + parent: 2 + - uid: 16956 + components: + - type: Transform + pos: 42.570236,28.569311 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: 34.520264,-67.475426 + parent: 2 +- proto: PillCanister + entities: + - uid: 4325 + components: + - type: Transform + pos: 27.737911,13.815508 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: 27.759188,13.432529 + parent: 2 +- proto: PinpointerNuclear + entities: + - uid: 4327 + components: + - type: Transform + pos: 13.49742,-21.506176 + parent: 2 +- proto: PlantBag + entities: + - uid: 4328 + components: + - type: Transform + pos: -85.48232,-45.69303 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: 14.505988,-1.5294995 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: -14.489227,8.611936 + parent: 2 + - uid: 11190 + components: + - type: Transform + pos: -14.459564,10.330686 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 10684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-53.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 10533 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 10953 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 5848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-60.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-61.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-62.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-60.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-61.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-62.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 4337 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 46.5,-23.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: 44.5,-23.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: -77.5,43.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - uid: 17514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-76.5 + parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 4343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-49.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 +- proto: PlasticFlapsClear + entities: + - uid: 4345 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-45.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: -80.5,-33.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 +- proto: PlasticFlapsOpaque + entities: + - uid: 20415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 13503 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 +- proto: Plunger + entities: + - uid: 4356 + components: + - type: Transform + pos: -52.56754,3.5844338 + parent: 2 +- proto: PlushieBee + entities: + - uid: 4040 + components: + - type: Transform + parent: 4039 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlushieGhost + entities: + - uid: 2304 + components: + - type: MetaData + desc: Напуганный маленький призрак, что живёт в комоде. Он выглядит плюшевым, но в вашей голове - он настоящий. + name: призрак из комода + - type: Transform + parent: 2303 + - type: Physics + canCollide: False +- proto: PlushieHampter + entities: + - uid: 4034 + components: + - type: Transform + parent: 4033 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlushieLamp + entities: + - uid: 4357 + components: + - type: Transform + pos: 11.101349,-21.21573 + parent: 2 + - uid: 12183 + components: + - type: Transform + pos: -81.3612,55.714436 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 4036 + components: + - type: Transform + parent: 4035 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4358 + components: + - type: MetaData + name: Бегемот + - type: Transform + pos: -35.51076,-60.68885 + parent: 2 +- proto: PlushieMoth + entities: + - uid: 4042 + components: + - type: Transform + parent: 4041 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 11913 + components: + - type: MetaData + name: Димочка Казачок + - type: Transform + pos: -81.45387,54.288494 + parent: 2 + - uid: 11914 + components: + - type: MetaData + name: Аяру Симплекс + - type: Transform + pos: -80.70387,54.24162 + parent: 2 +- proto: PlushieNar + entities: + - uid: 7184 + components: + - type: Transform + pos: -72.40606,46.484474 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 15423 + components: + - type: Transform + pos: 0.3348773,60.41569 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 4032 + components: + - type: Transform + parent: 4031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlushieVox + entities: + - uid: 4038 + components: + - type: Transform + parent: 4037 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlushieXeno + entities: + - uid: 18084 + components: + - type: Transform + parent: 18083 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PortableFlasher + entities: + - uid: 4359 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 10980 + components: + - type: Transform + pos: -66.5,63.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 17634 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 19302 + components: + - type: Transform + pos: -17.5,18.5 + parent: 2 + - uid: 19558 + components: + - type: Transform + pos: -72.5,-23.5 + parent: 2 + - uid: 19559 + components: + - type: Transform + pos: -51.5,-49.5 + parent: 2 + - uid: 20154 + components: + - type: Transform + pos: -49.5,14.5 + parent: 2 + - uid: 29938 + components: + - type: Transform + pos: -0.5,47.5 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 4361 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 2 +- proto: PortableGeneratorPacmanMachineCircuitboard + entities: + - uid: 4362 + components: + - type: Transform + pos: -4.4629207,-38.511112 + parent: 2 +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 4363 + components: + - type: Transform + pos: -4.462488,-38.326347 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 4364 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 10915 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 18714 + components: + - type: Transform + pos: -67.5,-30.5 + parent: 2 + - uid: 18724 + components: + - type: Transform + pos: -65.5,-30.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 4368 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 +- proto: PosterContrabandClown + entities: + - uid: 4369 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 +- proto: PosterContrabandFreeDrone + entities: + - uid: 4370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-30.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 4371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 2 + - uid: 11048 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 4372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 2 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 18310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,19.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 4373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-58.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 +- proto: PosterContrabandMoth + entities: + - uid: 11909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,56.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: -0.5,59.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 30155 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 +- proto: PosterContrabandRedRum + entities: + - uid: 4374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-24.5 + parent: 2 +- proto: PosterContrabandSmoke + entities: + - uid: 15797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-65.5 + parent: 2 +- proto: PosterContrabandTheBigGasTruth + entities: + - uid: 10840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-52.5 + parent: 2 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 4375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,5.5 + parent: 2 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 11381 + components: + - type: Transform + pos: -76.5,61.5 + parent: 2 + - uid: 11382 + components: + - type: Transform + pos: -57.5,56.5 + parent: 2 +- proto: PosterLegitCarbonDioxide + entities: + - uid: 4376 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 2 +- proto: PosterLegitFruitBowl + entities: + - uid: 4377 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 +- proto: PosterLegitHelpOthers + entities: + - uid: 4378 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 +- proto: PosterLegitIan + entities: + - uid: 4379 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 +- proto: PosterLegitMime + entities: + - uid: 4380 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 4381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-55.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - uid: 15097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,45.5 + parent: 2 + - uid: 18750 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 18779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 +- proto: PosterLegitNoERP + entities: + - uid: 4382 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 12155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-22.5 + parent: 2 +- proto: PosterLegitNTTGC + entities: + - uid: 4383 + components: + - type: Transform + pos: -94.5,-35.5 + parent: 2 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 4384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 2 +- proto: PosterLegitSafetyInternals + entities: + - uid: 4385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 10888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-54.5 + parent: 2 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 11910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,55.5 + parent: 2 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 11762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,53.5 + parent: 2 + - uid: 11911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,54.5 + parent: 2 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 4386 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 11755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,56.5 + parent: 2 + - uid: 16461 + components: + - type: Transform + pos: 25.5,-73.5 + parent: 2 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 11756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,55.5 + parent: 2 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 11761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,54.5 + parent: 2 + - uid: 11912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,53.5 + parent: 2 + - uid: 31037 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 2 +- proto: PosterLegitSafetyReport + entities: + - uid: 10890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-45.5 + parent: 2 +- proto: PosterLegitSpaceCops + entities: + - uid: 4387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-44.5 + parent: 2 +- proto: PosterLegitTheOwl + entities: + - uid: 4388 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 2 +- proto: PotatoSeeds + entities: + - uid: 4390 + components: + - type: Transform + pos: -87.521736,-47.617386 + parent: 2 +- proto: PottedPlant1 + entities: + - uid: 4391 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 +- proto: PottedPlant10 + entities: + - uid: 4392 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 2 + - uid: 17894 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 +- proto: PottedPlant15 + entities: + - uid: 11478 + components: + - type: Transform + pos: -70.945564,60.593906 + parent: 2 +- proto: PottedPlant18 + entities: + - uid: 4395 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 +- proto: PottedPlant2 + entities: + - uid: 4398 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: -28.5,-35.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 4401 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 1543 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: -45.5,5.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 10716 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 10717 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 10718 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: -67.5,48.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: -63.5,48.5 + parent: 2 + - uid: 10803 + components: + - type: Transform + pos: -65.5,61.5 + parent: 2 + - uid: 10804 + components: + - type: Transform + pos: -56.5,61.5 + parent: 2 + - uid: 10805 + components: + - type: Transform + pos: -53.5,48.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + pos: -73.5,53.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + pos: -73.5,55.5 + parent: 2 + - uid: 10933 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + pos: -53.5,60.5 + parent: 2 + - uid: 11244 + components: + - type: Transform + pos: -25.5,9.5 + parent: 2 + - uid: 11347 + components: + - type: Transform + pos: -71.5,49.5 + parent: 2 + - uid: 11605 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 11606 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 12270 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 12271 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - uid: 12272 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + pos: -30.5,18.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + pos: -30.5,16.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 13521 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 13522 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + pos: 45.5,-40.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + pos: 37.5,-43.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + pos: 10.5,19.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 18498 + components: + - type: Transform + pos: -72.5,3.5 + parent: 2 + - uid: 18499 + components: + - type: Transform + pos: -71.5,3.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 20336 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 +- proto: PottedPlantRandomPlastic + entities: + - uid: 4440 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 11066 + components: + - type: Transform + pos: -54.5,45.5 + parent: 2 +- proto: PowerCellHigh + entities: + - uid: 3971 + components: + - type: Transform + parent: 3970 + - type: Physics + canCollide: False +- proto: PowerCellHighPrinted + entities: + - uid: 4447 + components: + - type: Transform + pos: 24.59412,-44.40551 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: 29.676388,-0.43610024 + parent: 2 +- proto: PowerCellMedium + entities: + - uid: 4449 + components: + - type: Transform + pos: -2.3699827,-11.402489 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: 3.5944943,-27.398846 + parent: 2 + - uid: 18293 + components: + - type: Transform + pos: -35.47105,23.5876 + parent: 2 + - uid: 18294 + components: + - type: Transform + pos: -35.361675,23.696976 + parent: 2 +- proto: PowerCellMediumPrinted + entities: + - uid: 2165 + components: + - type: Transform + parent: 2163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 4451 + components: + - type: Transform + pos: 21.588373,-53.412003 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: -5.45924,-34.45065 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: -5.355221,-34.252068 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: -3.5679867,-36.360813 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: 40.52894,5.609115 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: 26.550606,-49.2513 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 26.550606,-49.478252 + parent: 2 + - uid: 12462 + components: + - type: Transform + pos: -64.390854,-22.394388 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: 15.742126,-33.24665 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 4458 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 2 + - uid: 11079 + components: + - type: Transform + pos: -59.5,62.5 + parent: 2 + - uid: 12461 + components: + - type: Transform + pos: -64.5,-22.5 + parent: 2 + - uid: 18292 + components: + - type: Transform + pos: -35.5,23.5 + parent: 2 +- proto: PowerCellSmall + entities: + - uid: 4470 + components: + - type: Transform + pos: 40.67787,5.694222 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: 21.664022,-53.229183 + parent: 2 + - uid: 10920 + components: + - type: Transform + pos: 15.612782,-43.36843 + parent: 2 + - uid: 14205 + components: + - type: Transform + pos: 15.614468,-33.37431 + parent: 2 +- proto: PowerCellSmallPrinted + entities: + - uid: 4472 + components: + - type: Transform + pos: 24.700502,-44.171467 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: -59.414425,62.620815 + parent: 2 +- proto: PowerDrill + entities: + - uid: 4473 + components: + - type: Transform + pos: -6.563374,8.500085 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 34.52487,6.695782 + parent: 2 +- proto: Poweredlight + entities: + - uid: 807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-57.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-64.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-65.5 + parent: 2 + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-61.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,50.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,50.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,60.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,60.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-55.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-0.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-31.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-23.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-55.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-16.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 4510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-2.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-27.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-38.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-35.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-36.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-33.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-5.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-48.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-53.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-61.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-61.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-60.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-48.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-65.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-42.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-48.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-44.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-43.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-46.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-50.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-54.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-44.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-51.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-51.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-0.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-4.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,13.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,14.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,7.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,6.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,6.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-4.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,0.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-2.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-5.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-5.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-2.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -63.5,4.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -58.5,4.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -53.5,-37.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-41.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: -60.5,-34.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -71.5,-33.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: -66.5,-33.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -70.5,-37.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,-41.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-41.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -86.5,-33.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,-44.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: -83.5,-45.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-37.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-11.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-34.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-3.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-3.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: 49.5,3.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,5.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,3.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,6.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,6.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-26.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-26.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,6.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-51.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-53.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-44.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-65.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,10.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - uid: 8973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-36.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-58.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-53.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - uid: 10947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-40.5 + parent: 2 + - uid: 10948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-40.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-48.5 + parent: 2 + - uid: 10950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-43.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,48.5 + parent: 2 + - uid: 11194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,48.5 + parent: 2 + - uid: 11195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,48.5 + parent: 2 + - uid: 11196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,48.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,52.5 + parent: 2 + - uid: 11198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,56.5 + parent: 2 + - uid: 11201 + components: + - type: Transform + pos: -53.5,55.5 + parent: 2 + - uid: 11202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,53.5 + parent: 2 + - uid: 11239 + components: + - type: Transform + pos: -59.5,60.5 + parent: 2 + - uid: 11245 + components: + - type: Transform + pos: -57.5,46.5 + parent: 2 + - uid: 11246 + components: + - type: Transform + pos: -63.5,46.5 + parent: 2 + - uid: 11247 + components: + - type: Transform + pos: -67.5,46.5 + parent: 2 + - uid: 11300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,48.5 + parent: 2 + - uid: 11301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,48.5 + parent: 2 + - uid: 11302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,48.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,61.5 + parent: 2 + - uid: 11304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,61.5 + parent: 2 + - uid: 11305 + components: + - type: Transform + pos: -71.5,60.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + pos: -67.5,64.5 + parent: 2 + - uid: 11309 + components: + - type: Transform + pos: -71.5,64.5 + parent: 2 + - uid: 11312 + components: + - type: Transform + pos: -74.5,55.5 + parent: 2 + - uid: 11313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,53.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,57.5 + parent: 2 + - uid: 11315 + components: + - type: Transform + pos: -75.5,60.5 + parent: 2 + - uid: 11318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,50.5 + parent: 2 + - uid: 11319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,49.5 + parent: 2 + - uid: 11320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,46.5 + parent: 2 + - uid: 11617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-17.5 + parent: 2 + - uid: 11618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-21.5 + parent: 2 + - uid: 11819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-21.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 12281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-22.5 + parent: 2 + - uid: 12282 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 2 + - uid: 12283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-16.5 + parent: 2 + - uid: 12284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-23.5 + parent: 2 + - uid: 12474 + components: + - type: Transform + pos: -64.5,-17.5 + parent: 2 + - uid: 12475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-22.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-27.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-22.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,2.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: -11.5,4.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + pos: -27.5,18.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 13357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 2 + - uid: 13515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-30.5 + parent: 2 + - uid: 13516 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 13517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-34.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-40.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-31.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-44.5 + parent: 2 + - uid: 14059 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-36.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-36.5 + parent: 2 + - uid: 14067 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: 46.5,-38.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-30.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 14511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-43.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-43.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-45.5 + parent: 2 + - uid: 14596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,41.5 + parent: 2 + - uid: 14597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,41.5 + parent: 2 + - uid: 14828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,42.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + pos: -9.5,47.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: 0.5,47.5 + parent: 2 + - uid: 14948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,42.5 + parent: 2 + - uid: 15138 + components: + - type: Transform + pos: -5.5,47.5 + parent: 2 + - uid: 15139 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,56.5 + parent: 2 + - uid: 15296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,56.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + pos: -16.5,-66.5 + parent: 2 + - uid: 16570 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 19883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - uid: 20623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-38.5 + parent: 2 + - uid: 21421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-38.5 + parent: 2 + - uid: 22137 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 24030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - uid: 24031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,4.5 + parent: 2 + - uid: 24873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 28537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-45.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 4664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-27.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-26.5 + parent: 2 + - uid: 15609 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 18004 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 + - uid: 18005 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,28.5 + parent: 2 + - uid: 18054 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 4666 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-6.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-58.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: -51.5,59.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-46.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,57.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-26.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -48.5,-41.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-30.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-30.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-30.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-30.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-30.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-37.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-50.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-9.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-8.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-9.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,2.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,10.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-40.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: -75.5,-33.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: -83.5,-33.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-35.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-40.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,-40.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -84.5,-37.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: -90.5,-37.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,-32.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,-34.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: -94.5,-31.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -95.5,-28.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: -89.5,-28.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: -89.5,-25.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -95.5,-25.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,-27.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-52.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-39.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-38.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: -46.5,-52.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-38.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-27.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-27.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-27.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-23.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-23.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-3.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-21.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-35.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-41.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-26.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-11.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,-4.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,8.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-20.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-58.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: 37.5,-61.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: 41.5,-61.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-61.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,12.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -30.5,14.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-70.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-70.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: 21.5,-67.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-52.5 + parent: 2 + - uid: 10846 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 11097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,58.5 + parent: 2 + - uid: 11224 + components: + - type: Transform + pos: -59.5,64.5 + parent: 2 + - uid: 11298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,46.5 + parent: 2 + - uid: 11299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,46.5 + parent: 2 + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,57.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,51.5 + parent: 2 + - uid: 11310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,63.5 + parent: 2 + - uid: 11311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,63.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + pos: -78.5,60.5 + parent: 2 + - uid: 11321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,43.5 + parent: 2 + - uid: 11322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,48.5 + parent: 2 + - uid: 11323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,48.5 + parent: 2 + - uid: 11324 + components: + - type: Transform + pos: -79.5,51.5 + parent: 2 + - uid: 11325 + components: + - type: Transform + pos: -81.5,51.5 + parent: 2 + - uid: 11604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 2 + - uid: 11615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-17.5 + parent: 2 + - uid: 11616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 2 + - uid: 11809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + - uid: 11810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 2 + - uid: 11815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-21.5 + parent: 2 + - uid: 12212 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,14.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,14.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,8.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,17.5 + parent: 2 + - uid: 13380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 2 + - uid: 13381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-31.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-35.5 + parent: 2 + - uid: 13908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-76.5 + parent: 2 + - uid: 13909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-76.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-78.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-34.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-42.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: 52.5,-40.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,45.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,45.5 + parent: 2 + - uid: 15299 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 + - uid: 15300 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 15610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-75.5 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: -25.5,-67.5 + parent: 2 + - uid: 15700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-70.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-73.5 + parent: 2 + - uid: 15703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-72.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 15705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-73.5 + parent: 2 + - uid: 15706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-70.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-76.5 + parent: 2 + - uid: 15708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-64.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-72.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-76.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + pos: -17.5,-80.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + pos: -19.5,-80.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 15969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,14.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 2 + - uid: 16004 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 16005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2 + - uid: 16006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,17.5 + parent: 2 + - uid: 16007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,24.5 + parent: 2 + - uid: 16010 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-15.5 + parent: 2 + - uid: 16436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - uid: 16437 + components: + - type: Transform + pos: 38.5,26.5 + parent: 2 + - uid: 16438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - uid: 16439 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 16440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,22.5 + parent: 2 + - uid: 16441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,19.5 + parent: 2 + - uid: 16442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,23.5 + parent: 2 + - uid: 16443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 16444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,26.5 + parent: 2 + - uid: 16455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-58.5 + parent: 2 + - uid: 16959 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,15.5 + parent: 2 + - uid: 16972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,15.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,3.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 + - uid: 17702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 17703 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 17704 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 17743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-53.5 + parent: 2 + - uid: 17744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 + parent: 2 + - uid: 17989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,32.5 + parent: 2 + - uid: 17991 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 18007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + - uid: 18159 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 18168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 2 + - uid: 18194 + components: + - type: Transform + pos: -3.5,19.5 + parent: 2 + - uid: 18195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,19.5 + parent: 2 + - uid: 18325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,23.5 + parent: 2 + - uid: 18359 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 18360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,16.5 + parent: 2 + - uid: 18362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,19.5 + parent: 2 + - uid: 18363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + - uid: 18364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,23.5 + parent: 2 + - uid: 18366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,23.5 + parent: 2 + - uid: 18535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,22.5 + parent: 2 + - uid: 18536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,19.5 + parent: 2 + - uid: 18537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,19.5 + parent: 2 + - uid: 18538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,26.5 + parent: 2 + - uid: 18539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,26.5 + parent: 2 + - uid: 18632 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - uid: 18633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,19.5 + parent: 2 + - uid: 18645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,16.5 + parent: 2 + - uid: 18653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,17.5 + parent: 2 + - uid: 18655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,12.5 + parent: 2 + - uid: 18657 + components: + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 18703 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 18762 + components: + - type: Transform + pos: -70.5,6.5 + parent: 2 + - uid: 18763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,2.5 + parent: 2 + - uid: 18764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,1.5 + parent: 2 + - uid: 18765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,1.5 + parent: 2 + - uid: 18831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-4.5 + parent: 2 + - uid: 18832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-9.5 + parent: 2 + - uid: 18833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,-6.5 + parent: 2 + - uid: 18863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-11.5 + parent: 2 + - uid: 18864 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 18865 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 19095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-51.5 + parent: 2 + - uid: 19101 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 19241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-59.5 + parent: 2 + - uid: 19246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-17.5 + parent: 2 + - uid: 19247 + components: + - type: Transform + pos: -77.5,-22.5 + parent: 2 + - uid: 19336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-55.5 + parent: 2 + - uid: 19939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-28.5 + parent: 2 + - uid: 19940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-30.5 + parent: 2 + - uid: 19942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-32.5 + parent: 2 + - uid: 20372 + components: + - type: Transform + pos: -75.5,-15.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-17.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: -73.5,-29.5 + parent: 2 + - uid: 20537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-39.5 + parent: 2 + - uid: 20538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-27.5 + parent: 2 + - uid: 20540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-35.5 + parent: 2 + - uid: 20541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-45.5 + parent: 2 + - uid: 20542 + components: + - type: Transform + pos: -50.5,-50.5 + parent: 2 + - uid: 20543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-52.5 + parent: 2 + - uid: 20544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-53.5 + parent: 2 + - uid: 20586 + components: + - type: Transform + pos: -58.5,-51.5 + parent: 2 + - uid: 20617 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 20618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + - uid: 20621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-41.5 + parent: 2 + - uid: 20807 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 + - uid: 20832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-44.5 + parent: 2 + - uid: 20833 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 + - uid: 20834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-40.5 + parent: 2 + - uid: 20835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-41.5 + parent: 2 + - uid: 20836 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 20837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-63.5 + parent: 2 + - uid: 20843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-49.5 + parent: 2 + - uid: 20876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-67.5 + parent: 2 + - uid: 20894 + components: + - type: Transform + pos: 38.5,-67.5 + parent: 2 + - uid: 20903 + components: + - type: Transform + pos: 35.5,-71.5 + parent: 2 + - uid: 20904 + components: + - type: Transform + pos: 33.5,-71.5 + parent: 2 + - uid: 20905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-74.5 + parent: 2 + - uid: 20906 + components: + - type: Transform + pos: 30.5,-71.5 + parent: 2 + - uid: 20907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-75.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-57.5 + parent: 2 + - uid: 24032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,5.5 + parent: 2 + - uid: 24666 + components: + - type: Transform + pos: -3.5,-65.5 + parent: 2 + - uid: 24667 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 24669 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 2 + - uid: 24670 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 2 + - uid: 24671 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 24672 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - uid: 26824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-46.5 + parent: 2 + - uid: 26825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-46.5 + parent: 2 + - uid: 27215 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 2 + - uid: 27216 + components: + - type: Transform + pos: 25.5,-60.5 + parent: 2 + - uid: 28538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-43.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 4788 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,63.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 17984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 17985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 17986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,21.5 + parent: 2 + - uid: 17987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 + - uid: 17988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - uid: 17990 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 + - uid: 18170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,22.5 + parent: 2 + - uid: 18171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 +- proto: PrinterDoc + entities: + - uid: 4071 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 4790 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 +- proto: ProximitySensor + entities: + - uid: 4793 + components: + - type: Transform + pos: 26.505657,11.630686 + parent: 2 +- proto: Rack + entities: + - uid: 956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-2.5 + parent: 2 + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-2.5 + parent: 2 + - uid: 979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-2.5 + parent: 2 + - uid: 982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-2.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-53.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-53.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: -53.5,-39.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -76.5,-35.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-35.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-17.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,8.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 9998 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 11046 + components: + - type: Transform + pos: -60.5,62.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: -56.5,64.5 + parent: 2 + - uid: 11138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 + - uid: 12445 + components: + - type: Transform + pos: -64.5,-17.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: -9.5,47.5 + parent: 2 + - uid: 13874 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 2 + - uid: 16170 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 16262 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 16322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-45.5 + parent: 2 + - uid: 16370 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 16386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + pos: 42.5,28.5 + parent: 2 + - uid: 16950 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,10.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,16.5 + parent: 2 + - uid: 16976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,9.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: 32.5,-75.5 + parent: 2 + - uid: 17550 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 + - uid: 17551 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 17568 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 17572 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-67.5 + parent: 2 + - uid: 17646 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 17659 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 17747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-43.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - uid: 18087 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 18103 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 18148 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 18192 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 + - uid: 18193 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 18269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,26.5 + parent: 2 + - uid: 18270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,19.5 + parent: 2 + - uid: 18288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,25.5 + parent: 2 + - uid: 18373 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 18417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,11.5 + parent: 2 + - uid: 18437 + components: + - type: Transform + pos: -58.5,7.5 + parent: 2 + - uid: 18456 + components: + - type: Transform + pos: -69.5,6.5 + parent: 2 + - uid: 18457 + components: + - type: Transform + pos: -70.5,6.5 + parent: 2 + - uid: 18508 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 18509 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 18516 + components: + - type: Transform + pos: -70.5,-3.5 + parent: 2 + - uid: 18552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-13.5 + parent: 2 + - uid: 18553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-13.5 + parent: 2 + - uid: 18555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-8.5 + parent: 2 + - uid: 18562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-7.5 + parent: 2 + - uid: 18584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-3.5 + parent: 2 + - uid: 18598 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 18608 + components: + - type: Transform + pos: -62.5,-12.5 + parent: 2 + - uid: 18618 + components: + - type: Transform + pos: -65.5,-9.5 + parent: 2 + - uid: 18623 + components: + - type: Transform + pos: -68.5,-13.5 + parent: 2 + - uid: 18661 + components: + - type: Transform + pos: -77.5,-22.5 + parent: 2 + - uid: 18717 + components: + - type: Transform + pos: -72.5,-27.5 + parent: 2 + - uid: 18718 + components: + - type: Transform + pos: -72.5,-31.5 + parent: 2 + - uid: 18859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-5.5 + parent: 2 + - uid: 19318 + components: + - type: Transform + pos: -67.5,-21.5 + parent: 2 + - uid: 19945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-25.5 + parent: 2 + - uid: 20549 + components: + - type: Transform + pos: -51.5,-38.5 + parent: 2 + - uid: 20716 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 4843 + components: + - type: Transform + pos: 16.311619,-36.25904 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: 16.55748,-36.476536 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: 16.803343,-36.277954 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: 12.113073,-50.478413 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: -47.51527,-46.204006 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: -25.77929,-48.309063 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -25.482414,-48.465313 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -25.27929,-48.262188 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: 6.5746255,-36.551292 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: 6.8015757,-36.35271 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: 37.761444,-3.3702335 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: 28.729551,-18.39022 + parent: 2 + - uid: 10814 + components: + - type: Transform + pos: -4.7592587,-54.151722 + parent: 2 + - uid: 10815 + components: + - type: Transform + pos: -4.6773047,-54.353455 + parent: 2 + - uid: 14708 + components: + - type: Transform + pos: -1.6555121,6.5398655 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: -10.495013,43.623795 + parent: 2 + - uid: 18829 + components: + - type: Transform + pos: -72.48511,1.5495429 + parent: 2 +- proto: RagItem + entities: + - uid: 4858 + components: + - type: Transform + pos: -6.525862,-3.4945145 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: 12.6146965,-1.3422134 + parent: 2 +- proto: Railing + entities: + - uid: 1542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 21.5,-68.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 19.5,-68.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 17.5,-68.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-13.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,56.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,4.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,4.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,4.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,47.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,47.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,47.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,47.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,51.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,51.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,51.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,51.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,52.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -61.5,57.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: -60.5,57.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: -59.5,57.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: -58.5,57.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: -69.5,58.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,50.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: 20.5,-68.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,56.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: 22.5,-68.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-12.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-11.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-14.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: 18.5,-68.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-11.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-11.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,48.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,48.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,49.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,50.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,51.5 + parent: 2 + - uid: 11057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,64.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,57.5 + parent: 2 + - uid: 11102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,55.5 + parent: 2 + - uid: 11103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,53.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,54.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,52.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -68.5,51.5 + parent: 2 + - uid: 11129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,7.5 + parent: 2 + - uid: 11130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - uid: 11132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,12.5 + parent: 2 + - uid: 11260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,42.5 + parent: 2 + - uid: 11261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,42.5 + parent: 2 + - uid: 11262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,42.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,42.5 + parent: 2 + - uid: 11264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,42.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,42.5 + parent: 2 + - uid: 11266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,42.5 + parent: 2 + - uid: 11267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,42.5 + parent: 2 + - uid: 11268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,42.5 + parent: 2 + - uid: 11269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,42.5 + parent: 2 + - uid: 11270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,42.5 + parent: 2 + - uid: 11271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,42.5 + parent: 2 + - uid: 11272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,42.5 + parent: 2 + - uid: 11273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,42.5 + parent: 2 + - uid: 11274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,44.5 + parent: 2 + - uid: 11275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,45.5 + parent: 2 + - uid: 11276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,46.5 + parent: 2 + - uid: 11820 + components: + - type: Transform + pos: 23.5,-68.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + pos: 24.5,-68.5 + parent: 2 + - uid: 16001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,19.5 + parent: 2 + - uid: 16008 + components: + - type: Transform + pos: 48.5,20.5 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 16012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,18.5 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,21.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,21.5 + parent: 2 + - uid: 17496 + components: + - type: Transform + pos: 25.5,-68.5 + parent: 2 + - uid: 20480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-69.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 4018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-11.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-11.5 + parent: 2 + - uid: 11277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,43.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 4907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,55.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,53.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-7.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,48.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,48.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,48.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,48.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,48.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,48.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,48.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,51.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,57.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,50.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,58.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: -68.5,50.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,58.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + pos: -77.5,48.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + pos: -79.5,48.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,48.5 + parent: 2 + - uid: 10787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,48.5 + parent: 2 + - uid: 11126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,6.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,9.5 + parent: 2 + - uid: 11128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - uid: 11149 + components: + - type: Transform + pos: -57.5,51.5 + parent: 2 + - uid: 11150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,57.5 + parent: 2 + - uid: 11278 + components: + - type: Transform + pos: -53.5,42.5 + parent: 2 + - uid: 11279 + components: + - type: Transform + pos: -52.5,43.5 + parent: 2 + - uid: 16013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,20.5 + parent: 2 + - uid: 16137 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 20582 + components: + - type: Transform + pos: 26.5,-70.5 + parent: 2 + - uid: 20583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-68.5 + parent: 2 +- proto: RandomArcade + entities: + - uid: 4947 + components: + - type: Transform + pos: -93.5,-31.5 + parent: 2 + - uid: 12451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-18.5 + parent: 2 + - uid: 12452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-19.5 + parent: 2 + - uid: 12453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-20.5 + parent: 2 + - uid: 12454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-21.5 + parent: 2 + - uid: 16002 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 + - uid: 16003 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 18285 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 + - uid: 18286 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 18495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,2.5 + parent: 2 + - uid: 18496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,1.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 4948 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 26392 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 4949 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 + - uid: 30986 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 16124 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 18503 + components: + - type: Transform + pos: -69.5,0.5 + parent: 2 + - uid: 26492 + components: + - type: Transform + pos: 23.5,-67.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 4951 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: 47.5,22.5 + parent: 2 + - uid: 18504 + components: + - type: Transform + pos: -69.5,3.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 4952 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -71.5,-40.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -68.5,-41.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 4958 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 4959 + components: + - type: Transform + pos: -81.5,-40.5 + parent: 2 + - uid: 12186 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + pos: -32.5,18.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 4960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-28.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 4964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: -87.5,-32.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -66.5,-41.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - uid: 10844 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 + - uid: 10845 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: -62.5,48.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: -57.5,52.5 + parent: 2 + - uid: 12010 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 12154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-24.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: -35.5,14.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 17463 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 17565 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 17624 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 17750 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 18331 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 18332 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 18422 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 18678 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 18684 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 18685 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 18688 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 18751 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 18811 + components: + - type: Transform + pos: -73.5,3.5 + parent: 2 + - uid: 18812 + components: + - type: Transform + pos: -70.5,-0.5 + parent: 2 + - uid: 18813 + components: + - type: Transform + pos: -68.5,1.5 + parent: 2 + - uid: 18814 + components: + - type: Transform + pos: -72.5,5.5 + parent: 2 + - uid: 18836 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 18837 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 18886 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 19645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 2 + - uid: 20484 + components: + - type: Transform + pos: -76.5,-14.5 + parent: 2 + - uid: 20485 + components: + - type: Transform + pos: -79.5,-14.5 + parent: 2 + - uid: 20493 + components: + - type: Transform + pos: -76.5,-21.5 + parent: 2 + - uid: 20494 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 20608 + components: + - type: Transform + pos: -71.5,-24.5 + parent: 2 + - uid: 20609 + components: + - type: Transform + pos: -51.5,-48.5 + parent: 2 + - uid: 20610 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 + - uid: 20881 + components: + - type: Transform + pos: 32.5,-67.5 + parent: 2 + - uid: 20882 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 20883 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 2 + - uid: 20884 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - uid: 20885 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 20886 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 2 + - uid: 20887 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 20888 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 20892 + components: + - type: Transform + pos: -63.5,-36.5 + parent: 2 + - uid: 30249 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 30309 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 30310 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 4973 + components: + - type: Transform + pos: -83.5,-32.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -54.5,-42.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -73.5,-39.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: -89.5,-27.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: -84.5,-42.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + pos: 51.5,23.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 + - uid: 18328 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 18329 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 18330 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 18679 + components: + - type: Transform + pos: -34.5,22.5 + parent: 2 + - uid: 18680 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 + - uid: 18681 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - uid: 18828 + components: + - type: Transform + pos: -75.5,4.5 + parent: 2 + - uid: 18889 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 20492 + components: + - type: Transform + pos: -70.5,-21.5 + parent: 2 + - uid: 20889 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 20891 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 4985 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -68.5,-32.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-55.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -43.5,-48.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: -49.5,-40.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -47.5,-40.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 10887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-39.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + pos: -19.5,5.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-33.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-33.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-32.5 + parent: 2 + - uid: 14285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-34.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 15136 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 15335 + components: + - type: Transform + pos: -6.5,58.5 + parent: 2 + - uid: 15336 + components: + - type: Transform + pos: -2.5,58.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 17751 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 18423 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 18689 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 26745 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 30982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-54.5 + parent: 2 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 5009 + components: + - type: Transform + pos: -96.5,-20.5 + parent: 2 +- proto: RandomSnacks + entities: + - uid: 5010 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 5011 + components: + - type: Transform + pos: -83.5,-35.5 + parent: 2 + - uid: 11608 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 5012 + components: + - type: Transform + pos: -92.5,-31.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: -71.5,-37.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 5019 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 + - uid: 17539 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 17552 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 18521 + components: + - type: Transform + pos: -37.5,22.5 + parent: 2 + - uid: 20706 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 20877 + components: + - type: Transform + pos: 31.5,-67.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 5022 + components: + - type: Transform + pos: -90.5,-37.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -71.5,-37.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 16404 + components: + - type: Transform + pos: 40.5,18.5 + parent: 2 + - uid: 16409 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 16953 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 17640 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 17701 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 18126 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 18196 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 18522 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 18527 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 18747 + components: + - type: Transform + pos: -59.5,6.5 + parent: 2 + - uid: 18748 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 18749 + components: + - type: Transform + pos: -66.5,1.5 + parent: 2 + - uid: 18790 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -69.5,-18.5 + parent: 2 + - uid: 20707 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 20878 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 20879 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 +- proto: RandomVending + entities: + - uid: 5030 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: -70.5,-37.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 5036 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: 42.5,-45.5 + parent: 2 + - uid: 10992 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 11009 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 13518 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 20337 + components: + - type: Transform + pos: -72.5,-15.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 1331 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + pos: 41.5,-45.5 + parent: 2 + - uid: 11010 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 +- proto: RCD + entities: + - uid: 5044 + components: + - type: Transform + pos: 27.546553,-43.415794 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: -0.4916451,-52.470776 + parent: 2 + - uid: 15751 + components: + - type: Transform + pos: -8.5147,-67.40948 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 5045 + components: + - type: Transform + pos: 27.552856,-43.125805 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: 27.741982,-43.138412 + parent: 2 + - uid: 10822 + components: + - type: Transform + pos: -0.32143247,-52.395123 + parent: 2 + - uid: 10823 + components: + - type: Transform + pos: -0.21426153,-52.369907 + parent: 2 + - uid: 15764 + components: + - type: Transform + pos: -8.65304,-66.63622 + parent: 2 + - uid: 15766 + components: + - type: Transform + pos: -8.30929,-66.60497 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -8.481165,-66.40185 + parent: 2 +- proto: ReagentContainerCornmeal + entities: + - uid: 30785 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30797 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30798 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30799 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerFlour + entities: + - uid: 5047 + components: + - type: Transform + pos: -75.181564,-40.3063 + parent: 2 + - uid: 30789 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30790 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30791 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30792 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerRice + entities: + - uid: 5048 + components: + - type: Transform + pos: -75.550354,-40.27793 + parent: 2 + - uid: 30787 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30793 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30794 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30795 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 30796 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentGrinderMachineCircuitboard + entities: + - uid: 5049 + components: + - type: Transform + pos: -1.4722325,-35.250645 + parent: 2 +- proto: ReagentSlimeSpawner + entities: + - uid: 17874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,37.5 + parent: 2 +- proto: Recycler + entities: + - uid: 9686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: 30.5,-75.5 + parent: 2 +- proto: RegenerativeMesh + entities: + - uid: 5051 + components: + - type: Transform + pos: -40.718906,7.579443 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -27.525812,4.5400743 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 15733 + components: + - type: Transform + pos: -48.5,10.5 + parent: 2 + - uid: 16411 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 5053 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: 14.5,-65.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -20.5,-81.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -16.5,-81.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + pos: -70.5,44.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-58.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-56.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-54.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-52.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-50.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-64.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-66.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-64.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-66.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-64.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-66.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-64.5 + parent: 2 +- proto: ReinforcedUraniumWindow + entities: + - uid: 14766 + components: + - type: Transform + pos: -24.5,-76.5 + parent: 2 + - uid: 14771 + components: + - type: Transform + pos: -24.5,-66.5 + parent: 2 + - uid: 14772 + components: + - type: Transform + pos: -28.5,-71.5 + parent: 2 + - uid: 14773 + components: + - type: Transform + pos: -28.5,-69.5 + parent: 2 + - uid: 14774 + components: + - type: Transform + pos: -28.5,-73.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + pos: -20.5,-68.5 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: -20.5,-74.5 + parent: 2 + - uid: 15686 + components: + - type: Transform + pos: -20.5,-69.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + pos: -20.5,-75.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 1350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,8.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: 43.5,-46.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: 44.5,-26.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: 44.5,-25.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: 43.5,-18.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-11.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: 53.5,16.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: 34.5,33.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: 26.5,33.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: 28.5,34.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: -87.5,-26.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: -87.5,-29.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: -87.5,-28.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: -87.5,-25.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -69.5,-36.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: -91.5,-24.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: -76.5,-36.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: -85.5,-32.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: -89.5,-32.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: -88.5,-32.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: -66.5,-38.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: -66.5,-37.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: -77.5,-43.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: -76.5,-43.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: -73.5,-43.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: -74.5,-43.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: -71.5,-43.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: -70.5,-43.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: -67.5,-43.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: -68.5,-43.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: -92.5,-24.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: -78.5,-32.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: -74.5,-36.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: -67.5,-36.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -79.5,-32.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: -74.5,-39.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: -75.5,-39.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: -98.5,-34.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: -95.5,-30.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: -98.5,-33.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: -96.5,-30.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 50.5,-44.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-35.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-43.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-43.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-43.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-41.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-43.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-35.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-31.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-35.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-35.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-33.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-33.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-38.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 45.5,-33.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: 47.5,-33.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: 49.5,-33.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-36.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-38.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 50.5,-31.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-37.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-39.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: 47.5,-29.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: 49.5,-29.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-39.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: -27.5,-54.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: -25.5,-58.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: -19.5,-57.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: -21.5,-58.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: -41.5,-55.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: -40.5,-55.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: -46.5,-54.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: -45.5,-54.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: -50.5,-52.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: -57.5,-38.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -57.5,-40.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,8.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: -97.5,-34.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: -58.5,-50.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: -59.5,-50.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: -59.5,-52.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: -58.5,-52.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: -57.5,-45.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: -57.5,-46.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: -57.5,-47.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: -62.5,-42.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: -61.5,-42.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: -64.5,-37.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: -64.5,-38.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: -15.5,-77.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: -8.5,-68.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 40.5,-67.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: 41.5,-67.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: 40.5,-69.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 41.5,-69.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: 31.5,-75.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: 32.5,-76.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: -98.5,-32.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: -98.5,-31.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: -97.5,-31.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: -95.5,-35.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: -93.5,-38.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: -93.5,-37.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: -93.5,-36.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: -92.5,-40.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: -91.5,-40.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: -90.5,-40.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + pos: -88.5,-36.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: -87.5,-36.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: -81.5,-41.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: -87.5,-41.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: -87.5,-40.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: -85.5,-40.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: -85.5,-41.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: -89.5,-43.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: -89.5,-46.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: -89.5,-47.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: -87.5,-48.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: -86.5,-48.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: -85.5,-48.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: -81.5,-47.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: -81.5,-46.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + pos: -82.5,-44.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: -83.5,-43.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: -62.5,-31.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: -62.5,-29.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: -62.5,-28.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: -61.5,-28.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: -52.5,-22.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: -66.5,-11.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: -66.5,-9.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: -73.5,-27.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: -73.5,-28.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: -74.5,-28.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: -74.5,-30.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: -73.5,-30.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: -73.5,-31.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: -30.5,19.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,2.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: -29.5,19.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-31.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-43.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-41.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-31.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-35.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-36.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-33.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-33.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-31.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-39.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-39.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-39.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-41.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-41.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-41.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-44.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-28.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-40.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-48.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-49.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-49.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -23.5,-52.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: -71.5,-36.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: -72.5,-36.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: -96.5,-26.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -96.5,-25.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-12.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: 53.5,3.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: 53.5,5.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 55.5,3.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-12.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-11.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-9.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-9.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-37.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-36.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: -53.5,46.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: -53.5,45.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -54.5,44.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: -54.5,43.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: -55.5,43.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + pos: -56.5,43.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: -57.5,43.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + pos: -58.5,43.5 + parent: 2 + - uid: 5645 + components: + - type: Transform + pos: -59.5,43.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + pos: -60.5,43.5 + parent: 2 + - uid: 5647 + components: + - type: Transform + pos: -61.5,43.5 + parent: 2 + - uid: 5648 + components: + - type: Transform + pos: -62.5,43.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -63.5,43.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: -64.5,43.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -65.5,43.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -66.5,43.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -67.5,43.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -82.5,49.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -82.5,50.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: -77.5,45.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: -60.5,47.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: -59.5,47.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -58.5,47.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,34.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-62.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 41.5,-46.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: 40.5,-46.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 39.5,-46.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + pos: 43.5,-47.5 + parent: 2 + - uid: 9479 + components: + - type: Transform + pos: 42.5,-46.5 + parent: 2 + - uid: 9481 + components: + - type: Transform + pos: 43.5,-45.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-64.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-64.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: -13.5,-73.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 10051 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-64.5 + parent: 2 + - uid: 10991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,53.5 + parent: 2 + - uid: 10993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,54.5 + parent: 2 + - uid: 10994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,55.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: -57.5,65.5 + parent: 2 + - uid: 11001 + components: + - type: Transform + pos: -56.5,65.5 + parent: 2 + - uid: 11061 + components: + - type: Transform + pos: 38.5,-47.5 + parent: 2 + - uid: 11070 + components: + - type: Transform + pos: 38.5,-46.5 + parent: 2 + - uid: 11073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-25.5 + parent: 2 + - uid: 11074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-25.5 + parent: 2 + - uid: 11075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-25.5 + parent: 2 + - uid: 11526 + components: + - type: Transform + pos: 39.5,-42.5 + parent: 2 + - uid: 13501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,52.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + pos: -13.5,-75.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + pos: -13.5,-74.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 + - uid: 16179 + components: + - type: Transform + pos: -50.5,-54.5 + parent: 2 + - uid: 16304 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 16305 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 + - uid: 18150 + components: + - type: Transform + pos: -20.5,24.5 + parent: 2 + - uid: 18394 + components: + - type: Transform + pos: -56.5,16.5 + parent: 2 + - uid: 18395 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 18396 + components: + - type: Transform + pos: -57.5,18.5 + parent: 2 + - uid: 18397 + components: + - type: Transform + pos: -56.5,18.5 + parent: 2 + - uid: 18541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-11.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-9.5 + parent: 2 + - uid: 30393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,-36.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 5660 + components: + - type: Transform + pos: 10.274094,8.728569 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: 10.508469,8.494194 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: 10.742844,8.728569 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -53.387596,-39.371796 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 5664 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 +- proto: ResearchAndDevelopmentServerMachineCircuitboard + entities: + - uid: 5665 + components: + - type: Transform + pos: -3.4671142,-41.32955 + parent: 2 + - uid: 17740 + components: + - type: Transform + parent: 4024 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchComputerCircuitboard + entities: + - uid: 5666 + components: + - type: Transform + pos: -3.453498,-41.508015 + parent: 2 +- proto: Retractor + entities: + - uid: 18070 + components: + - type: Transform + pos: 1.4733367,23.429808 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 990 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - uid: 18481 + components: + - type: Transform + parent: 18477 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RGBStaff + entities: + - uid: 11890 + components: + - type: Transform + pos: -86.44035,62.501205 + parent: 2 + - uid: 11918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.06414,64.84566 + parent: 2 +- proto: RightArmSkeleton + entities: + - uid: 18162 + components: + - type: Transform + pos: -21.51953,23.895758 + parent: 2 +- proto: RightFootSkeleton + entities: + - uid: 18161 + components: + - type: Transform + pos: -21.48828,23.786383 + parent: 2 + - uid: 18303 + components: + - type: Transform + pos: -39.28889,21.478226 + parent: 2 +- proto: RightHandHuman + entities: + - uid: 30994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.606968,21.755861 + parent: 2 +- proto: RightHandSkeleton + entities: + - uid: 18164 + components: + - type: Transform + pos: -21.51953,23.895758 + parent: 2 +- proto: RightLegBorg + entities: + - uid: 5667 + components: + - type: Transform + pos: -2.2986965,-38.509598 + parent: 2 +- proto: RightLegSkeleton + entities: + - uid: 18163 + components: + - type: Transform + pos: -21.55078,23.864508 + parent: 2 +- proto: RiotLaserShield + entities: + - uid: 5670 + components: + - type: Transform + pos: -33.699963,-54.187656 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: -33.293713,-54.29703 + parent: 2 +- proto: RiotShield + entities: + - uid: 5672 + components: + - type: Transform + pos: -35.70116,-51.469624 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: -35.591785,-51.54775 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: -35.466785,-51.61025 + parent: 2 +- proto: RipleyCentralElectronics + entities: + - uid: 5675 + components: + - type: Transform + pos: 39.52179,-27.388924 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 34.498993,-25.580414 + parent: 2 + - type: ContainerContainer + containers: + mech-assembly-container: !type:Container + ents: + - 5677 + - 5679 + - 5678 + - uid: 5677 + components: + - type: Transform + parent: 5676 + - type: Physics + canCollide: False + - uid: 5678 + components: + - type: Transform + parent: 5676 + - type: Physics + canCollide: False + - uid: 5679 + components: + - type: Transform + parent: 5676 + - type: Physics + canCollide: False + - uid: 5681 + components: + - type: Transform + pos: 39.01067,-27.431477 + parent: 2 +- proto: RipleyPeripheralsElectronics + entities: + - uid: 5680 + components: + - type: Transform + pos: 38.52179,-27.388924 + parent: 2 +- proto: RobocopCircuitBoard + entities: + - uid: 13877 + components: + - type: Transform + pos: -0.37268686,53.36851 + parent: 2 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 5682 + components: + - type: Transform + pos: 12.4953,-13.585321 + parent: 2 +- proto: RockGuitarInstrument + entities: + - uid: 16053 + components: + - type: Transform + pos: 48.46467,18.869972 + parent: 2 +- proto: RollerBed + entities: + - uid: 5683 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 +- proto: RollingPin + entities: + - uid: 17667 + components: + - type: Transform + pos: 35.64021,-5.460987 + parent: 2 + - uid: 27489 + components: + - type: Transform + pos: 8.5391655,-1.302002 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 5684 + components: + - type: Transform + pos: -4.347193,-26.237097 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: -39.714764,-52.534874 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: 2.8969877,-11.258837 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 29.73973,-13.519801 + parent: 2 + - uid: 14125 + components: + - type: Transform + pos: 46.751717,-44.25687 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 5688 + components: + - type: Transform + pos: -4.353497,-26.539698 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: -19.2384,-23.104834 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: 23.728718,-41.503464 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 10.744853,-22.001062 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: -44.291424,6.1039815 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: 36.715027,-11.489425 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: -39.441383,-52.49099 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: 2.8969877,-11.514156 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: 29.73973,-13.406326 + parent: 2 + - uid: 14126 + components: + - type: Transform + pos: 46.751717,-44.48382 + parent: 2 +- proto: RubberStampTrader + entities: + - uid: 5697 + components: + - type: Transform + pos: 34.487278,-10.491542 + parent: 2 +- proto: SalvageLootSpawner + entities: + - uid: 5702 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 10076 + components: + - type: Transform + pos: 61.5,-8.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 5700 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 +- proto: Saw + entities: + - uid: 739 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False + - uid: 5703 + components: + - type: Transform + pos: -44.452946,-6.1606507 + parent: 2 +- proto: SawElectric + entities: + - uid: 740 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False + - uid: 5704 + components: + - type: Transform + pos: -43.77691,-6.179962 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: 20.497751,7.421182 + parent: 2 +- proto: Scalpel + entities: + - uid: 741 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False + - uid: 5706 + components: + - type: Transform + pos: -43.69644,-6.5389013 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: 20.515535,7.702432 + parent: 2 +- proto: Screen + entities: + - uid: 2201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 11817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 2 + - uid: 30152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + - uid: 30153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 30154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - uid: 30211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + - uid: 30367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-34.5 + parent: 2 + - uid: 30800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-42.5 + parent: 2 + - uid: 30801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 + parent: 2 + - uid: 30802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-58.5 + parent: 2 + - uid: 30803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 2 + - uid: 30804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-66.5 + parent: 2 + - uid: 30812 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 30813 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 + - uid: 31001 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 31002 + components: + - type: Transform + pos: -50.5,-41.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 5708 + components: + - type: Transform + pos: -47.469055,-44.604263 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: 28.534122,-19.430408 + parent: 2 + - uid: 14622 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SecurityTechFab + entities: + - uid: 5710 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 +- proto: SecurityTechFabCircuitboard + entities: + - uid: 5711 + components: + - type: Transform + pos: -4.45418,-41.52234 + parent: 2 + - uid: 10236 + components: + - type: Transform + pos: -4.4604836,-41.34582 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 5712 + components: + - type: Transform + pos: -88.5,-45.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 11139 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 +- proto: SeedExtractorMachineCircuitboard + entities: + - uid: 5714 + components: + - type: Transform + pos: -1.4598516,-37.531704 + parent: 2 +- proto: ShardGlass + entities: + - uid: 17992 + components: + - type: Transform + pos: 24.717773,25.615337 + parent: 2 + - uid: 17993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.0582,24.998316 + parent: 2 + - uid: 17994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.568838,22.189804 + parent: 2 + - uid: 17995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.760326,20.828102 + parent: 2 + - uid: 17996 + components: + - type: Transform + pos: 26.0582,22.104698 + parent: 2 + - uid: 17997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.696499,32.565296 + parent: 2 + - uid: 17998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.696499,31.926996 + parent: 2 + - uid: 17999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.526283,38.175568 + parent: 2 + - uid: 18000 + components: + - type: Transform + pos: 36.483395,25.508427 + parent: 2 + - uid: 18001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.611053,25.8063 + parent: 2 + - uid: 18002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.483395,21.444595 + parent: 2 + - uid: 18003 + components: + - type: Transform + pos: 36.50467,20.870129 + parent: 2 + - uid: 18077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.3795867,24.570433 + parent: 2 + - uid: 18172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.691391,23.11906 + parent: 2 + - uid: 18173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.2871358,21.395657 + parent: 2 + - uid: 19952 + components: + - type: Transform + pos: -66.49225,-29.444859 + parent: 2 + - uid: 19953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.29277,-28.61507 + parent: 2 +- proto: ShardGlassUranium + entities: + - uid: 10945 + components: + - type: Transform + pos: -79.47666,58.617794 + parent: 2 +- proto: SheetGlass + entities: + - uid: 5715 + components: + - type: Transform + pos: 23.656643,-48.34321 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: 6.371818,-38.571907 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: 9.408581,-50.446384 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: 23.656643,-48.34321 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: 20.424122,10.827896 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: 32.8778,-0.2866993 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: 32.8778,-0.2866993 + parent: 2 + - uid: 9995 + components: + - type: Transform + pos: 9.571307,-50.44163 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: 1.5353432,44.540283 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 5722 + components: + - type: Transform + pos: 52.611485,-4.4123855 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: 23.484531,-49.48334 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: 1.5140667,44.582836 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 5724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.484816,-6.5257974 + parent: 2 + - uid: 5725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.484816,-6.5257974 + parent: 2 + - uid: 5726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.50044,-6.5101724 + parent: 2 + - uid: 5727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.484816,-6.5257974 + parent: 2 + - uid: 5728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.484816,-6.5257974 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: -33.51365,-15.370669 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: -55.48568,0.49068385 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: -55.470055,0.49068385 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: -55.470055,0.49068385 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: -55.470055,0.49068385 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: 28.517113,-12.304414 + parent: 2 + - type: Stack + count: 15 + - type: Item + size: 15 + - uid: 17923 + components: + - type: Transform + pos: 29.464289,20.632153 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 5735 + components: + - type: Transform + pos: 6.684318,-38.368782 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 27.632128,-49.419643 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 27.632128,-49.419643 + parent: 2 +- proto: SheetPlasteel10 + entities: + - uid: 5738 + components: + - type: Transform + pos: -11.457502,-0.4260831 + parent: 2 +- proto: SheetRGlass + entities: + - uid: 5739 + components: + - type: Transform + pos: 23.297306,-48.24234 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: 23.297306,-48.24234 + parent: 2 + - uid: 15748 + components: + - type: Transform + pos: -11.42095,-68.4251 + parent: 2 +- proto: SheetRGlass1 + entities: + - uid: 5741 + components: + - type: Transform + pos: 2.4460003,-34.329178 + parent: 2 + - type: Stack + count: 30 + - type: Item + size: 30 +- proto: SheetSteel + entities: + - uid: 148 + components: + - type: Transform + pos: 24.44546,-55.42284 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: 9.49934,-51.075146 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: 32.324608,-0.30797577 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: -53.81754,3.6156838 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 2.5102525,-34.27921 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 20.578938,10.569983 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: 32.324608,-0.30797577 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: 27.140402,-49.4291 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: 27.140402,-49.4291 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: 9.6790085,-50.96167 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: 18.421515,24.552383 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: 18.62464,24.552383 + parent: 2 +- proto: SheetSteel10 + entities: + - uid: 5750 + components: + - type: Transform + pos: -53.578213,-37.265152 + parent: 2 + - uid: 16285 + components: + - type: Transform + pos: 2.4594657,-45.503525 + parent: 2 +- proto: Shovel + entities: + - uid: 5751 + components: + - type: Transform + pos: 46.738865,-9.444438 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: -6.600393,40.472527 + parent: 2 + - uid: 16594 + components: + - type: Transform + pos: 4.6308746,-43.527637 + parent: 2 + - uid: 18311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.401604,25.582312 + parent: 2 +- proto: ShowcaseRobot + entities: + - uid: 13488 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 +- proto: ShowcaseRobotWhite + entities: + - uid: 13490 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 5753 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,2.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,23.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - uid: 10987 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-47.5 + parent: 2 + - uid: 16317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-46.5 + parent: 2 + - uid: 16318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-45.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-61.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-61.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-62.5 + parent: 2 + - uid: 17756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-62.5 + parent: 2 + - uid: 18111 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 18112 + components: + - type: Transform + pos: -13.5,17.5 + parent: 2 + - uid: 18639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-17.5 + parent: 2 + - uid: 18640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-16.5 + parent: 2 + - uid: 19301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-60.5 + parent: 2 + - uid: 19563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-60.5 + parent: 2 + - uid: 21602 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 5765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-62.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: -65.5,3.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: -65.5,2.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: -65.5,1.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: -57.5,-39.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: -57.5,-40.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: -67.5,-36.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: -68.5,-36.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: -69.5,-36.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: -96.5,-30.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: -95.5,-30.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-2.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-44.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-42.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-43.5 + parent: 2 + - uid: 12011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-16.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-16.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 13416 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 13418 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 13419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 18872 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 18873 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 18874 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 18875 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 26705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - uid: 26706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-35.5 + parent: 2 + - uid: 26707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 26708 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 26709 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 +- proto: ShuttersWindowOpen + entities: + - uid: 5840 + components: + - type: Transform + pos: -57.5,-38.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 5841 + components: + - type: Transform + pos: 17.523144,-17.442623 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: 18.609015,25.614883 + parent: 2 +- proto: SignAi + entities: + - uid: 9004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 1398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-17.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: -25.126268,-54.810555 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4475: + - Pressed: Toggle + 4494: + - Pressed: Toggle + 4495: + - Pressed: Toggle + - uid: 5844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.25227,-17.186508 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4748: + - Pressed: Toggle + - uid: 5846 + components: + - type: Transform + pos: 12.99861,-24.802841 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4480: + - Pressed: Toggle + 4671: + - Pressed: Toggle + - uid: 5847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.8129525,-25.144423 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 4508: + - Pressed: Toggle + 4509: + - Pressed: Toggle + 4618: + - Pressed: Toggle + 4481: + - Pressed: Toggle + - uid: 5849 + components: + - type: Transform + pos: 11.996245,-24.802841 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 813: + - Pressed: Toggle + 812: + - Pressed: Toggle + 809: + - Pressed: Toggle + 818: + - Pressed: Toggle + 811: + - Pressed: Toggle + - uid: 5850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.752673,-27.180616 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5770: + - Pressed: Toggle + 5771: + - Pressed: Toggle + 5769: + - Pressed: Toggle + - uid: 5851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.81235,-52.486195 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4735: + - Pressed: Toggle + - uid: 5853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.235687,5.815672 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5772: + - Pressed: Toggle + 5773: + - Pressed: Toggle + 5766: + - Pressed: Toggle + 5765: + - Pressed: Toggle + 5774: + - Pressed: Toggle + - uid: 5855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.181934,6.8054276 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4492: + - Pressed: Toggle + 4493: + - Pressed: Toggle + - uid: 5856 + components: + - type: Transform + pos: -82.51105,-32.77883 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4716: + - Pressed: Toggle + - uid: 5857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.07329,5.679408 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 827: + - Pressed: Toggle + 824: + - Pressed: Toggle + 815: + - Pressed: Toggle + 823: + - Pressed: Toggle + 822: + - Pressed: Toggle + 821: + - Pressed: Toggle + 826: + - Pressed: Toggle + 825: + - Pressed: Toggle + - uid: 5858 + components: + - type: Transform + pos: -33.855774,2.280222 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4476: + - Pressed: Toggle + - uid: 5859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.53056,-1.1829906 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4496: + - Pressed: Toggle + 4478: + - Pressed: Toggle + 4510: + - Pressed: Toggle + 4570: + - Pressed: Toggle + - uid: 5860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.783259,-23.87482 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4521: + - Pressed: Toggle + 4522: + - Pressed: Toggle + 4670: + - Pressed: Toggle + - uid: 5861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.7870483,-27.81458 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 801: + - Pressed: Toggle + - uid: 5862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.86762,4.828344 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4569: + - Pressed: Toggle + 4568: + - Pressed: Toggle + - uid: 5864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.835964,-1.0796164 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4516: + - Pressed: Toggle + 4679: + - Pressed: Toggle + - uid: 5865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.809302,-8.75151 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4517: + - Pressed: Toggle + - uid: 5866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.7829999,-35.250935 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4525: + - Pressed: Toggle + 4526: + - Pressed: Toggle + - uid: 5867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.158928,-58.283916 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 806: + - Pressed: Toggle + 805: + - Pressed: Toggle + - uid: 5868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.80947,-6.819947 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4684: + - Pressed: Toggle + 4683: + - Pressed: Toggle + 4685: + - Pressed: Toggle + - uid: 5869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.191345,-0.48317128 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4564: + - Pressed: Toggle + 4563: + - Pressed: Toggle + - uid: 5870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.18713,-5.298498 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4565: + - Pressed: Toggle + - uid: 5871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.531433,-5.1846237 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4477: + - Pressed: Toggle + - uid: 5872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.742861,-4.159877 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4573: + - Pressed: Toggle + 4571: + - Pressed: Toggle + - uid: 5873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.192041,-10.847764 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4700: + - Pressed: Toggle + 4701: + - Pressed: Toggle + - uid: 5874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.83511,-4.8061275 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4702: + - Pressed: Toggle + 4699: + - Pressed: Toggle + - uid: 5875 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.809713,-5.467603 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4698: + - Pressed: Toggle + - uid: 5877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.80823,6.2169976 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5854: + - Pressed: Toggle + 5876: + - Pressed: Toggle + 4572: + - Pressed: Toggle + - uid: 5878 + components: + - type: Transform + pos: -41.52727,-5.8063555 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4576: + - Pressed: Toggle + 4704: + - Pressed: Toggle + 4703: + - Pressed: Toggle + - uid: 5879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.03769,-10.181275 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4577: + - Pressed: Toggle + 4578: + - Pressed: Toggle + - uid: 5880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.18189,-13.26306 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5757: + - Pressed: Toggle + 5758: + - Pressed: Toggle + 5759: + - Pressed: Toggle + - uid: 5881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.18189,-13.704352 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4707: + - Pressed: Toggle + 4581: + - Pressed: Toggle + 4580: + - Pressed: Toggle + - uid: 5882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.24179,-13.181256 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4579: + - Pressed: Toggle + - uid: 5883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.812088,-11.542061 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4582: + - Pressed: Toggle + - uid: 5884 + components: + - type: Transform + pos: -45.23537,15.17632 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4567: + - Pressed: Toggle + - uid: 5885 + components: + - type: Transform + pos: -52.519627,4.4516516 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4584: + - Pressed: Toggle + 4583: + - Pressed: Toggle + 4590: + - Pressed: Toggle + 4589: + - Pressed: Toggle + 4588: + - Pressed: Toggle + 4587: + - Pressed: Toggle + 4586: + - Pressed: Toggle + 4585: + - Pressed: Toggle + - uid: 5886 + components: + - type: Transform + pos: -52.519627,4.1875577 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5787: + - Pressed: Toggle + 5788: + - Pressed: Toggle + 5784: + - Pressed: Toggle + 5785: + - Pressed: Toggle + 5786: + - Pressed: Toggle + - uid: 5887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.187458,-37.83682 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 833: + - Pressed: Toggle + 832: + - Pressed: Toggle + 799: + - Pressed: Toggle + 800: + - Pressed: Toggle + - uid: 5888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.187458,-37.54052 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5840: + - Pressed: Toggle + 5789: + - Pressed: Toggle + 5790: + - Pressed: Toggle + - uid: 5889 + components: + - type: Transform + pos: -59.903664,-37.8104 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 832: + - Pressed: Toggle + 833: + - Pressed: Toggle + 799: + - Pressed: Toggle + 800: + - Pressed: Toggle + - uid: 5890 + components: + - type: Transform + pos: -58.138496,-37.8104 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4714: + - Pressed: Toggle + - uid: 5891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.28773,-36.181625 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 828: + - Pressed: Toggle + 829: + - Pressed: Toggle + - uid: 5892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.53092,-36.181328 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4596: + - Pressed: Toggle + 4595: + - Pressed: Toggle + - uid: 5893 + components: + - type: Transform + pos: -56.287315,-36.775696 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4593: + - Pressed: Toggle + 4594: + - Pressed: Toggle + - uid: 5894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.18631,-29.743414 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5794: + - Pressed: Toggle + 5795: + - Pressed: Toggle + - uid: 5895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.717545,-36.185284 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5791: + - Pressed: Toggle + 5792: + - Pressed: Toggle + 5793: + - Pressed: Toggle + - uid: 5896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.81473,-33.718086 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4598: + - Pressed: Toggle + 4597: + - Pressed: Toggle + - uid: 5897 + components: + - type: Transform + pos: -78.5184,-39.782803 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4600: + - Pressed: Toggle + 4601: + - Pressed: Toggle + 4599: + - Pressed: Toggle + - uid: 5898 + components: + - type: Transform + pos: -90.51176,-32.7797 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4602: + - Pressed: Toggle + - uid: 5899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -94.847466,-28.741049 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4725: + - Pressed: Toggle + - uid: 5900 + components: + - type: Transform + pos: -93.51259,-27.77665 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4729: + - Pressed: Toggle + 4722: + - Pressed: Toggle + 4721: + - Pressed: Toggle + 4720: + - Pressed: Toggle + 4719: + - Pressed: Toggle + 4718: + - Pressed: Toggle + 4717: + - Pressed: Toggle + - uid: 5901 + components: + - type: Transform + pos: -94.52013,-24.783514 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4728: + - Pressed: Toggle + - uid: 5902 + components: + - type: Transform + pos: -88.51588,-24.783514 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4727: + - Pressed: Toggle + - uid: 5903 + components: + - type: Transform + pos: -88.51588,-27.780878 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4726: + - Pressed: Toggle + - uid: 5904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.2599,-35.15598 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4724: + - Pressed: Toggle + 4723: + - Pressed: Toggle + - uid: 5905 + components: + - type: Transform + pos: -85.51238,-42.778122 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4603: + - Pressed: Toggle + 4604: + - Pressed: Toggle + - uid: 5910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.841618,-48.96806 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4697: + - Pressed: Toggle + 4559: + - Pressed: Toggle + 4686: + - Pressed: Toggle + 4550: + - Pressed: Toggle + 28538: + - Pressed: Toggle + - uid: 5911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.189957,-42.996014 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4686: + - Pressed: Toggle + 4550: + - Pressed: Toggle + 4697: + - Pressed: Toggle + 28538: + - Pressed: Toggle + 4559: + - Pressed: Toggle + - uid: 5912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.25182,-48.2878 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4560: + - Pressed: Toggle + 4554: + - Pressed: Toggle + 28537: + - Pressed: Toggle + - uid: 5913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.782785,-51.28702 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4730: + - Pressed: Toggle + 4556: + - Pressed: Toggle + 4555: + - Pressed: Toggle + - uid: 5916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-55.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.242653,-40.18323 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4694: + - Pressed: Toggle + - uid: 5922 + components: + - type: Transform + pos: -27.526964,-36.806107 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4733: + - Pressed: Toggle + 4732: + - Pressed: Toggle + - uid: 5923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.8376,-38.939274 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4734: + - Pressed: Toggle + 4551: + - Pressed: Toggle + 4552: + - Pressed: Toggle + 4693: + - Pressed: Toggle + - uid: 5924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.21729,-33.717533 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 830: + - Pressed: Toggle + 831: + - Pressed: Toggle + - uid: 5925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.020573,-35.190243 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4693: + - Pressed: Toggle + 4552: + - Pressed: Toggle + 4551: + - Pressed: Toggle + 4734: + - Pressed: Toggle + - uid: 5926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.810209,-36.872196 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4606: + - Pressed: Toggle + - uid: 5927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.810209,-36.405685 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5796: + - Pressed: Toggle + 5797: + - Pressed: Toggle + 5798: + - Pressed: Toggle + 5799: + - Pressed: Toggle + - uid: 5928 + components: + - type: Transform + pos: -15.874472,-32.77974 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4737: + - Pressed: Toggle + - uid: 5929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.8439,-23.063694 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4743: + - Pressed: Toggle + - uid: 5930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.8439,-23.25282 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5800: + - Pressed: Toggle + - uid: 5931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.810177,-23.062462 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4742: + - Pressed: Toggle + - uid: 5932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.810177,-23.251587 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5801: + - Pressed: Toggle + - uid: 5933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.8086,-23.062462 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4741: + - Pressed: Toggle + - uid: 5934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.8086,-23.251587 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5802: + - Pressed: Toggle + - uid: 5935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.814333,-5.9832172 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4609: + - Pressed: Toggle + 4610: + - Pressed: Toggle + - uid: 5936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.480191,-8.188209 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4608: + - Pressed: Toggle + 4607: + - Pressed: Toggle + 4744: + - Pressed: Toggle + 4745: + - Pressed: Toggle + - uid: 5937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.253849,-9.184635 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4611: + - Pressed: Toggle + 4612: + - Pressed: Toggle + 4613: + - Pressed: Toggle + 4614: + - Pressed: Toggle + - uid: 5938 + components: + - type: Transform + pos: 17.253849,-9.777228 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4615: + - Pressed: Toggle + - uid: 5939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.220732,-20.717552 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4617: + - Pressed: Toggle + 4616: + - Pressed: Toggle + - uid: 5940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.745549,-21.29083 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4519: + - Pressed: Toggle + 4520: + - Pressed: Toggle + 4518: + - Pressed: Toggle + - uid: 5941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.2181497,-26.770203 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4678: + - Pressed: Toggle + 4677: + - Pressed: Toggle + - uid: 5942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.2181497,-27.028673 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 839: + - Pressed: Toggle + 840: + - Pressed: Toggle + 841: + - Pressed: Toggle + - uid: 5943 + components: + - type: Transform + pos: 2.5623362,-11.325821 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 816: + - Pressed: Toggle + 842: + - Pressed: Toggle + 845: + - Pressed: Toggle + 844: + - Pressed: Toggle + 820: + - Pressed: Toggle + 814: + - Pressed: Toggle + 817: + - Pressed: Toggle + 843: + - Pressed: Toggle + 837: + - Pressed: Toggle + 838: + - Pressed: Toggle + 846: + - Pressed: Toggle + - uid: 5944 + components: + - type: Transform + pos: 2.3606026,-11.325821 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4505: + - Pressed: Toggle + 4504: + - Pressed: Toggle + 4502: + - Pressed: Toggle + 4752: + - Pressed: Toggle + 4619: + - Pressed: Toggle + 4753: + - Pressed: Toggle + 4503: + - Pressed: Toggle + 4750: + - Pressed: Toggle + - uid: 5945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.099722,-36.212093 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4754: + - Pressed: Toggle + - uid: 5946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.806686,-22.562117 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5811: + - Pressed: Toggle + 5810: + - Pressed: Toggle + 5809: + - Pressed: Toggle + 5808: + - Pressed: Toggle + 5807: + - Pressed: Toggle + - uid: 5947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.806686,-22.782763 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4497: + - Pressed: Toggle + - uid: 5949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.7829999,-35.71744 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 796: + - Pressed: Toggle + - uid: 5950 + components: + - type: Transform + pos: -4.523516,-39.780247 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4756: + - Pressed: Toggle + - uid: 5951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.2069345,-39.21835 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4523: + - Pressed: Toggle + 4524: + - Pressed: Toggle + - uid: 5952 + components: + - type: Transform + pos: 24.199652,-32.746143 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5753: + - Pressed: Toggle + 5754: + - Pressed: Toggle + - uid: 5953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.183619,-34.047882 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4680: + - Pressed: Toggle + 4681: + - Pressed: Toggle + - uid: 5954 + components: + - type: Transform + pos: 28.1441,-31.812809 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4530: + - Pressed: Toggle + 4682: + - Pressed: Toggle + 4757: + - Pressed: Toggle + 4620: + - Pressed: Toggle + - uid: 5956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.7505,-3.28634 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5814: + - Pressed: Toggle + 5813: + - Pressed: Toggle + 5812: + - Pressed: Toggle + 5815: + - Pressed: Toggle + 5816: + - Pressed: Toggle + - uid: 5957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.7505,-3.6835032 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4488: + - Pressed: Toggle + 4529: + - Pressed: Toggle + - uid: 5958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.812485,-0.8718976 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4479: + - Pressed: Toggle + - uid: 5959 + components: + - type: Transform + pos: 40.68273,0.25341028 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5819: + - Pressed: Toggle + 5818: + - Pressed: Toggle + 5817: + - Pressed: Toggle + - uid: 5960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.68273,0.782961 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5819: + - Pressed: Toggle + 5818: + - Pressed: Toggle + 5817: + - Pressed: Toggle + - uid: 5961 + components: + - type: Transform + pos: 40.283077,0.24771869 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4622: + - Pressed: Toggle + 4621: + - Pressed: Toggle + - uid: 5962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.68501,0.77992904 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5760: + - Pressed: Toggle + 5761: + - Pressed: Toggle + - uid: 5963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.752537,0.7144635 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5760: + - Pressed: Toggle + 5761: + - Pressed: Toggle + - uid: 5964 + components: + - type: Transform + pos: 48.479263,4.226328 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 802: + - Pressed: Toggle + 803: + - Pressed: Toggle + 804: + - Pressed: Toggle + - uid: 5965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.222935,0.71616143 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4625: + - Pressed: Toggle + 4626: + - Pressed: Toggle + 4758: + - Pressed: Toggle + 4776: + - Pressed: Toggle + - uid: 5966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.752056,-3.279761 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4623: + - Pressed: Toggle + 4624: + - Pressed: Toggle + - uid: 5967 + components: + - type: Transform + pos: 31.279638,16.253609 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4628: + - Pressed: Toggle + 4627: + - Pressed: Toggle + - uid: 5968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.428486,12.814516 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4629: + - Pressed: Toggle + - uid: 5969 + components: + - type: Transform + pos: 38.28162,10.194214 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4631: + - Pressed: Toggle + 4630: + - Pressed: Toggle + - uid: 5970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.811653,1.71357 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 848: + - Pressed: Toggle + 847: + - Pressed: Toggle + - uid: 5971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.811653,1.3101027 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4634: + - Pressed: Toggle + 4632: + - Pressed: Toggle + 4633: + - Pressed: Toggle + - uid: 5972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5673048,-27.180098 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5775: + - Pressed: Toggle + 5767: + - Pressed: Toggle + - uid: 5973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.816924,8.072155 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4637: + - Pressed: Toggle + 4636: + - Pressed: Toggle + - uid: 5974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.18425,9.244417 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4650: + - Pressed: Toggle + 4651: + - Pressed: Toggle + 4649: + - Pressed: Toggle + - uid: 5975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.78319,12.074764 + parent: 2 + - type: SignalSwitch + state: True + - type: DeviceLinkSource + linkedPorts: + 4759: + - Pressed: Toggle + 4760: + - Pressed: Toggle + - uid: 5976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.189396,7.533418 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4635: + - Pressed: Toggle + 24030: + - Pressed: Toggle + 24031: + - Pressed: Toggle + - uid: 5977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.190147,-10.464019 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5828: + - Pressed: Toggle + 5829: + - Pressed: Toggle + 5830: + - Pressed: Toggle + 5831: + - Pressed: Toggle + 5832: + - Pressed: Toggle + 5833: + - Pressed: Toggle + 5834: + - Pressed: Toggle + - uid: 5978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.190147,-10.249677 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4642: + - Pressed: Toggle + - uid: 5979 + components: + - type: Transform + pos: 39.81349,-8.810236 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4762: + - Pressed: Toggle + 4644: + - Pressed: Toggle + - uid: 5980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.13496,-13.157219 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4646: + - Pressed: Toggle + 4777: + - Pressed: Toggle + 4761: + - Pressed: Toggle + 4764: + - Pressed: Toggle + - uid: 5981 + components: + - type: Transform + pos: 37.572937,-24.803774 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4665: + - Pressed: Toggle + 4664: + - Pressed: Toggle + - uid: 5982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.191723,-23.198032 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4639: + - Pressed: Toggle + - uid: 5983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.809408,-25.1721 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4640: + - Pressed: Toggle + 4641: + - Pressed: Toggle + 4763: + - Pressed: Toggle + - uid: 5984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.961695,-16.186237 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4485: + - Pressed: Toggle + - uid: 5985 + components: + - type: Transform + pos: 31.136786,-16.809675 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4638: + - Pressed: Toggle + - uid: 5986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.814747,-16.26231 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4643: + - Pressed: Toggle + 4487: + - Pressed: Toggle + 4486: + - Pressed: Toggle + 4645: + - Pressed: Toggle + - uid: 5990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.811924,-58.283302 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 806: + - Pressed: Toggle + 805: + - Pressed: Toggle + - uid: 5992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.999965,-54.182484 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4547: + - Pressed: Toggle + - uid: 5993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.185098,-50.532127 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4655: + - Pressed: Toggle + - uid: 5994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.151382,-49.19268 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4543: + - Pressed: Toggle + 4781: + - Pressed: Toggle + 4548: + - Pressed: Toggle + - uid: 5995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.189995,-41.718105 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5837: + - Pressed: Toggle + 5836: + - Pressed: Toggle + 5839: + - Pressed: Toggle + 5838: + - Pressed: Toggle + 5835: + - Pressed: Toggle + - uid: 5996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.189995,-41.251595 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4656: + - Pressed: Toggle + 4657: + - Pressed: Toggle + - uid: 5997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.190556,-48.253 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4549: + - Pressed: Toggle + 4654: + - Pressed: Toggle + - uid: 5999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.159046,-64.164024 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 810: + - Pressed: Toggle + 849: + - Pressed: Toggle + 808: + - Pressed: Toggle + - uid: 6000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.81087,-61.838047 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 808: + - Pressed: Toggle + 849: + - Pressed: Toggle + 810: + - Pressed: Toggle + - uid: 6001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.81087,-61.516533 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4785: + - Pressed: Toggle + 4783: + - Pressed: Toggle + 4784: + - Pressed: Toggle + - uid: 6002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.155849,-58.672844 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4782: + - Pressed: Toggle + 4780: + - Pressed: Toggle + - uid: 6003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.187275,-61.808064 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5768: + - Pressed: Toggle + - uid: 6168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.518936,11.813821 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4566: + - Pressed: Toggle + - uid: 9264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.739788,-7.18803 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4574: + - Pressed: Toggle + 4575: + - Pressed: Toggle + - uid: 10880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.8121704,-53.012543 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10683: + - Pressed: Toggle + 10682: + - Pressed: Toggle + 10680: + - Pressed: Toggle + 10679: + - Pressed: Toggle + 10681: + - Pressed: Toggle + 4535: + - Pressed: Toggle + 10846: + - Pressed: Toggle + 4538: + - Pressed: Toggle + 4536: + - Pressed: Toggle + 4539: + - Pressed: Toggle + 4537: + - Pressed: Toggle + - uid: 10881 + components: + - type: Transform + pos: -8.5185375,-47.78293 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4537: + - Pressed: Toggle + 4535: + - Pressed: Toggle + 10683: + - Pressed: Toggle + 10846: + - Pressed: Toggle + 10681: + - Pressed: Toggle + 10679: + - Pressed: Toggle + 10680: + - Pressed: Toggle + 4539: + - Pressed: Toggle + 4536: + - Pressed: Toggle + 4538: + - Pressed: Toggle + 10682: + - Pressed: Toggle + - uid: 10882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.189462,-61.642025 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4539: + - Pressed: Toggle + 4536: + - Pressed: Toggle + 4538: + - Pressed: Toggle + 10681: + - Pressed: Toggle + 10679: + - Pressed: Toggle + 10682: + - Pressed: Toggle + 10680: + - Pressed: Toggle + 4537: + - Pressed: Toggle + 4535: + - Pressed: Toggle + 10683: + - Pressed: Toggle + 10846: + - Pressed: Toggle + - uid: 10883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.7506495,-54.187077 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4534: + - Pressed: Toggle + 4540: + - Pressed: Toggle + 4533: + - Pressed: Toggle + - uid: 10884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.004947,-49.187397 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4531: + - Pressed: Toggle + 4532: + - Pressed: Toggle + - uid: 10885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.186373,-55.977814 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10678: + - Pressed: Toggle + - uid: 10886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.808513,-62.18288 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10868: + - Pressed: Toggle + - uid: 11336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.81117,45.183277 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11363: + - Pressed: Toggle + - uid: 11389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.810936,45.526543 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11321: + - Pressed: Toggle + 11320: + - Pressed: Toggle + - uid: 11390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.18911,49.503414 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11318: + - Pressed: Toggle + 11319: + - Pressed: Toggle + - uid: 11391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.189125,48.496998 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11323: + - Pressed: Toggle + 11322: + - Pressed: Toggle + 11325: + - Pressed: Toggle + 11324: + - Pressed: Toggle + - uid: 11392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.94789,52.81285 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11313: + - Pressed: Toggle + 11312: + - Pressed: Toggle + - uid: 11393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.73619,56.806385 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11314: + - Pressed: Toggle + 11315: + - Pressed: Toggle + - uid: 11394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.81353,58.76444 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11317: + - Pressed: Toggle + 11097: + - Pressed: Toggle + - uid: 11395 + components: + - type: Transform + pos: -70.75727,57.192024 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11306: + - Pressed: Toggle + 11307: + - Pressed: Toggle + - uid: 11396 + components: + - type: Transform + pos: -70.74122,47.15718 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11298: + - Pressed: Toggle + 11299: + - Pressed: Toggle + - uid: 11397 + components: + - type: Transform + pos: -62.51877,47.1887 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11245: + - Pressed: Toggle + 11246: + - Pressed: Toggle + 11247: + - Pressed: Toggle + - uid: 11398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.1848,48.784706 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11194: + - Pressed: Toggle + 11196: + - Pressed: Toggle + 11195: + - Pressed: Toggle + 11193: + - Pressed: Toggle + - uid: 11399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.940308,52.81018 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11202: + - Pressed: Toggle + 11201: + - Pressed: Toggle + - uid: 11400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.18834,60.878735 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3716: + - Pressed: Toggle + 4161: + - Pressed: Toggle + 11239: + - Pressed: Toggle + - uid: 11403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.09455,61.812218 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11308: + - Pressed: Toggle + 11309: + - Pressed: Toggle + - uid: 11404 + components: + - type: Transform + pos: -63.526314,62.18769 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11311: + - Pressed: Toggle + 11310: + - Pressed: Toggle + - uid: 11405 + components: + - type: Transform + pos: -70.24663,57.192024 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11300: + - Pressed: Toggle + 11302: + - Pressed: Toggle + 11301: + - Pressed: Toggle + 11197: + - Pressed: Toggle + 11198: + - Pressed: Toggle + 11304: + - Pressed: Toggle + 11303: + - Pressed: Toggle + 11305: + - Pressed: Toggle + - uid: 11480 + components: + - type: Transform + pos: -54.523796,64.18851 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11223: + - Pressed: Toggle + 11224: + - Pressed: Toggle + - uid: 11482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.253656,5.813272 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5762: + - Pressed: Toggle + 5763: + - Pressed: Toggle + 5764: + - Pressed: Toggle + - uid: 11484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.944817,-7.18803 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5780: + - Pressed: Toggle + 5779: + - Pressed: Toggle + 5778: + - Pressed: Toggle + 5777: + - Pressed: Toggle + 5776: + - Pressed: Toggle + 5783: + - Pressed: Toggle + - uid: 11485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.19113,22.179775 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18632: + - Pressed: Toggle + - uid: 11486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.80867,-39.008636 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9503: + - Pressed: Toggle + 13538: + - Pressed: Toggle + 13537: + - Pressed: Toggle + - uid: 11517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.1914325,8.747132 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13381: + - Pressed: Toggle + 13380: + - Pressed: Toggle + - uid: 11611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.192677,-17.878895 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11615: + - Pressed: Toggle + - uid: 11612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.192677,-17.68977 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12011: + - Pressed: Toggle + - uid: 11613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.183487,-17.696074 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12012: + - Pressed: Toggle + - uid: 11614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.183487,-17.878895 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11616: + - Pressed: Toggle + - uid: 12009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.835182,-17.815205 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11617: + - Pressed: Toggle + 11618: + - Pressed: Toggle + - uid: 12088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.808365,-23.316158 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5803: + - Pressed: Toggle + 5804: + - Pressed: Toggle + - uid: 12113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.185635,19.50174 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18633: + - Pressed: Toggle + - uid: 12151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.812695,-23.538578 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11815: + - Pressed: Toggle + - uid: 12152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.182446,-23.544884 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11809: + - Pressed: Toggle + - uid: 12156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.17675,-23.563795 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11810: + - Pressed: Toggle + - uid: 12169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.808556,-23.312178 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5806: + - Pressed: Toggle + 5805: + - Pressed: Toggle + - uid: 12178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.809933,-23.541014 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11604: + - Pressed: Toggle + - uid: 12476 + components: + - type: Transform + pos: -64.206505,-16.811079 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12474: + - Pressed: Toggle + 12475: + - Pressed: Toggle + - uid: 12477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.8132,-18.749361 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12284: + - Pressed: Toggle + 12283: + - Pressed: Toggle + 12282: + - Pressed: Toggle + 12281: + - Pressed: Toggle + - uid: 12479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.8103,-21.185205 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12212: + - Pressed: Toggle + 12213: + - Pressed: Toggle + 12214: + - Pressed: Toggle + 12211: + - Pressed: Toggle + - uid: 13331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.48595,6.811633 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13326: + - Pressed: Toggle + 13324: + - Pressed: Toggle + 13323: + - Pressed: Toggle + 13325: + - Pressed: Toggle + 13321: + - Pressed: Toggle + 13322: + - Pressed: Toggle + - uid: 13378 + components: + - type: Transform + pos: -5.5352454,6.1922836 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13379: + - Pressed: Toggle + - uid: 13385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.1901402,8.501529 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13379: + - Pressed: Toggle + - uid: 13421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.182793,9.472061 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13415: + - Pressed: Toggle + 13416: + - Pressed: Toggle + 13417: + - Pressed: Toggle + 13418: + - Pressed: Toggle + 13422: + - Pressed: Toggle + 13420: + - Pressed: Toggle + 13419: + - Pressed: Toggle + - uid: 13642 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13641: + - Pressed: Toggle + 13640: + - Pressed: Toggle + 13639: + - Pressed: Toggle + - uid: 14604 + components: + - type: Transform + pos: -5.2838545,44.190628 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14597: + - Pressed: Toggle + 14596: + - Pressed: Toggle + - uid: 14854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.812192,44.90583 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14828: + - Pressed: Toggle + 14829: + - Pressed: Toggle + - uid: 14976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.1897191,44.952034 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14947: + - Pressed: Toggle + 14948: + - Pressed: Toggle + - uid: 15026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.190202,-1.8418796 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4511: + - Pressed: Toggle + - uid: 15110 + components: + - type: Transform + pos: -5.9541607,48.188736 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15140: + - Pressed: Toggle + 15138: + - Pressed: Toggle + 15139: + - Pressed: Toggle + 15121: + - Pressed: Toggle + - uid: 15288 + components: + - type: Transform + pos: -3.6567287,52.189983 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2409: + - Pressed: Toggle + 15296: + - Pressed: Toggle + 15299: + - Pressed: Toggle + 15295: + - Pressed: Toggle + 2411: + - Pressed: Toggle + 15300: + - Pressed: Toggle + - uid: 15290 + components: + - type: Transform + pos: -4.9247475,55.185165 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15299: + - Pressed: Toggle + 15295: + - Pressed: Toggle + 15296: + - Pressed: Toggle + 2409: + - Pressed: Toggle + 2411: + - Pressed: Toggle + 15300: + - Pressed: Toggle + - uid: 15291 + components: + - type: Transform + pos: -4.1115084,55.19147 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15324: + - Pressed: Toggle + 15325: + - Pressed: Toggle + 15323: + - Pressed: Toggle + - uid: 15301 + components: + - type: Transform + pos: -3.8451185,52.189983 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15323: + - Pressed: Toggle + 15325: + - Pressed: Toggle + 15324: + - Pressed: Toggle + - uid: 15303 + components: + - type: Transform + pos: -3.4676032,52.189983 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15321: + - Pressed: Toggle + - uid: 15358 + components: + - type: Transform + pos: -5.113388,48.18975 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15321: + - Pressed: Toggle + - uid: 15594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.8128834,7.7457185 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13383: + - Pressed: Toggle + 4674: + - Pressed: Toggle + 13382: + - Pressed: Toggle + - uid: 15596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.2155156,3.8109045 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13403: + - Pressed: Toggle + 4675: + - Pressed: Toggle + 4490: + - Pressed: Toggle + 13404: + - Pressed: Toggle + 9738: + - Pressed: Toggle + - uid: 15628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.812359,7.0219574 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14777: + - Pressed: Toggle + - uid: 15629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.812359,7.2426033 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15610: + - Pressed: Toggle + 15611: + - Pressed: Toggle + 15609: + - Pressed: Toggle + - uid: 15716 + components: + - type: Transform + pos: -17.5,-77.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15646: + - Pressed: Toggle + 15645: + - Pressed: Toggle + 15644: + - Pressed: Toggle + - uid: 15719 + components: + - type: Transform + pos: -20.5,-73.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15677: + - Pressed: Toggle + 15680: + - Pressed: Toggle + - uid: 16014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.573158,21.806986 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9454: + - Pressed: Toggle + 9733: + - Pressed: Toggle + - uid: 16021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.811264,21.870028 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9454: + - Pressed: Toggle + 9733: + - Pressed: Toggle + - uid: 16319 + components: + - type: Transform + pos: -54.735527,-45.81152 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16318: + - Pressed: Toggle + 16317: + - Pressed: Toggle + 16316: + - Pressed: Toggle + - uid: 17973 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18009: + - Pressed: Toggle + 18010: + - Pressed: Toggle + 18011: + - Pressed: Toggle + - uid: 17979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.829212,19.812094 + parent: 2 + - uid: 17980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.98087,23.815933 + parent: 2 + - uid: 17981 + components: + - type: Transform + pos: 27.98087,23.188482 + parent: 2 + - uid: 17982 + components: + - type: Transform + pos: 32.173763,27.187468 + parent: 2 + - uid: 17983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.212687,19.828009 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17828: + - Pressed: Toggle + 17829: + - Pressed: Toggle + 17827: + - Pressed: Toggle + - uid: 18334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.508213,17.81106 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18111: + - Pressed: Toggle + 18112: + - Pressed: Toggle + - uid: 18409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.190247,22.547941 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18364: + - Pressed: Toggle + 18366: + - Pressed: Toggle + - uid: 18412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.190084,18.47018 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18362: + - Pressed: Toggle + - uid: 18871 + components: + - type: Transform + pos: -55.52387,-6.8128963 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18872: + - Pressed: Toggle + 18873: + - Pressed: Toggle + 18874: + - Pressed: Toggle + 18875: + - Pressed: Toggle + - uid: 19557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-63.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17674: + - Pressed: Toggle + 17524: + - Pressed: Toggle + 19301: + - Pressed: Toggle + 17756: + - Pressed: Toggle + 17309: + - Pressed: Toggle + 19563: + - Pressed: Toggle + - uid: 20454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.81728,-18.230755 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18639: + - Pressed: Toggle + 18640: + - Pressed: Toggle + - uid: 20461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.225784,-15.857279 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 20372: + - Pressed: Toggle + - uid: 20462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.18075,-15.881512 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18640: + - Pressed: Toggle + 18639: + - Pressed: Toggle + - uid: 21690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.813194,-74.41964 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 20905: + - Pressed: Toggle + 20906: + - Pressed: Toggle + 20907: + - Pressed: Toggle + 20904: + - Pressed: Toggle + 20903: + - Pressed: Toggle + - uid: 24730 + components: + - type: Transform + pos: -36.822033,27.188166 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18538: + - Pressed: Toggle + 18539: + - Pressed: Toggle + 18325: + - Pressed: Toggle + 18537: + - Pressed: Toggle + 18536: + - Pressed: Toggle + - uid: 26020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.187685,-34.927097 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 19883: + - Pressed: Toggle + 20623: + - Pressed: Toggle + - uid: 26684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.224396,-40.186375 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 834: + - Pressed: Toggle + 835: + - Pressed: Toggle + 836: + - Pressed: Toggle + - uid: 26704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.187685,-34.69384 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26705: + - Pressed: Toggle + 26706: + - Pressed: Toggle + 26707: + - Pressed: Toggle + 26708: + - Pressed: Toggle + 26709: + - Pressed: Toggle + - uid: 29340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.416115,-40.187767 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4605: + - Pressed: Toggle + 4553: + - Pressed: Toggle + - uid: 30549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.189884,24.079744 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16442: + - Pressed: Toggle + 16444: + - Pressed: Toggle + - uid: 30550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.189884,24.294086 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16441: + - Pressed: Toggle + - uid: 30551 + components: + - type: Transform + pos: 44.973045,24.190737 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16440: + - Pressed: Toggle + 16443: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 5165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4885: + - Pressed: Toggle + 4886: + - Pressed: Toggle + 4710: + - Pressed: Toggle + - uid: 24971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10987: + - Pressed: Toggle + 21602: + - Pressed: Toggle +- proto: SignalSwitch + entities: + - uid: 25695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 797: + - On: Open + - Off: Close +- proto: SignalSwitchDirectional + entities: + - uid: 21644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 798: + - On: Open + - Off: Close +- proto: SignArmory + entities: + - uid: 5918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-48.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-49.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 10691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-41.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,16.5 + parent: 2 + - uid: 18839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-2.5 + parent: 2 + - uid: 18841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-5.5 + parent: 2 +- proto: SignBar + entities: + - uid: 14551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 +- proto: SignBio + entities: + - uid: 6005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - uid: 17561 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 17885 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 18185 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 9003 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 9007 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 6007 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + pos: 45.5,-41.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,20.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 6010 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 11471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,15.5 + parent: 2 + - uid: 11472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,19.5 + parent: 2 +- proto: SignChem + entities: + - uid: 6011 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 +- proto: SignDanger + entities: + - uid: 15292 + components: + - type: Transform + pos: -3.5,54.5 + parent: 2 +- proto: SignDangerMed + entities: + - uid: 20301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,-19.5 + parent: 2 + - uid: 20329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,-15.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 13135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.498839,-33.253956 + parent: 2 + - uid: 14533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 3473 + components: + - type: Transform + pos: -22.501562,0.7492136 + parent: 2 + - uid: 12917 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5022314,3.2462974 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 11467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,17.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.49947,5.750807 + parent: 2 + - uid: 14534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.500382,1.7452482 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 10751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-20.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 12908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.50088,-28.258238 + parent: 2 + - uid: 13134 + components: + - type: Transform + pos: -21.497541,5.2479973 + parent: 2 + - uid: 13362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.499437,1.2564385 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 8969 + components: + - type: Transform + pos: 7.497986,-33.74889 + parent: 2 + - uid: 8971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.498339,-31.749283 + parent: 2 + - uid: 13368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.498646,3.2578053 + parent: 2 + - uid: 13410 + components: + - type: Transform + pos: 23.500467,1.2565465 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 6019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5065422,3.5250323 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: -50.5,-46.5 + parent: 2 + - uid: 12901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.499876,-27.752024 + parent: 2 + - uid: 13623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-36.5 + parent: 2 + - uid: 17754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-4.5 + parent: 2 + - uid: 17758 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 17761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.51657,17.721674 + parent: 2 + - uid: 17764 + components: + - type: Transform + pos: 38.51657,17.469507 + parent: 2 + - uid: 17766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 18867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 +- proto: SignDirectionalGravity + entities: + - uid: 6021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-61.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 30.5,-54.5 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 12916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.496712,-28.748083 + parent: 2 + - uid: 13121 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 13361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.499437,1.7481642 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 13411 + components: + - type: Transform + pos: 23.501478,1.7438302 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 13358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 8983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.498339,-31.251251 + parent: 2 + - uid: 12960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.495447,-16.250057 + parent: 2 + - uid: 13364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.4983535,3.745795 + parent: 2 + - uid: 14530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-33.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 13367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.498646,3.7495308 + parent: 2 + - uid: 13508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.499876,-27.253994 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.50429,-33.25086 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 8975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + pos: -22.495447,-16.748087 + parent: 2 + - uid: 13111 + components: + - type: Transform + pos: -22.502945,0.25006372 + parent: 2 + - uid: 13363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 14532 + components: + - type: Transform + pos: -6.498839,-33.751987 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 16967 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 16968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,12.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - uid: 20601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 2 + - uid: 20602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,16.5 + parent: 2 + - uid: 20603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,19.5 + parent: 2 + - uid: 20604 + components: + - type: Transform + pos: -68.5,-16.5 + parent: 2 + - uid: 20605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-25.5 + parent: 2 + - uid: 20606 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 2 + - uid: 20607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-49.5 + parent: 2 + - uid: 20865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-67.5 + parent: 2 + - uid: 20866 + components: + - type: Transform + pos: 30.5,-63.5 + parent: 2 + - uid: 20870 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 20871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 8982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-33.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-27.5 + parent: 2 + - uid: 15973 + components: + - type: MetaData + desc: Очень пыльный и старый знак, указывающий на старое отделение карго. + name: старый знак "отдел снабжения" + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,16.5 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 20846 + components: + - type: Transform + pos: 29.5,-74.5 + parent: 2 + - uid: 20847 + components: + - type: Transform + pos: 33.5,-70.5 + parent: 2 +- proto: SignElectrical + entities: + - uid: 17884 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 6032 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 8974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-33.5 + parent: 2 + - uid: 14579 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 12990 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 17564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,6.5 + parent: 2 + - uid: 18878 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 19249 + components: + - type: Transform + pos: -70.5,-18.5 + parent: 2 + - uid: 28039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,2.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 14176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-33.5 + parent: 2 +- proto: SignFire + entities: + - uid: 6033 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-62.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-59.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: -56.5,-42.5 + parent: 2 + - uid: 10851 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 10852 + components: + - type: Transform + pos: 1.5,-65.5 + parent: 2 + - uid: 10853 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - uid: 12280 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 6041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-60.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-61.5 + parent: 2 +- proto: SignHead + entities: + - uid: 6018 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 6043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 1922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 13525 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 + - uid: 13526 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - uid: 18335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 2 + - uid: 18336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,20.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 6045 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 5260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-27.5 + parent: 2 + - uid: 12903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-28.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 13359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-8.5 + parent: 2 +- proto: SignMail + entities: + - uid: 6046 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 6047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-40.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + - uid: 18189 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 6051 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,12.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 15796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-67.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 6054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-44.5 + parent: 2 + - uid: 6055 + components: + - type: MetaData + desc: Памятный мемориал. На нём написаны незнакомые вам имена и фамилии, а так же должности, погибших сотрудников отдела. + name: мемориал + - type: Transform + pos: -26.5,-42.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 11483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 10850 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 +- proto: SignRND + entities: + - uid: 13412 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 6056 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 11215 + components: + - type: Transform + pos: -55.5,62.5 + parent: 2 +- proto: SignScience + entities: + - uid: 6058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,0.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 +- proto: SignSecurearea + entities: + - uid: 4204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-62.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-59.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-59.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-59.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: 33.5,-63.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: 36.5,-63.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-36.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -78.5,-59.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -79.5,-58.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: -79.5,-50.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: -60.5,-59.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: -39.5,-59.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: -57.5,-42.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -60.5,-42.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -73.5,-32.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-48.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-50.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-49.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-25.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-55.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-60.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-60.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + - uid: 12918 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + pos: -76.5,12.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + pos: -63.5,28.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + - uid: 13480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,44.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-38.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-78.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-76.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-76.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-70.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + pos: 51.5,-37.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + pos: 53.5,-37.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-47.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: 41.5,-76.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: 41.5,-74.5 + parent: 2 + - uid: 14580 + components: + - type: Transform + pos: -2.5,39.5 + parent: 2 + - uid: 14581 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - uid: 15098 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + pos: 2.5,39.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 15561 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 15943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 16406 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 16407 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 17626 + components: + - type: Transform + pos: 57.5,6.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 18530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-3.5 + parent: 2 + - uid: 18532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-2.5 + parent: 2 + - uid: 18766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 + - uid: 18767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,4.5 + parent: 2 + - uid: 18768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,9.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 19271 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 19303 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 + - uid: 19879 + components: + - type: Transform + pos: -72.5,-28.5 + parent: 2 + - uid: 19886 + components: + - type: Transform + pos: -73.5,-26.5 + parent: 2 + - uid: 19896 + components: + - type: Transform + pos: -79.5,-23.5 + parent: 2 + - uid: 19901 + components: + - type: Transform + pos: -87.5,-23.5 + parent: 2 + - uid: 20487 + components: + - type: Transform + pos: -77.5,-17.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 6102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-52.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: -47.5,-38.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-28.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-28.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-36.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -50.5,-33.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-48.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-44.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-49.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-40.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-40.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-27.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-33.5 + parent: 2 + - uid: 18337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,21.5 + parent: 2 + - uid: 18810 + components: + - type: Transform + pos: -73.5,0.5 + parent: 2 + - uid: 19936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-22.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 30325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-57.5 + parent: 2 +- proto: SignShock + entities: + - uid: 6118 + components: + - type: Transform + pos: -7.491664,-27.52543 + parent: 2 + - uid: 6119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-56.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-66.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-66.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-28.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-28.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: -56.5,-32.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: -61.5,-32.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: -87.5,-30.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: -87.5,-27.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: -87.5,-24.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: -96.5,-24.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: -97.5,-30.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: -97.5,-35.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: -89.5,-42.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: -89.5,-48.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: -81.5,-44.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: -78.5,-43.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: -72.5,-43.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: -66.5,-43.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: -63.5,-42.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-55.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-54.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-50.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-44.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,48.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 16405 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 17495 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 17497 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 17879 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 17880 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 17881 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 17882 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 17883 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 18338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,25.5 + parent: 2 + - uid: 18347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,21.5 + parent: 2 + - uid: 18547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,18.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-10.5 + parent: 2 + - uid: 19916 + components: + - type: Transform + pos: -77.5,-32.5 + parent: 2 + - uid: 20554 + components: + - type: Transform + pos: -56.5,-48.5 + parent: 2 + - uid: 20719 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 20838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-42.5 + parent: 2 + - uid: 20840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-43.5 + parent: 2 + - uid: 20901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-69.5 + parent: 2 + - uid: 31036 + components: + - type: Transform + pos: 23.5,-73.5 + parent: 2 + - uid: 31038 + components: + - type: Transform + pos: 23.5,-79.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 6154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-60.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,4.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-53.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 14602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,43.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,56.5 + parent: 2 + - uid: 15798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-66.5 + parent: 2 + - uid: 16435 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 17236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + - uid: 17767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 + - uid: 18599 + components: + - type: Transform + pos: -48.5,21.5 + parent: 2 + - uid: 18862 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 19941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-27.5 + parent: 2 + - uid: 20482 + components: + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 20808 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 20844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-46.5 + parent: 2 + - uid: 20850 + components: + - type: Transform + pos: 30.5,-66.5 + parent: 2 + - uid: 22184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-38.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 20496 + components: + - type: Transform + pos: -66.5,-32.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 20495 + components: + - type: Transform + pos: -67.5,-28.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 6160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-59.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: -60.5,-40.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-25.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,2.5 + parent: 2 + - uid: 9126 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 10849 + components: + - type: Transform + pos: -9.5,-62.5 + parent: 2 + - uid: 11388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,44.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 54.5,-41.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-46.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-46.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + pos: 52.5,16.5 + parent: 2 + - uid: 17774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - uid: 18306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - uid: 18307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + - uid: 18308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,16.5 + parent: 2 + - uid: 18726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,18.5 + parent: 2 + - uid: 18890 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 19874 + components: + - type: Transform + pos: -72.5,-30.5 + parent: 2 + - uid: 20573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-52.5 + parent: 2 + - uid: 20848 + components: + - type: Transform + pos: 29.5,-71.5 + parent: 2 + - uid: 20849 + components: + - type: Transform + pos: 34.5,-74.5 + parent: 2 + - uid: 20868 + components: + - type: Transform + pos: 39.5,-69.5 + parent: 2 + - uid: 29159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-58.5 + parent: 2 + - uid: 30324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-58.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 6165 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 9005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 6166 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 8967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 +- proto: SignXenobio + entities: + - uid: 16957 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 17536 + components: + - type: Transform + pos: 52.5,14.5 + parent: 2 + - uid: 17840 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 17886 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 18727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,16.5 + parent: 2 + - uid: 20574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-49.5 + parent: 2 + - uid: 20869 + components: + - type: Transform + pos: 39.5,-67.5 + parent: 2 +- proto: SiliconChargerIndustrial + entities: + - uid: 1325 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 47.5,-44.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: -26.5,12.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 +- proto: SingularityGenerator + entities: + - uid: 6169 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 +- proto: Sink + entities: + - uid: 6170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-44.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,7.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-63.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-64.5 + parent: 2 + - uid: 17895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 + - uid: 17896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,23.5 + parent: 2 + - uid: 18071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 18120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,18.5 + parent: 2 + - uid: 18202 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 +- proto: SinkEmpty + entities: + - uid: 6177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,10.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 6178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-3.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,6.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-38.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: -76.5,-33.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-34.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-35.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-34.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.5,-35.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - uid: 11923 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 11924 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + pos: -15.5,12.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + pos: -15.5,-66.5 + parent: 2 + - uid: 16458 + components: + - type: Transform + pos: 22.5,-67.5 + parent: 2 + - uid: 17511 + components: + - type: Transform + pos: 34.5,-71.5 + parent: 2 + - uid: 18137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 6190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,-40.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 11609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-17.5 + parent: 2 + - uid: 16530 + components: + - type: Transform + pos: 41.5,11.5 + parent: 2 + - uid: 20612 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 +- proto: SmallLight + entities: + - uid: 18882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-12.5 + parent: 2 + - uid: 18883 + components: + - type: Transform + pos: -67.5,-9.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 7156 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 1213 + components: + - type: Transform + pos: 19.5,-71.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 21.5,-71.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 23.5,-71.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 25.5,-71.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 25.5,-69.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: 29.5,-55.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 17.5,-71.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: 23.5,-69.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 17.5,-69.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: 21.5,-69.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: 19.5,-69.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + pos: 34.5,-60.5 + parent: 2 + - uid: 10983 + components: + - type: Transform + pos: -69.5,64.5 + parent: 2 + - uid: 13498 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: -13.5,-68.5 + parent: 2 + - uid: 16414 + components: + - type: Transform + pos: -54.5,-50.5 + parent: 2 + - uid: 17315 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + pos: -52.5,16.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 6201 + components: + - type: Transform + pos: -4.453641,-38.437256 + parent: 2 +- proto: SmokingPipe + entities: + - uid: 18704 + components: + - type: Transform + pos: -44.54323,17.607594 + parent: 2 +- proto: SoapOmega + entities: + - uid: 17831 + components: + - type: Transform + pos: 29.504765,-69.69557 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 6202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 +- proto: SodaDispenserMachineCircuitboard + entities: + - uid: 6203 + components: + - type: Transform + pos: -1.4716264,-37.41395 + parent: 2 +- proto: SodiumLightTube + entities: + - uid: 12220 + components: + - type: Transform + pos: -25.48011,-21.422861 + parent: 2 + - uid: 12221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.54394,-21.422861 + parent: 2 +- proto: SolarPanel + entities: + - uid: 6204 + components: + - type: Transform + pos: -74.5,-56.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: -74.5,-55.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: -74.5,-54.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: -74.5,-53.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: -73.5,-56.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: -73.5,-55.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: -73.5,-54.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: -73.5,-53.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: -73.5,-52.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: -74.5,-50.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: -74.5,-48.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: -74.5,-47.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: -74.5,-46.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: -73.5,-50.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: -73.5,-49.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: -73.5,-48.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: -73.5,-47.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: -73.5,-46.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: -71.5,-46.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: -71.5,-47.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: -71.5,-48.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: -71.5,-49.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: -71.5,-50.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: -70.5,-46.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: -70.5,-47.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: -70.5,-48.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: -70.5,-49.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: -70.5,-50.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: -70.5,-52.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -70.5,-53.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: -70.5,-54.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: -70.5,-55.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -70.5,-56.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: -71.5,-52.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: -71.5,-53.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: -71.5,-54.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: -71.5,-55.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -71.5,-56.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: -68.5,-56.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: -68.5,-55.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: -68.5,-54.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: -68.5,-53.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: -68.5,-52.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: -67.5,-56.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -67.5,-55.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: -67.5,-54.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: -67.5,-53.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: -67.5,-52.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: -67.5,-50.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: -67.5,-49.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: -67.5,-48.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: -67.5,-47.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: -67.5,-46.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: -68.5,-50.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: -68.5,-49.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: -68.5,-48.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: -68.5,-47.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: -68.5,-46.5 + parent: 2 + - uid: 12538 + components: + - type: Transform + pos: -72.5,18.5 + parent: 2 + - uid: 12539 + components: + - type: Transform + pos: -72.5,19.5 + parent: 2 + - uid: 12540 + components: + - type: Transform + pos: -72.5,20.5 + parent: 2 + - uid: 12541 + components: + - type: Transform + pos: -72.5,21.5 + parent: 2 + - uid: 12542 + components: + - type: Transform + pos: -72.5,22.5 + parent: 2 + - uid: 12543 + components: + - type: Transform + pos: -70.5,22.5 + parent: 2 + - uid: 12544 + components: + - type: Transform + pos: -70.5,21.5 + parent: 2 + - uid: 12545 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 + - uid: 12546 + components: + - type: Transform + pos: -70.5,19.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + pos: -70.5,18.5 + parent: 2 + - uid: 12548 + components: + - type: Transform + pos: -68.5,18.5 + parent: 2 + - uid: 12549 + components: + - type: Transform + pos: -68.5,19.5 + parent: 2 + - uid: 12550 + components: + - type: Transform + pos: -68.5,20.5 + parent: 2 + - uid: 12551 + components: + - type: Transform + pos: -68.5,21.5 + parent: 2 + - uid: 12552 + components: + - type: Transform + pos: -68.5,22.5 + parent: 2 + - uid: 12553 + components: + - type: Transform + pos: -68.5,23.5 + parent: 2 + - uid: 12554 + components: + - type: Transform + pos: -66.5,23.5 + parent: 2 + - uid: 12555 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 + - uid: 12556 + components: + - type: Transform + pos: -66.5,21.5 + parent: 2 + - uid: 12557 + components: + - type: Transform + pos: -66.5,20.5 + parent: 2 + - uid: 12558 + components: + - type: Transform + pos: -66.5,19.5 + parent: 2 + - uid: 12559 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + pos: -64.5,18.5 + parent: 2 + - uid: 12561 + components: + - type: Transform + pos: -64.5,19.5 + parent: 2 + - uid: 12562 + components: + - type: Transform + pos: -64.5,20.5 + parent: 2 + - uid: 12563 + components: + - type: Transform + pos: -64.5,21.5 + parent: 2 + - uid: 12564 + components: + - type: Transform + pos: -64.5,22.5 + parent: 2 + - uid: 12565 + components: + - type: Transform + pos: -62.5,22.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: -62.5,21.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: -62.5,20.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + pos: -62.5,18.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: -62.5,16.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: -62.5,15.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: -62.5,14.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: -62.5,13.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: -62.5,12.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + pos: -64.5,12.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + pos: -64.5,13.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + pos: -64.5,14.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: -64.5,15.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + pos: -64.5,16.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: -66.5,16.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: -66.5,15.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: -66.5,14.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: -66.5,13.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: -66.5,12.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: -68.5,12.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + pos: -68.5,13.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: -68.5,14.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: -68.5,15.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: -68.5,16.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: -68.5,11.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + pos: -66.5,11.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: -70.5,12.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: -70.5,13.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: -70.5,14.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: -70.5,15.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: -70.5,16.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: -72.5,16.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + pos: -72.5,15.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + pos: -72.5,14.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + pos: -72.5,13.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + pos: -72.5,12.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: 46.5,-74.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: 46.5,-73.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + pos: 46.5,-72.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + pos: 46.5,-71.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: 46.5,-70.5 + parent: 2 + - uid: 14418 + components: + - type: Transform + pos: 46.5,-69.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: 48.5,-69.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + pos: 48.5,-70.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: 48.5,-71.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: 48.5,-72.5 + parent: 2 + - uid: 14423 + components: + - type: Transform + pos: 48.5,-73.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + pos: 48.5,-74.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: 50.5,-75.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + pos: 50.5,-74.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + pos: 50.5,-73.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + pos: 50.5,-72.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + pos: 50.5,-71.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: 50.5,-70.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: 52.5,-70.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + pos: 52.5,-71.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: 52.5,-72.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + pos: 52.5,-73.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + pos: 52.5,-74.5 + parent: 2 + - uid: 14436 + components: + - type: Transform + pos: 52.5,-75.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + pos: 54.5,-74.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: 54.5,-73.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: 54.5,-72.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: 54.5,-71.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + pos: 54.5,-70.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: 54.5,-69.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 54.5,-67.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + pos: 54.5,-66.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: 54.5,-65.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: 54.5,-64.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: 54.5,-63.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: 56.5,-63.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + pos: 56.5,-64.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + pos: 56.5,-65.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: 56.5,-66.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: 56.5,-67.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + pos: 56.5,-68.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + pos: 56.5,-69.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: 56.5,-70.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: 56.5,-71.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: 56.5,-72.5 + parent: 2 + - uid: 14458 + components: + - type: Transform + pos: 56.5,-73.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + pos: 56.5,-74.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + pos: 52.5,-66.5 + parent: 2 + - uid: 14461 + components: + - type: Transform + pos: 52.5,-65.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: 52.5,-64.5 + parent: 2 + - uid: 14463 + components: + - type: Transform + pos: 52.5,-63.5 + parent: 2 + - uid: 14464 + components: + - type: Transform + pos: 52.5,-62.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + pos: 50.5,-62.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: 50.5,-63.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: 50.5,-64.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + pos: 50.5,-65.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: 50.5,-66.5 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: 48.5,-67.5 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: 48.5,-66.5 + parent: 2 + - uid: 14472 + components: + - type: Transform + pos: 48.5,-65.5 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: 48.5,-64.5 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: 48.5,-63.5 + parent: 2 + - uid: 14475 + components: + - type: Transform + pos: 46.5,-64.5 + parent: 2 + - uid: 14476 + components: + - type: Transform + pos: 46.5,-65.5 + parent: 2 + - uid: 14477 + components: + - type: Transform + pos: 46.5,-66.5 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: 46.5,-67.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + pos: 46.5,-63.5 + parent: 2 + - uid: 14870 + components: + - type: Transform + pos: 59.5,10.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + pos: 59.5,12.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: 59.5,13.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: 59.5,14.5 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: 61.5,14.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: 61.5,12.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + pos: 63.5,9.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + pos: 63.5,10.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: 63.5,12.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + pos: 63.5,13.5 + parent: 2 + - uid: 14891 + components: + - type: Transform + pos: 65.5,13.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + pos: 65.5,12.5 + parent: 2 + - uid: 14893 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 14894 + components: + - type: Transform + pos: 65.5,10.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + pos: 65.5,9.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + pos: 67.5,10.5 + parent: 2 + - uid: 14897 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + pos: 67.5,12.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: 67.5,13.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + pos: 67.5,14.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: 69.5,14.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: 69.5,13.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: 69.5,12.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: 69.5,11.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: 69.5,10.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: 69.5,15.5 + parent: 2 + - uid: 14907 + components: + - type: Transform + pos: 69.5,16.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: 69.5,17.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: 69.5,18.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + pos: 69.5,19.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: 69.5,20.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: 67.5,20.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: 67.5,19.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: 67.5,18.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + pos: 67.5,17.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: 67.5,16.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: 65.5,17.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: 65.5,18.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: 65.5,19.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: 65.5,20.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: 65.5,21.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + pos: 63.5,21.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: 63.5,20.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: 63.5,19.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: 63.5,18.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: 63.5,17.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: 61.5,16.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: 61.5,17.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: 61.5,18.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + pos: 61.5,19.5 + parent: 2 + - uid: 14931 + components: + - type: Transform + pos: 61.5,20.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + pos: 59.5,20.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: 59.5,17.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: 59.5,16.5 + parent: 2 +- proto: SolarPanelBroken + entities: + - uid: 6264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-40.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + pos: -95.5,51.5 + parent: 2 + - uid: 11921 + components: + - type: Transform + pos: -96.5,51.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 6265 + components: + - type: Transform + pos: -77.5,-51.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + pos: -74.5,17.5 + parent: 2 + - uid: 17685 + components: + - type: Transform + pos: 64.5,15.5 + parent: 2 +- proto: SolarTrackerElectronics + entities: + - uid: 1144 + components: + - type: Transform + parent: 1139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash1000 + entities: + - uid: 13440 + components: + - type: Transform + parent: 13437 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18446 + components: + - type: Transform + parent: 18442 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpacemenFigureSpawner + entities: + - uid: 6266 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 +- proto: SpawnADTBlueShieldOfficer + entities: + - uid: 30089 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 +- proto: SpawnMobAdultSlimesBlueAngry + entities: + - uid: 17777 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 +- proto: SpawnMobAdultSlimesGreenAngry + entities: + - uid: 17782 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 +- proto: SpawnMobAdultSlimesYellow + entities: + - uid: 17856 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 +- proto: SpawnMobAdultSlimesYellowAngry + entities: + - uid: 17775 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 +- proto: SpawnMobAlexander + entities: + - uid: 15305 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 11329 + components: + - type: Transform + pos: -58.5,53.5 + parent: 2 + - uid: 11330 + components: + - type: Transform + pos: -60.5,54.5 + parent: 2 + - uid: 11331 + components: + - type: Transform + pos: -59.5,56.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: -25.5,14.5 + parent: 2 +- proto: SpawnMobCatGeneric + entities: + - uid: 6271 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 6272 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 6287 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 +- proto: SpawnMobCow + entities: + - uid: 6273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 6274 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 6275 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 +- proto: SpawnMobMonkey + entities: + - uid: 29965 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 29966 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 29967 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 29968 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 6276 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 6277 + components: + - type: Transform + pos: -76.5,-33.5 + parent: 2 + - uid: 30202 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 30203 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 30204 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 30205 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 30206 + components: + - type: Transform + pos: 51.5,4.5 + parent: 2 + - uid: 30207 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 30208 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 30209 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 30210 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 30212 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 30213 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 2 + - uid: 30217 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - uid: 30218 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 30219 + components: + - type: Transform + pos: -68.5,-20.5 + parent: 2 + - uid: 30220 + components: + - type: Transform + pos: -65.5,-13.5 + parent: 2 + - uid: 30221 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 30222 + components: + - type: Transform + pos: -67.5,6.5 + parent: 2 +- proto: SpawnMobOreCrab + entities: + - uid: 6282 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 + - uid: 11326 + components: + - type: Transform + pos: -75.5,-17.5 + parent: 2 + - uid: 11628 + components: + - type: Transform + pos: -87.5,56.5 + parent: 2 + - uid: 11645 + components: + - type: Transform + pos: -83.5,60.5 + parent: 2 + - uid: 11651 + components: + - type: Transform + pos: -89.5,55.5 + parent: 2 + - uid: 11654 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 11728 + components: + - type: Transform + pos: -90.5,61.5 + parent: 2 + - uid: 11749 + components: + - type: Transform + pos: -85.5,53.5 + parent: 2 + - uid: 11759 + components: + - type: Transform + pos: -84.5,55.5 + parent: 2 + - uid: 11772 + components: + - type: Transform + pos: -83.5,56.5 + parent: 2 + - uid: 11783 + components: + - type: Transform + pos: -84.5,63.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + pos: -77.5,63.5 + parent: 2 + - uid: 11855 + components: + - type: Transform + pos: -84.5,54.5 + parent: 2 + - uid: 11859 + components: + - type: Transform + pos: -86.5,60.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + pos: -82.5,60.5 + parent: 2 + - uid: 11881 + components: + - type: Transform + pos: -85.5,56.5 + parent: 2 + - uid: 11964 + components: + - type: Transform + pos: -68.5,67.5 + parent: 2 + - uid: 11966 + components: + - type: Transform + pos: -77.5,67.5 + parent: 2 + - uid: 11967 + components: + - type: Transform + pos: -68.5,68.5 + parent: 2 + - uid: 11968 + components: + - type: Transform + pos: -69.5,67.5 + parent: 2 + - uid: 11970 + components: + - type: Transform + pos: -76.5,64.5 + parent: 2 + - uid: 11972 + components: + - type: Transform + pos: -72.5,70.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: -75.5,65.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: -73.5,66.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: -73.5,69.5 + parent: 2 + - uid: 12030 + components: + - type: Transform + pos: -75.5,68.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + pos: -76.5,68.5 + parent: 2 + - uid: 12036 + components: + - type: Transform + pos: -79.5,65.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -80.5,63.5 + parent: 2 + - uid: 13916 + components: + - type: Transform + pos: 16.5,-74.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: 2.5,-73.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + pos: -1.5,61.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + pos: -72.5,-16.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 6278 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 +- proto: SpawnMobPurpleSnake + entities: + - uid: 15648 + components: + - type: Transform + pos: -78.5,-16.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 6279 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 +- proto: SpawnMobSpaceSpider + entities: + - uid: 6281 + components: + - type: Transform + pos: -95.5,-21.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,53.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: -88.5,61.5 + parent: 2 +- proto: SpawnPointADTPathologist + entities: + - uid: 3715 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 4653 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 30024 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - uid: 30025 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 13996 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 30026 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 10120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-34.5 + parent: 2 + - uid: 30075 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 30076 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 30077 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 30035 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 30036 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 +- proto: SpawnPointBoxer + entities: + - uid: 30032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 2 + - uid: 30781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 2 +- proto: SpawnPointBrigmedic + entities: + - uid: 29352 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 30072 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 30053 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 30054 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 30055 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 30099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,54.5 + parent: 2 + - uid: 30100 + components: + - type: Transform + pos: -75.5,59.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 30117 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 30119 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 30120 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 30121 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 30105 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 30052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,6.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 30078 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 30056 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 30049 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 3704 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 +- proto: SpawnPointIAA + entities: + - uid: 13865 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 30109 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 + - uid: 30112 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 +- proto: SpawnPointLatejoin + entities: + - uid: 11798 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 30013 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 13995 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 30027 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 30020 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 30042 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 30044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - uid: 30047 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 30065 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 30066 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 30067 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 30079 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 30080 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 30201 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 30092 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 30015 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 30016 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 30017 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 30018 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 30021 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 30022 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 30094 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 30074 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 30096 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 30097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-35.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 29344 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 29346 + components: + - type: Transform + pos: 43.5,5.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 30083 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 30003 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 30004 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 30005 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 30113 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 30115 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 30116 + components: + - type: Transform + pos: 41.5,7.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 30069 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 30070 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 30088 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 30068 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 30086 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 30087 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 +- proto: SpawnPointSeniorEngineer + entities: + - uid: 10102 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 2 +- proto: SpawnPointSeniorOfficer + entities: + - uid: 10104 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 +- proto: SpawnPointSeniorPhysician + entities: + - uid: 10101 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 +- proto: SpawnPointSeniorResearcher + entities: + - uid: 10103 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 30101 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 30102 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 30057 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 2 + - uid: 30058 + components: + - type: Transform + pos: 20.5,-51.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 7844 + components: + - type: Transform + pos: 16.5,-51.5 + parent: 2 + - uid: 29348 + components: + - type: Transform + pos: 18.5,-51.5 + parent: 2 + - uid: 29351 + components: + - type: Transform + pos: 17.5,-51.5 + parent: 2 + - uid: 30108 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 30103 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 30104 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 +- proto: SpawnVendingMachineRestockDrink + entities: + - uid: 6286 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 10669 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 17544 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 +- proto: SpeedLoaderCap + entities: + - uid: 991 + components: + - type: Transform + parent: 988 + - type: Physics + canCollide: False + - uid: 18482 + components: + - type: Transform + parent: 18477 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpiderWeb + entities: + - uid: 17717 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 17718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-45.5 + parent: 2 + - uid: 17735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-46.5 + parent: 2 + - uid: 17742 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 17768 + components: + - type: Transform + pos: 29.5,-43.5 + parent: 2 + - uid: 18029 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 18033 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 18035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,20.5 + parent: 2 + - uid: 18040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - uid: 20121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-15.5 + parent: 2 + - uid: 20263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-16.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-16.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-15.5 + parent: 2 + - uid: 20267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,-15.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,-17.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-18.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -72.5,-15.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-16.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-17.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-17.5 + parent: 2 + - uid: 20417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-17.5 + parent: 2 + - uid: 20469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-15.5 + parent: 2 +- proto: SpoonPlastic + entities: + - uid: 920 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 921 + components: + - type: Transform + parent: 30784 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SprayBottleSpaceCleaner + entities: + - uid: 6288 + components: + - type: Transform + pos: -47.77148,6.734781 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: -40.331898,-38.601044 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -40.800648,-38.30417 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -47.578613,3.554893 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: -32.384174,-14.542202 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: 13.718755,-3.4443932 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: 15.253147,-2.8837461 + parent: 2 + - uid: 10901 + components: + - type: Transform + pos: -2.5132852,-56.607952 + parent: 2 + - uid: 12264 + components: + - type: Transform + pos: -44.71639,-22.264282 + parent: 2 + - uid: 12265 + components: + - type: Transform + pos: -44.71639,-22.45577 + parent: 2 + - uid: 12266 + components: + - type: Transform + rot: -6.283185307179586 rad + pos: -37.274147,-17.517904 + parent: 2 +- proto: SprayPainter + entities: + - uid: 856 + components: + - type: Transform + pos: 11.489436,-43.431686 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: -21.474108,-10.43998 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: 11.400876,-43.204735 + parent: 2 +- proto: Stairs + entities: + - uid: 4662 + components: + - type: Transform + pos: 26.5,-69.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,16.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,17.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,18.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,51.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,49.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,50.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,50.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,51.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,49.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,47.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,47.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,47.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,47.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,47.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,47.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,57.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,58.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,59.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,59.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,58.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,57.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -71.5,51.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -71.5,57.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: 27.5,-69.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,48.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,48.5 + parent: 2 + - uid: 16049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,21.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,20.5 + parent: 2 +- proto: StairStage + entities: + - uid: 18182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,20.5 + parent: 2 + - uid: 18183 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 6329 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 13856 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 13879 + components: + - type: Transform + pos: -8.513311,53.571636 + parent: 2 +- proto: StationMap + entities: + - uid: 6332 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-55.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,7.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,3.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-39.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,-48.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-46.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: -48.5,-40.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 8972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-33.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 10841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-53.5 + parent: 2 + - uid: 11214 + components: + - type: Transform + pos: -56.5,62.5 + parent: 2 + - uid: 11337 + components: + - type: Transform + pos: -68.5,61.5 + parent: 2 + - uid: 11377 + components: + - type: Transform + pos: -74.5,56.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 12444 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 12907 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-5.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-37.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,55.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,51.5 + parent: 2 +- proto: StationMapBroken + entities: + - uid: 15603 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 18184 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 20483 + components: + - type: Transform + pos: -74.5,-14.5 + parent: 2 +- proto: StatueBananiumClown + entities: + - uid: 17693 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 1925 + components: + - type: Transform + pos: 47.5,-46.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,46.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,45.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 +- proto: Stool + entities: + - uid: 6376 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-37.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: -69.5,-35.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: -68.5,-35.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: -67.5,-35.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,-33.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -93.5,-32.5 + parent: 2 + - uid: 10847 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-17.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 6386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-4.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 2 + - uid: 15995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,21.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,21.5 + parent: 2 + - uid: 18342 + components: + - type: Transform + pos: -50.5,20.5 + parent: 2 + - uid: 18686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-27.5 + parent: 2 + - uid: 18687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-27.5 + parent: 2 + - uid: 18838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,1.5 + parent: 2 + - uid: 18840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,2.5 + parent: 2 + - uid: 30033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 5050 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 19.5,-58.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: 18.5,-58.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + pos: -12.5,-68.5 + parent: 2 +- proto: StrangePill + entities: + - uid: 17617 + components: + - type: Transform + pos: 1.5113763,22.966421 + parent: 2 + - uid: 18080 + components: + - type: Transform + pos: 1.3474678,23.092505 + parent: 2 + - uid: 18144 + components: + - type: Transform + pos: 1.6878933,22.871857 + parent: 2 +- proto: Stunprod + entities: + - uid: 6404 + components: + - type: Transform + pos: -25.455305,-35.356575 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 451 + components: + - type: MetaData + name: подстанция инженерного отдела + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 + - uid: 6407 + components: + - type: MetaData + name: подстанция мостика + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 6408 + components: + - type: MetaData + name: подстанция сервиса + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: 35.5,-60.5 + parent: 2 + - uid: 10982 + components: + - type: Transform + pos: -70.5,64.5 + parent: 2 + - uid: 15862 + components: + - type: MetaData + name: подстанция РнД + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 16275 + components: + - type: MetaData + name: подстанция атмоса-евы + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 16309 + components: + - type: MetaData + name: подстанция сб + - type: Transform + pos: -55.5,-48.5 + parent: 2 + - uid: 17140 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 17312 + components: + - type: MetaData + name: Подстанция меда + - type: Transform + pos: -53.5,11.5 + parent: 2 + - uid: 17636 + components: + - type: MetaData + name: подстанция карго + - type: Transform + pos: 43.5,-29.5 + parent: 2 + - uid: 17928 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 19348 + components: + - type: MetaData + name: подстанция эвакуации + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 28438 + components: + - type: Transform + pos: -3.5,58.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 15908 + components: + - type: Transform + pos: 18.61908,18.578419 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 4658 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 1815 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1820 + - 1818 + - 1817 + - 1819 +- proto: SuitStorageCaptain + entities: + - uid: 6411 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 6412 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 6413 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 6414 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 6417 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 38.5,9.5 + parent: 2 +- proto: SuitStorageEVAAlternate + entities: + - uid: 6422 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 6423 + components: + - type: Transform + pos: -68.5,-33.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: -69.5,-33.5 + parent: 2 +- proto: SuitStorageEVASyndicate + entities: + - uid: 3474 + components: + - type: Transform + pos: 55.5,-59.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 6425 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1478 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageRD + entities: + - uid: 6426 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 6427 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 6428 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageWarden + entities: + - uid: 6431 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SurveillanceCameraAssembly + entities: + - uid: 27674 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 6435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: мостик + - uid: 6436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: хранилище сингулярности + - uid: 6437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: коридор на мостик + - uid: 6438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: кабинет главы персонала + - uid: 6439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: кабинет офицера синего щита + - uid: 6440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: хранилище плат 2 + - uid: 6441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: каюта главного врача + - uid: 6442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: офис ГСБ + - uid: 6443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: каюта капитана + - uid: 6444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: кабинет капитана + - uid: 6446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: хранилище плат + - uid: 6449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: мостик 2 + - uid: 6451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: комната EVA + - uid: 6452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: кабинет научного руководителя + - uid: 6453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: офис старшего инженера + - uid: 14599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: вход в ИИ + - uid: 14937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: вход в ИИ + - uid: 14958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: генераторная ИИ + - uid: 15306 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: вход в ядро ИИ + - uid: 15308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ядро ИИ + - uid: 15309 + components: + - type: Transform + pos: -4.5,53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ИИ + - uid: 15589 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: хранилище + - uid: 15591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: сервера + - uid: 15593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: сервера 2 + - uid: 15615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: врата + - uid: 15754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: переходная хранилища +- proto: SurveillanceCameraEngineering + entities: + - uid: 6454 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: хранилище плат + - uid: 6458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: левая часть комнаты ТЭГа + - uid: 6459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: правая часть комнаты ТЭГа + - uid: 6460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: камера нагрева газов ТЭГа + - uid: 6461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: комната инженеров + - uid: 6462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-56.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: хранилище барьеров + - uid: 6463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: комната ДАМа + - uid: 6464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: подстанция генератора гравитации + - uid: 6465 + components: + - type: Transform + pos: 39.5,-63.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: генератор гравитации + - uid: 10854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: камера диоксида углерода + - uid: 10855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-67.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-67.5 + parent: 2 + - uid: 10857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-67.5 + parent: 2 + - uid: 10858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: камера водяного пара + - uid: 10859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: камера кислорода + - uid: 10860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: камера азота + - uid: 10872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: атмос 2 + - uid: 10873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: комната атмосферных техников + - uid: 10875 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: стойка атмоса + - uid: 15592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: атмос + - uid: 15919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: нижний атмос + - uid: 15924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-65.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: верх нижнего атмоса + - uid: 20896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-67.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: юго-восточные солнечные панели + - uid: 20897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: северо-западные солнечные панели + - uid: 20898 + components: + - type: Transform + pos: -53.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: северо-западные солнечные панели + - uid: 20900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: юго-западные солнечные панели + - uid: 27673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: хранилище канистр атмоса + - uid: 27675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: офис старшего инженера + - uid: 29267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: холл + - uid: 29269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: склад ресурсов +- proto: SurveillanceCameraGeneral + entities: + - uid: 6466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: суд + - uid: 6467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: склад сервиса + - uid: 6468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: комната пассажиров + - uid: 6469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: склад инструментов + - uid: 6470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор рнд + - uid: 10951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор инженерной 2 + - uid: 12466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: аркада + - uid: 12470 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: бойцовский ринг + - uid: 12471 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: прачечная + - uid: 12472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: жилой отсек + - uid: 12473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор адвоката + - uid: 12905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор жилых отсеков + - uid: 13284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор химии + - uid: 13285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор библиотеки + - uid: 13397 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор хранилища + - uid: 13398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор бара + - uid: 13399 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор врат + - uid: 13400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор гидропоники + - uid: 13401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор карго + - uid: 13504 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор склада инструментов + - uid: 13533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор уборочной + - uid: 14145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: эвакуация + - uid: 14146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: отбытие + - uid: 14225 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор главы персонала + - uid: 14226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор EVA + - uid: 14339 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор инженерной + - uid: 14340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор склада инструментов 2 + - uid: 14525 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор репортёра 2 + - uid: 14526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор репортёра + - uid: 27299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: коридор уборочной 2 +- proto: SurveillanceCameraMedical + entities: + - uid: 6471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: верхняя палата + - uid: 6472 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: операционная 3 + - uid: 6473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: криостазисная + - uid: 6474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: комната парамедика + - uid: 6475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: кабинет психолога + - uid: 6476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: склад лекарств + - uid: 6477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: холл + - uid: 6478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: вход в химию + - uid: 6479 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: нижняя палата + - uid: 6480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: операционная + - uid: 6481 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: химия + - uid: 6482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: проход в вирусологию + - uid: 6483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: морг + - uid: 6484 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: операционная 2 + - uid: 6485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: вирусология + - uid: 6486 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: испытательный полигон + - uid: 6487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: 'вход на полигон ' +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 6488 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 6489 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 6490 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 6491 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 6492 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 6493 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 6494 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 6495 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 6496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: мастерская + - uid: 6497 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: склад канистр + - uid: 6498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: робототехника + - uid: 6499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: комната ученых + - uid: 6500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: ксенобиология + - uid: 6502 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: коридор мастерской + - uid: 6503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: генератор аномалий + - uid: 6504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: артефактная + - uid: 6505 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: сервера + - uid: 6506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: вальер обезьян + - uid: 6507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: борговая + - uid: 18020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 2 + - uid: 18026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 +- proto: SurveillanceCameraSecurity + entities: + - uid: 6508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: КПП мед. отсека + - uid: 6509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: стыковочная брига + - uid: 6510 + components: + - type: Transform + pos: -53.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: коридор пермабрига + - uid: 6511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: уборочная пермабрига + - uid: 6512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: игровая площадка пермабрига + - uid: 6513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: коридор в пермабриге + - uid: 6514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -96.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: розовая комната пермабрига + - uid: 6515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -92.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: жилые отсеки пермабрига + - uid: 6516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,-43.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: ботаника пермабрига + - uid: 6517 + components: + - type: Transform + pos: -72.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: столовая пермабрига + - uid: 6518 + components: + - type: Transform + pos: -71.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: конфискационная пермабрига + - uid: 6519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: оружейная + - uid: 6520 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: коридор оружейной + - uid: 6521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-48.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: офицерская + - uid: 6522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: бриг 1 + - uid: 6523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: склад улик + - uid: 6524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: бриг 2 + - uid: 6525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: смотритель + - uid: 6526 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: бриг 3 + - uid: 6527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: бриг 4 + - uid: 6528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'бригмед ' + - uid: 6530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: низ холла брига + - uid: 6531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: детектив + - uid: 6532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: коридор детектива + - uid: 6533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-47.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: коридор СБ + - uid: 6536 + components: + - type: Transform + pos: -16.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: операционная детектива + - uid: 6537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: КПП РнД + - uid: 6538 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: КПП карго + - uid: 6539 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: КПП инж. отдела + - uid: 14147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: эвакуация + - uid: 14148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: КПП отбытия-прибытия + - uid: 27561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: холл брига +- proto: SurveillanceCameraService + entities: + - uid: 3857 + components: + - type: Transform + pos: -57.5,57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: верхняя лестница церкви + - uid: 6540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: комната адвоката + - uid: 6541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: суд + - uid: 6542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: стойка бара + - uid: 6543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: каюта бармена + - uid: 6544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: комната отдыха + - uid: 6545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: закулисье + - uid: 6546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: библиотека + - uid: 6547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: комната библиотекаря + - uid: 6548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: столовая 2 + - uid: 6549 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: столовая + - uid: 6550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: кухня + - uid: 6551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: морозильник + - uid: 6552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: гидропоника + - uid: 6553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: гидропоника + - uid: 6554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: комната ботаников + - uid: 6555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: уборщик + - uid: 11148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: нижняя лестница церкви + - uid: 11259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: панорама церкви + - uid: 11333 + components: + - type: Transform + pos: -74.5,48.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: морг церкви + - uid: 11335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: сад церкви + - uid: 11345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,60.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: зал проповедей 2 + - uid: 11354 + components: + - type: Transform + pos: -68.5,49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: зал проповедей + - uid: 11357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: комната подношений + - uid: 11358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,57.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: комната священника + - uid: 11359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,46.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: прощальная комната + - uid: 29734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: репортёр +- proto: SurveillanceCameraSupply + entities: + - uid: 6557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: верхняя стойка + - uid: 6558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: склад + - uid: 6559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: склад 2 + - uid: 6560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: утилизаторы + - uid: 6562 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: нижняя стойка + - uid: 14153 + components: + - type: Transform + pos: 47.5,-44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: эвакуация карго + - uid: 18027 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: комната управления дронами + - uid: 29134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: каюта квартирмейстера +- proto: SurveillanceWirelessCameraAnchoredConstructed + entities: + - uid: 9048 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 11915 + components: + - type: Transform + pos: -80.9695,55.46037 + parent: 2 + - uid: 20798 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 +- proto: SurvivalKnife + entities: + - uid: 6563 + components: + - type: Transform + pos: 38.460426,-23.478071 + parent: 2 + - uid: 30999 + components: + - type: Transform + pos: 39.43959,-25.791553 + parent: 2 +- proto: SyndieMiniBomb + entities: + - uid: 13107 + components: + - type: MetaData + desc: Станци сильнее, стань круче, найдейся что она не приклеенна к земле! + name: гантеля + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.56706,-16.585152 + parent: 2 + missingComponents: + - OnUseTimerTrigger + - ExplodeOnTrigger + - Explosive +- proto: Syringe + entities: + - uid: 2307 + components: + - type: Transform + parent: 2305 + - type: Physics + canCollide: False + - uid: 6564 + components: + - type: Transform + pos: -30.539513,-6.4924674 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: -32.51365,-14.498329 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: -40.532494,-39.410065 + parent: 2 +- proto: Table + entities: + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-55.5 + parent: 2 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-55.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,4.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,24.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,1.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-25.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: -1.5,6.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: -9.5,11.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-0.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-25.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-35.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-32.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-51.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-50.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-53.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: 12.5,-50.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-51.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-50.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-53.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: 27.5,-49.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-43.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-44.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-43.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-61.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 34.5,-63.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-50.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-48.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-41.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-41.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-39.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-38.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-37.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: -34.5,-54.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: -25.5,-52.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,6.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-11.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-12.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: -28.5,10.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,3.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,3.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,3.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,0.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,0.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,0.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: -54.5,-37.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: -53.5,-37.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: -53.5,-38.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: -53.5,-33.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: -58.5,-36.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: -59.5,-36.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,-35.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,-35.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-32.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-33.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -67.5,-33.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: -74.5,-40.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: -75.5,-40.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: -76.5,-40.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: -71.5,-39.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: -71.5,-40.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: -71.5,-41.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: -68.5,-41.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: -68.5,-40.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: -68.5,-39.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: -75.5,-42.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -97.5,-32.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: -96.5,-34.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: -94.5,-34.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: -93.5,-34.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: -83.5,-45.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: -82.5,-45.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,0.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-7.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,10.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-21.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-21.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-21.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-27.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-27.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-19.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-24.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-10.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,24.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + pos: 39.5,-45.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-54.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-54.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-52.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 10879 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 10964 + components: + - type: Transform + pos: -74.5,46.5 + parent: 2 + - uid: 11015 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 11133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - uid: 11134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,9.5 + parent: 2 + - uid: 11135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 2 + - uid: 11136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 + - uid: 11619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-21.5 + parent: 2 + - uid: 12168 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-20.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-17.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-16.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-22.5 + parent: 2 + - uid: 12446 + components: + - type: Transform + pos: -64.5,-22.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-5.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: 1.5,44.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: -10.5,43.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,58.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: 46.5,-44.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: 41.5,-42.5 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: 45.5,-30.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 14660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,25.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: -16.5,-69.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: -27.5,-74.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + pos: -11.5,-68.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + pos: -10.5,-68.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + pos: -8.5,-66.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: 49.5,27.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: 48.5,27.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 16277 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 16278 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 16464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-58.5 + parent: 2 + - uid: 17859 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 17861 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 17862 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 17863 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 18064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,25.5 + parent: 2 + - uid: 18078 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 + - uid: 18117 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 18118 + components: + - type: Transform + pos: -13.5,20.5 + parent: 2 + - uid: 18146 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 18156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,23.5 + parent: 2 + - uid: 18279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,22.5 + parent: 2 + - uid: 18280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,20.5 + parent: 2 + - uid: 18281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,23.5 + parent: 2 + - uid: 18494 + components: + - type: Transform + pos: -72.5,1.5 + parent: 2 + - uid: 18558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-9.5 + parent: 2 + - uid: 18559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-9.5 + parent: 2 + - uid: 18560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-7.5 + parent: 2 + - uid: 18610 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 18682 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 2 + - uid: 18683 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 18720 + components: + - type: Transform + pos: -69.5,-30.5 + parent: 2 + - uid: 19317 + components: + - type: Transform + pos: -67.5,-22.5 + parent: 2 + - uid: 20099 + components: + - type: Transform + pos: -74.5,-15.5 + parent: 2 + - uid: 20113 + components: + - type: Transform + pos: -74.5,-18.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 21959 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 24381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-67.5 + parent: 2 + - uid: 27382 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 29679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,5.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 5824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,55.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,54.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,53.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 6840 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 6843 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,22.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,22.5 + parent: 2 + - uid: 14650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,22.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 3708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-2.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,6.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-39.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-3.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 2 + - uid: 6855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,9.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,9.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,9.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,3.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,3.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,3.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,2.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-5.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-5.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + - uid: 6869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 11620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-17.5 + parent: 2 + - uid: 11621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-17.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + pos: -28.5,7.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 6871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-44.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-44.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-42.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-42.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-41.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: -37.5,-40.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-46.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-45.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-44.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-45.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-45.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-45.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-46.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-44.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-51.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-2.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-36.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -73.5,-40.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: -73.5,-41.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: -73.5,-42.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,8.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,7.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-22.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + pos: -60.5,48.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -58.5,48.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: -60.5,60.5 + parent: 2 + - uid: 10811 + components: + - type: Transform + pos: -58.5,60.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 46.5,-33.5 + parent: 2 + - uid: 17808 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 + - uid: 17809 + components: + - type: Transform + pos: 29.5,33.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 17858 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 29969 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 +- proto: TableReinforcedGlass + entities: + - uid: 6913 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: -44.5,5.5 + parent: 2 + - uid: 20450 + components: + - type: Transform + pos: -59.5,62.5 + parent: 2 + - uid: 21061 + components: + - type: Transform + pos: -58.5,62.5 + parent: 2 +- proto: TableWeb + entities: + - uid: 20100 + components: + - type: Transform + pos: -75.5,-15.5 + parent: 2 + - uid: 20102 + components: + - type: Transform + pos: -79.5,-16.5 + parent: 2 + - uid: 20162 + components: + - type: Transform + pos: -71.5,-15.5 + parent: 2 +- proto: TableWood + entities: + - uid: 1323 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-54.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,60.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-26.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: -43.5,-51.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: -42.5,-54.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -91.5,-39.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,51.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,52.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,53.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,55.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,56.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,57.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + pos: -72.5,46.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: -71.5,45.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + pos: -70.5,45.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + pos: -69.5,46.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,48.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,48.5 + parent: 2 + - uid: 10905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,53.5 + parent: 2 + - uid: 10907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,53.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,54.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -77.5,55.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,55.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + pos: -75.5,60.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: -76.5,58.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + pos: -75.5,58.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + pos: -74.5,58.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: -74.5,60.5 + parent: 2 + - uid: 10934 + components: + - type: Transform + pos: -79.5,58.5 + parent: 2 + - uid: 10935 + components: + - type: Transform + pos: -79.5,60.5 + parent: 2 + - uid: 10936 + components: + - type: Transform + pos: -78.5,60.5 + parent: 2 + - uid: 11068 + components: + - type: Transform + pos: -53.5,57.5 + parent: 2 + - uid: 11069 + components: + - type: Transform + pos: -53.5,59.5 + parent: 2 + - uid: 11076 + components: + - type: Transform + pos: -53.5,51.5 + parent: 2 + - uid: 11077 + components: + - type: Transform + pos: -53.5,50.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -53.5,49.5 + parent: 2 + - uid: 11112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,60.5 + parent: 2 + - uid: 12052 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 12053 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 14675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,19.5 + parent: 2 + - uid: 14790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,18.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,18.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,18.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,19.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 2 + - uid: 18282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,19.5 + parent: 2 + - uid: 18283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,26.5 + parent: 2 + - uid: 18284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,27.5 + parent: 2 + - uid: 18343 + components: + - type: Transform + pos: -46.5,22.5 + parent: 2 + - uid: 18344 + components: + - type: Transform + pos: -51.5,21.5 + parent: 2 + - uid: 18345 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - uid: 18346 + components: + - type: Transform + pos: -45.5,22.5 + parent: 2 + - uid: 18369 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 18381 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 18472 + components: + - type: Transform + pos: -69.5,3.5 + parent: 2 + - uid: 18473 + components: + - type: Transform + pos: -70.5,0.5 + parent: 2 + - uid: 18474 + components: + - type: Transform + pos: -69.5,0.5 + parent: 2 + - uid: 18475 + components: + - type: Transform + pos: -75.5,0.5 + parent: 2 + - uid: 18476 + components: + - type: Transform + pos: -76.5,0.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 18088 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 18147 + components: + - type: Transform + pos: -16.5,22.5 + parent: 2 +- proto: TechnologyDisk + entities: + - uid: 5437 + components: + - type: MetaData + desc: Диск хранящий на себе данные мутаций ДНК. К вашему сожалению, вы не знаете как это сейчас использовать. + name: диск днк + - type: Transform + pos: -44.473892,7.4617915 + parent: 2 + missingComponents: + - TechnologyDisk + - uid: 6986 + components: + - type: Transform + pos: 33.472187,-0.50153327 + parent: 2 + - uid: 18439 + components: + - type: Transform + parent: 18438 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18441 + components: + - type: Transform + parent: 18438 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18443 + components: + - type: Transform + parent: 18442 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18444 + components: + - type: Transform + parent: 18442 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18445 + components: + - type: Transform + parent: 18442 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TechnologyDiskRare + entities: + - uid: 6987 + components: + - type: Transform + pos: 33.690937,-0.26715827 + parent: 2 + - uid: 18440 + components: + - type: Transform + parent: 18438 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TegCenter + entities: + - uid: 6988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-61.5 + parent: 2 + - type: TegGenerator + powerFactor: 4 + - type: ApcPowerReceiver + powerDisabled: True +- proto: TegCirculator + entities: + - uid: 6989 + components: + - type: Transform + anchored: False + pos: 23.5,-61.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - type: Physics + bodyType: Dynamic + - uid: 6990 + components: + - type: Transform + anchored: False + rot: 3.141592653589793 rad + pos: 21.5,-61.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - type: Physics + bodyType: Dynamic +- proto: TelecomServer + entities: + - uid: 6991 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - type: WiresPanel + open: True + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30885 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6992 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - type: WiresPanel + open: True + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30983 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6993 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - type: WiresPanel + open: True + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30984 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6994 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - type: WiresPanel + open: True + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30985 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6996 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30987 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6997 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30988 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 6998 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30989 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 30996 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 30997 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: TelecomServerCircuitboard + entities: + - uid: 6999 + components: + - type: Transform + pos: -1.4535475,-35.356388 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: 36.53002,12.620718 + parent: 2 +- proto: TeslaCoil + entities: + - uid: 10057 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: 12.5,-55.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 +- proto: TeslaGenerator + entities: + - uid: 1222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-58.5 + parent: 2 +- proto: TintedWindow + entities: + - uid: 7001 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: -60.5,-39.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: -56.5,52.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: -54.5,52.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: -54.5,56.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: -56.5,56.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: -57.5,55.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: -57.5,53.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,63.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,58.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,59.5 + parent: 2 + - uid: 11601 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 7021 + components: + - type: Transform + pos: -83.5,-33.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,-29.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-23.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-23.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-23.5 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 7026 + components: + - type: Transform + pos: 23.57755,6.3926163 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: -4.470541,-36.443687 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: 13.297335,-33.388004 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: 13.609835,-33.59113 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: -21.497337,-14.206114 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: 6.530804,-34.348705 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: 40.49352,4.552514 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: 15.4964485,-61.301857 + parent: 2 + - uid: 16143 + components: + - type: Transform + pos: 18.506939,28.419289 + parent: 2 + - uid: 16320 + components: + - type: Transform + pos: -54.549675,-46.516117 + parent: 2 + - uid: 18291 + components: + - type: Transform + pos: -35.5023,22.540726 + parent: 2 + - uid: 20717 + components: + - type: Transform + pos: -4.488137,-47.43141 + parent: 2 + - uid: 20815 + components: + - type: Transform + pos: -0.45934737,-40.5013 + parent: 2 +- proto: ToolboxElectricalTurretFilled + entities: + - uid: 7034 + components: + - type: Transform + pos: -33.652527,-37.222813 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 7035 + components: + - type: Transform + pos: 4.510446,-21.652706 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: 3.4313054,-25.527853 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: 24.573235,-35.560978 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: -26.60747,-35.428574 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: -39.55696,-45.40777 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: 46.663097,-9.428813 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: 46.459972,-9.303813 + parent: 2 + - uid: 12459 + components: + - type: Transform + pos: -64.47523,-17.408741 + parent: 2 + - uid: 18271 + components: + - type: Transform + pos: -41.517025,19.600357 + parent: 2 + - uid: 18272 + components: + - type: Transform + pos: -41.5014,26.631607 + parent: 2 + - uid: 18567 + components: + - type: Transform + pos: -53.478775,-7.5465364 + parent: 2 + - uid: 18876 + components: + - type: Transform + pos: -62.485435,-12.3136425 + parent: 2 + - uid: 19955 + components: + - type: Transform + pos: -72.50146,-31.346088 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 7042 + components: + - type: Transform + pos: -6.476984,10.603336 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 7043 + components: + - type: Transform + pos: -1.4914907,5.7522964 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: 4.463571,-21.387081 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: 6.5322185,-34.493782 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: 19.297335,-36.30988 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: 19.53171,-36.46613 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: 4.413831,-53.279816 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: 19.502886,-42.489643 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -54.645664,3.6000588 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -33.50359,-37.43558 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: 33.49144,-2.4390333 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: 23.499426,6.6426163 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: 44.2877,-1.2256174 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: 44.53356,-1.4903928 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: 18.490274,10.688059 + parent: 2 + - uid: 15331 + components: + - type: Transform + pos: -5.5061865,58.63662 + parent: 2 + - uid: 16026 + components: + - type: Transform + pos: 18.490171,28.60654 + parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -54.549675,-46.297367 + parent: 2 + - uid: 17864 + components: + - type: Transform + pos: 28.565718,33.640347 + parent: 2 + - uid: 20809 + components: + - type: Transform + pos: -0.45934737,-40.347336 + parent: 2 +- proto: Torch + entities: + - uid: 11784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -83.40837,65.20052 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: -89.72087,63.38411 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: -88.72087,56.88411 + parent: 2 + - uid: 11865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -84.361496,58.12256 + parent: 2 +- proto: TorsoBorg + entities: + - uid: 7057 + components: + - type: Transform + pos: -2.4815173,-38.396126 + parent: 2 +- proto: TorsoSkeleton + entities: + - uid: 18160 + components: + - type: Transform + pos: -21.48828,23.973883 + parent: 2 +- proto: TowercapSeeds + entities: + - uid: 7058 + components: + - type: Transform + pos: 13.537853,-13.776811 + parent: 2 +- proto: ToyAi + entities: + - uid: 7059 + components: + - type: Transform + pos: 21.250668,-17.57746 + parent: 2 +- proto: ToyFigurineAtmosTech + entities: + - uid: 10003 + components: + - type: Transform + pos: 9.717147,-43.404106 + parent: 2 + - uid: 25680 + components: + - type: Transform + pos: 24.732727,-67.5225 + parent: 2 +- proto: ToyFigurineBartender + entities: + - uid: 7060 + components: + - type: Transform + pos: -13.734098,-2.3622537 + parent: 2 +- proto: ToyFigurineBotanist + entities: + - uid: 7061 + components: + - type: Transform + pos: 18.421303,0.55583644 + parent: 2 +- proto: ToyFigurineBoxer + entities: + - uid: 14588 + components: + - type: Transform + pos: -47.99824,-19.908539 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 7062 + components: + - type: Transform + pos: 13.311871,-15.3673115 + parent: 2 +- proto: ToyFigurineCargoTech + entities: + - uid: 7063 + components: + - type: Transform + pos: 27.454191,-25.421003 + parent: 2 +- proto: ToyFigurineChaplain + entities: + - uid: 14227 + components: + - type: Transform + pos: -58.964165,54.697193 + parent: 2 +- proto: ToyFigurineChef + entities: + - uid: 7064 + components: + - type: Transform + pos: 12.506469,0.6724287 + parent: 2 + - uid: 30157 + components: + - type: Transform + pos: 3.768919,29.45041 + parent: 2 +- proto: ToyFigurineChemist + entities: + - uid: 7065 + components: + - type: Transform + pos: -29.253359,-2.4329135 + parent: 2 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 7066 + components: + - type: Transform + pos: 23.709805,-41.13782 + parent: 2 + - uid: 26493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.296556,-72.51373 + parent: 2 +- proto: ToyFigurineChiefMedicalOfficer + entities: + - uid: 7067 + components: + - type: Transform + pos: -47.24666,6.9191785 + parent: 2 +- proto: ToyFigurineClown + entities: + - uid: 7068 + components: + - type: Transform + pos: -14.448074,-7.133502 + parent: 2 + - uid: 20452 + components: + - type: Transform + pos: 47.3435,-46.421448 + parent: 2 + - uid: 30158 + components: + - type: Transform + pos: 3.362669,29.778536 + parent: 2 +- proto: ToyFigurineDetective + entities: + - uid: 7069 + components: + - type: Transform + pos: -15.299091,-37.288387 + parent: 2 +- proto: ToyFigurineEngineer + entities: + - uid: 7070 + components: + - type: Transform + pos: 17.612055,-43.36448 + parent: 2 + - uid: 25730 + components: + - type: Transform + pos: 24.420227,-67.506874 + parent: 2 +- proto: ToyFigurineFootsoldier + entities: + - uid: 9428 + components: + - type: Transform + pos: 48.32564,30.584364 + parent: 2 +- proto: ToyFigurineHamlet + entities: + - uid: 14590 + components: + - type: Transform + parent: 14589 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToyFigurineHeadOfPersonnel + entities: + - uid: 7071 + components: + - type: Transform + pos: -6.743265,-22.366945 + parent: 2 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 7072 + components: + - type: Transform + pos: -41.31329,-52.391617 + parent: 2 +- proto: ToyFigurineHoloClown + entities: + - uid: 3467 + components: + - type: Transform + parent: 2166 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToyFigurineJanitor + entities: + - uid: 7073 + components: + - type: Transform + pos: 31.276184,-34.38673 + parent: 2 +- proto: ToyFigurineLawyer + entities: + - uid: 7074 + components: + - type: Transform + pos: -19.200575,-21.356483 + parent: 2 +- proto: ToyFigurineLibrarian + entities: + - uid: 7075 + components: + - type: Transform + pos: -17.480118,-2.4219625 + parent: 2 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 7076 + components: + - type: Transform + pos: -30.316133,5.621667 + parent: 2 +- proto: ToyFigurineMime + entities: + - uid: 4126 + components: + - type: Transform + pos: 47.781,-46.421448 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: -14.192756,-6.096738 + parent: 2 + - uid: 30159 + components: + - type: Transform + pos: 3.706419,29.73166 + parent: 2 +- proto: ToyFigurineMouse + entities: + - uid: 14587 + components: + - type: Transform + pos: -6.515804,42.20118 + parent: 2 +- proto: ToyFigurineMusician + entities: + - uid: 7078 + components: + - type: Transform + pos: -11.278839,-6.345767 + parent: 2 +- proto: ToyFigurineNukie + entities: + - uid: 8601 + components: + - type: Transform + pos: 48.628242,30.423882 + parent: 2 +- proto: ToyFigurineNukieCommander + entities: + - uid: 8462 + components: + - type: Transform + pos: 48.97644,30.3362 + parent: 2 +- proto: ToyFigurineNukieElite + entities: + - uid: 6270 + components: + - type: Transform + pos: 49.704098,30.556847 + parent: 2 +- proto: ToyFigurineParamedic + entities: + - uid: 1789 + components: + - type: Transform + parent: 1787 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToyFigurinePassenger + entities: + - uid: 7079 + components: + - type: Transform + pos: 24.334097,-33.3754 + parent: 2 + - uid: 30156 + components: + - type: Transform + pos: 3.3309708,29.341036 + parent: 2 +- proto: ToyFigurineQuartermaster + entities: + - uid: 7080 + components: + - type: Transform + pos: 36.325615,-11.338698 + parent: 2 +- proto: ToyFigurineQueen + entities: + - uid: 18786 + components: + - type: Transform + pos: -67.51621,17.472033 + parent: 2 +- proto: ToyFigurineRatKing + entities: + - uid: 11019 + components: + - type: Transform + pos: -81.430275,-49.500484 + parent: 2 +- proto: ToyFigurineRatServant + entities: + - uid: 11018 + components: + - type: Transform + pos: -83.41465,-49.45361 + parent: 2 +- proto: ToyFigurineResearchDirector + entities: + - uid: 7081 + components: + - type: Transform + pos: 36.76412,10.625229 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 7082 + components: + - type: Transform + pos: 53.50007,-8.432132 + parent: 2 +- proto: ToyFigurineSecurity + entities: + - uid: 7083 + components: + - type: Transform + pos: -25.5426,-52.320545 + parent: 2 +- proto: ToyFigurineSlime + entities: + - uid: 14594 + components: + - type: Transform + pos: 25.514412,21.619532 + parent: 2 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 2630 + components: + - type: Transform + pos: 28.31519,40.393005 + parent: 2 +- proto: ToyFigurineWarden + entities: + - uid: 7084 + components: + - type: Transform + pos: -33.482925,-36.54292 + parent: 2 +- proto: ToyFigurineWizard + entities: + - uid: 11024 + components: + - type: Transform + pos: 27.545336,40.947456 + parent: 2 + - uid: 20872 + components: + - type: Transform + pos: 51.517754,-68.44594 + parent: 2 +- proto: ToyFigurineWizardFake + entities: + - uid: 10985 + components: + - type: Transform + pos: -7.1329074,11.861746 + parent: 2 +- proto: ToyGriffin + entities: + - uid: 11022 + components: + - type: Transform + pos: 28.34221,41.259956 + parent: 2 +- proto: ToyHammer + entities: + - uid: 1686 + components: + - type: Transform + parent: 1683 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 20738 + components: + - type: Transform + parent: 20737 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToyIan + entities: + - uid: 7085 + components: + - type: Transform + pos: -6.2539034,-22.452051 + parent: 2 +- proto: ToyMauler + entities: + - uid: 15145 + components: + - type: MetaData + name: фигурка маулера + - type: Transform + pos: 49.327663,30.386703 + parent: 2 +- proto: ToyNuke + entities: + - uid: 2147 + components: + - type: Transform + pos: 48.975685,30.70908 + parent: 2 + - type: PointLight + energy: 0.05 + color: '#FF0000FF' +- proto: ToyOwlman + entities: + - uid: 1696 + components: + - type: Transform + parent: 1691 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17934 + components: + - type: Transform + pos: 32.699646,29.591175 + parent: 2 +- proto: ToyRipley + entities: + - uid: 7086 + components: + - type: Transform + pos: 39.827896,-25.412151 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 7087 + components: + - type: Transform + pos: -14.492945,-5.3751316 + parent: 2 + - uid: 11603 + components: + - type: Transform + pos: -40.511253,-17.417206 + parent: 2 +- proto: ToySkeleton + entities: + - uid: 7088 + components: + - type: Transform + pos: 21.650185,-17.368713 + parent: 2 + - uid: 11026 + components: + - type: Transform + pos: 27.87346,41.353706 + parent: 2 +- proto: ToySpawner + entities: + - uid: 7089 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: -96.5,-28.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: 44.5,-16.5 + parent: 2 +- proto: ToySword + entities: + - uid: 15494 + components: + - type: Transform + pos: 0.8917328,60.510002 + parent: 2 +- proto: TrashBag + entities: + - uid: 7092 + components: + - type: Transform + pos: -75.52517,-35.55236 + parent: 2 + - uid: 18131 + components: + - type: Transform + pos: -15.466297,20.584656 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 12114 + components: + - type: Transform + pos: 3.4693513,28.972988 + parent: 2 +- proto: TrashBananiumPeel + entities: + - uid: 16048 + components: + - type: Transform + pos: 32.68672,-45.274483 + parent: 2 +- proto: trayScanner + entities: + - uid: 7093 + components: + - type: Transform + pos: -21.459923,-12.383242 + parent: 2 + - uid: 10826 + components: + - type: Transform + pos: -2.2254286,-49.381374 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 6197 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6406: + - Right: Forward + - Middle: Off + - Left: Reverse + 6405: + - Right: Forward + - Left: Reverse + - Middle: Off + 9125: + - Right: Forward + - Left: Reverse + - Middle: Off + 6200: + - Left: Reverse + - Right: Forward + - Middle: Off + 6199: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 7094 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2107: + - Left: Reverse + - Right: Forward + - Middle: Off + 2108: + - Left: Reverse + - Right: Forward + - Middle: Off + 2109: + - Left: Reverse + - Right: Forward + - Middle: Off + 2110: + - Left: Reverse + - Right: Forward + - Middle: Off + 2111: + - Left: Reverse + - Right: Forward + - Middle: Off + 2112: + - Left: Reverse + - Right: Forward + - Middle: Off + 2113: + - Left: Reverse + - Right: Forward + - Middle: Off + 2114: + - Left: Reverse + - Right: Forward + - Middle: Off + 2115: + - Left: Reverse + - Right: Forward + - Middle: Off + 2116: + - Left: Reverse + - Right: Forward + - Middle: Off + 2117: + - Left: Reverse + - Right: Forward + - Middle: Off + 2118: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 7096 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2107: + - Left: Reverse + - Right: Forward + - Middle: Off + 2108: + - Left: Reverse + - Right: Forward + - Middle: Off + 2109: + - Left: Reverse + - Right: Forward + - Middle: Off + 2110: + - Left: Reverse + - Right: Forward + - Middle: Off + 2111: + - Left: Reverse + - Right: Forward + - Middle: Off + 2112: + - Left: Reverse + - Right: Forward + - Middle: Off + 2113: + - Left: Reverse + - Right: Forward + - Middle: Off + 2114: + - Left: Reverse + - Right: Forward + - Middle: Off + 2115: + - Left: Reverse + - Right: Forward + - Middle: Off + 2116: + - Left: Reverse + - Right: Forward + - Middle: Off + 2117: + - Left: Reverse + - Right: Forward + - Middle: Off + 2118: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 7097 + components: + - type: Transform + pos: 36.13674,-23.614838 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2107: + - Left: Reverse + - Right: Forward + - Middle: Off + 2108: + - Left: Reverse + - Right: Forward + - Middle: Off + 2109: + - Left: Reverse + - Right: Forward + - Middle: Off + 2110: + - Left: Reverse + - Right: Forward + - Middle: Off + 2111: + - Left: Reverse + - Right: Forward + - Middle: Off + 2112: + - Left: Reverse + - Right: Forward + - Middle: Off + 2113: + - Left: Reverse + - Right: Forward + - Middle: Off + 2114: + - Left: Reverse + - Right: Forward + - Middle: Off + 2115: + - Left: Reverse + - Right: Forward + - Middle: Off + 2116: + - Left: Reverse + - Right: Forward + - Middle: Off + 2117: + - Left: Reverse + - Right: Forward + - Middle: Off + 2118: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 7098 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2096: + - Right: Forward + - Left: Reverse + - Middle: Off + 2095: + - Left: Reverse + - Right: Forward + - Middle: Off + 2097: + - Left: Reverse + - Right: Forward + - Middle: Off + 2098: + - Left: Reverse + - Right: Forward + - Middle: Off + 2099: + - Left: Reverse + - Right: Forward + - Middle: Off + 2094: + - Left: Reverse + - Right: Forward + - Middle: Off + 2093: + - Left: Reverse + - Right: Forward + - Middle: Off + 2092: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 7099 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2100: + - Left: Reverse + - Right: Forward + - Middle: Off + 2101: + - Left: Reverse + - Right: Forward + - Middle: Off + 2102: + - Left: Reverse + - Right: Forward + - Middle: Off + 2103: + - Left: Reverse + - Right: Forward + - Middle: Off + 2104: + - Left: Reverse + - Right: Forward + - Middle: Off + 2105: + - Left: Reverse + - Right: Forward + - Middle: Off + 2106: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 11368 + components: + - type: Transform + pos: -76.5,44.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11364: + - Left: Forward + - Right: Reverse + - Middle: Off + 11365: + - Right: Reverse + - Left: Forward + - Middle: Off + 11366: + - Left: Forward + - Right: Reverse + - Middle: Off + 11367: + - Right: Reverse + - Left: Forward + - Middle: Off + - uid: 17512 + components: + - type: Transform + pos: 31.5,-73.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17472: + - Left: Forward + - Right: Reverse + - Middle: Off + 17473: + - Left: Forward + - Right: Reverse + - Middle: Off + 17474: + - Left: Forward + - Right: Reverse + - Middle: Off + 17475: + - Left: Forward + - Right: Reverse + - Middle: Off + 17476: + - Left: Forward + - Right: Reverse + - Middle: Off + 17483: + - Left: Forward + - Right: Reverse + - Middle: Off + 17484: + - Left: Forward + - Right: Reverse + - Middle: Off + 17485: + - Left: Forward + - Right: Reverse + - Middle: Off + 10126: + - Left: Reverse + - Right: Forward +- proto: UnfinishedMachineFrame + entities: + - uid: 7100 + components: + - type: Transform + pos: 43.5,-25.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 17142 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 +- proto: UniformPrinter + entities: + - uid: 7101 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 +- proto: UniformScrubsColorBlue + entities: + - uid: 1727 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformScrubsColorGreen + entities: + - uid: 1728 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformScrubsColorPurple + entities: + - uid: 1729 + components: + - type: Transform + parent: 1720 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 7102 + components: + - type: Transform + pos: 19.556383,-7.4506607 + parent: 2 +- proto: UprightPianoInstrument + entities: + - uid: 3282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,60.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 7103 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 4119 + components: + - type: Transform + pos: -33.540424,-15.354702 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 27.440039,13.581465 + parent: 2 + - uid: 17917 + components: + - type: Transform + pos: 31.44204,20.556166 + parent: 2 + - uid: 17918 + components: + - type: Transform + pos: 31.538363,20.64476 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 7107 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 7108 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 7109 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 7111 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 7113 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 10931 + components: + - type: Transform + pos: -76.5,60.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 7114 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 7115 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 7116 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 7118 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: -66.5,-5.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 1329 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 + - uid: 11008 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 12254 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 18287 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - uid: 18497 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 7122 + components: + - type: Transform + pos: -83.5,-47.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: 40.5,-45.5 + parent: 2 + - uid: 12164 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 7123 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 12891 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + pos: 43.5,-33.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 7126 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 7127 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 7128 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 7129 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 7130 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 7131 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: -95.5,-34.5 + parent: 2 +- proto: VendingMachineGeneDrobe + entities: + - uid: 7133 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 7134 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 7135 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 7136 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 +- proto: VendingMachineMagivend + entities: + - uid: 11814 + components: + - type: Transform + pos: -78.5,62.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 7137 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 31072 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 7142 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 7144 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 11143 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 +- proto: VendingMachineRestockChefvend + entities: + - uid: 2940 + components: + - type: Transform + parent: 2937 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: VendingMachineRoboDrobe + entities: + - uid: 7146 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 1979 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 18289 + components: + - type: Transform + pos: -35.5,24.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 7148 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 7150 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 7151 + components: + - type: Transform + pos: -27.5,-53.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 7152 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 7153 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 7155 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 11140 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 29164 + components: + - type: Transform + pos: -88.5,-44.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 16315 + components: + - type: Transform + pos: -54.5,-48.5 + parent: 2 + - uid: 17490 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 7165 + components: + - type: Transform + pos: -73.5,-37.5 + parent: 2 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 4491 + components: + - type: Transform + pos: -55.5,8.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 7166 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 7168 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 18719 + components: + - type: Transform + pos: -69.5,-31.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 7172 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -82.5,-47.5 + parent: 2 + - uid: 18341 + components: + - type: Transform + pos: -51.5,20.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 7174 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 7177 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 7178 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 12793 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 7180 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: 21.5,-51.5 + parent: 2 +- proto: WallCult + entities: + - uid: 10064 + components: + - type: Transform + pos: -72.5,44.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + pos: -69.5,44.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: -71.5,44.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: -72.5,45.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + pos: -69.5,45.5 + parent: 2 +- proto: WallmountSubstationElectronics + entities: + - uid: 1145 + components: + - type: Transform + parent: 1139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WallmountTelescreen + entities: + - uid: 2846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-0.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,5.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-50.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,6.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -96.5,-27.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,41.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-69.5 + parent: 2 + - uid: 17960 + components: + - type: Transform + pos: 31.5,33.5 + parent: 2 +- proto: WallPlastitanium + entities: + - uid: 7200 + components: + - type: Transform + pos: 40.5,34.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: 44.5,34.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-2.5 + parent: 2 + - uid: 971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-4.5 + parent: 2 + - uid: 972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 2 + - uid: 980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-3.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 28.5,-77.5 + parent: 2 + - uid: 993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,-1.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 18.5,-78.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 27.5,-79.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 28.5,-78.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 20.5,-79.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 22.5,-79.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: 16.5,-68.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 17.5,-66.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: 18.5,-74.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: -51.5,-56.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: -47.5,-56.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: 18.5,-75.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -53.5,-49.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,8.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-5.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: 45.5,-29.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: 18.5,-77.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-62.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-62.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-61.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: 28.5,-67.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: 18.5,-76.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-48.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-47.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-51.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: 25.5,-66.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-55.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -10.5,-77.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: 28.5,-68.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-17.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: 27.5,-66.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: 28.5,-79.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 19.5,-66.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-56.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-54.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-52.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-47.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-47.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -9.5,-77.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: 28.5,-73.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 25.5,-79.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 24.5,-79.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 23.5,-79.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: 18.5,-79.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: 21.5,-79.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 19.5,-79.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-63.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: 16.5,-67.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-63.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-18.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,5.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - uid: 6853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 6854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,12.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,14.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-4.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 46.5,4.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 49.5,5.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: 49.5,8.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: 51.5,13.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: 48.5,14.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: 48.5,16.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: 23.5,25.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 38.5,34.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: 22.5,33.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 38.5,33.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: 38.5,32.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: 26.5,34.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: 34.5,35.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: 34.5,37.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: 34.5,39.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: 33.5,39.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: 31.5,39.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: 37.5,34.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: 35.5,34.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -52.5,19.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: -51.5,19.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: -51.5,18.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -50.5,18.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: -52.5,15.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: -56.5,-32.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: -87.5,-24.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: -87.5,-30.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: -87.5,-27.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: -66.5,-32.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: -84.5,-35.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: -88.5,-24.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: -79.5,-40.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -78.5,-39.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: -79.5,-39.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: -76.5,-39.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: -72.5,-32.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: -71.5,-32.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: -70.5,-32.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: -69.5,-32.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: -90.5,-24.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: -90.5,-25.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: -89.5,-24.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: -86.5,-32.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -87.5,-32.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: -90.5,-27.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: -90.5,-28.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: -89.5,-27.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: -88.5,-27.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: -90.5,-32.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: -90.5,-30.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: -90.5,-31.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: -89.5,-30.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: -88.5,-30.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: -61.5,-33.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: -57.5,-32.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: -61.5,-32.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: -63.5,-36.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: -65.5,-36.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -64.5,-36.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: -64.5,-33.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: -77.5,-35.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: -77.5,-32.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: -77.5,-33.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: -75.5,-32.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: -76.5,-32.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: -74.5,-32.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: -73.5,-32.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: -64.5,-32.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: -66.5,-36.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -66.5,-41.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: -73.5,-33.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: -66.5,-40.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: -72.5,-43.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: -75.5,-43.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -78.5,-42.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: -78.5,-41.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -79.5,-41.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -66.5,-39.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: -66.5,-43.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: -66.5,-42.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: -64.5,-31.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: -65.5,-31.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: -66.5,-31.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -69.5,-43.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: -78.5,-43.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: -73.5,-35.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: -82.5,-32.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: -94.5,-24.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: -93.5,-25.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: -95.5,-24.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: -93.5,-24.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: -68.5,-32.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: -67.5,-32.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: -77.5,-36.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: -80.5,-32.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: -70.5,-36.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: -73.5,-36.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: -80.5,-34.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: -81.5,-32.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: -80.5,-35.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: -73.5,-39.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: -80.5,-36.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: -84.5,-36.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: -81.5,-36.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: -85.5,-36.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: -84.5,-34.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: -83.5,-36.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: -84.5,-32.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: -83.5,-32.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: -96.5,-24.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: -93.5,-27.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + pos: -94.5,-27.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + pos: -95.5,-27.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: -94.5,-28.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: -96.5,-27.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: -97.5,-27.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: -84.5,-33.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -97.5,-28.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -97.5,-30.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: -97.5,-29.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: -94.5,-30.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: -93.5,-30.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: 15.5,-49.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: 25.5,-39.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: 26.5,-39.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: -73.5,43.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: -73.5,42.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: -30.5,-48.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: -29.5,-50.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: -36.5,-55.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: -30.5,-55.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: -29.5,-55.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: -29.5,-53.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: -26.5,-54.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: -25.5,-54.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: -24.5,-52.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: -24.5,-51.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 18.5,-73.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: -47.5,-52.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: -53.5,-52.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: -53.5,-53.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: -54.5,-53.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: -55.5,-53.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: -53.5,-50.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: -47.5,-39.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: -47.5,-38.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: -47.5,-37.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: -47.5,-36.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: -48.5,-36.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: -51.5,-36.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: -52.5,-36.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: -52.5,-37.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -52.5,-38.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: -52.5,-39.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: -52.5,-40.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: -53.5,-40.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: -53.5,-41.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: -53.5,-42.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: -54.5,-42.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: -55.5,-42.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: -56.5,-42.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: -7.5,6.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: -10.5,12.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: -9.5,12.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: -48.5,7.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: -48.5,-33.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: -47.5,-33.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: -47.5,-27.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: -47.5,-30.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: -61.5,-36.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: -63.5,-41.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: -63.5,-42.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: -63.5,-43.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: -63.5,-40.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: -63.5,-39.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: -64.5,-39.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: 11.5,-56.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: 15.5,-55.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 15.5,-54.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: 11.5,-61.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: 11.5,-62.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: 28.5,-49.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + pos: 30.5,-54.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: 30.5,-55.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: 30.5,-56.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: 30.5,-57.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: 30.5,-58.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: 30.5,-63.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: 30.5,-64.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: 29.5,-64.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: 29.5,-65.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: 29.5,-66.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: 28.5,-66.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: 28.5,-69.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: 28.5,-70.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: 22.5,-66.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: 16.5,-70.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + pos: 16.5,-69.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + pos: 16.5,-66.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: 15.5,-66.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: 14.5,-66.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: 20.5,-66.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: 24.5,-66.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 23.5,-66.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: 21.5,-66.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: -19.5,-79.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: -20.5,-79.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: -20.5,-80.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: -20.5,-82.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: -20.5,-83.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: -16.5,-83.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: -16.5,-82.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: -16.5,-80.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: -16.5,-79.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: -17.5,-79.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: -17.5,-78.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: -17.5,-77.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 36.5,-60.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 36.5,-61.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: 37.5,-59.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: 38.5,-59.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: 39.5,-59.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 40.5,-59.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 41.5,-59.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: 42.5,-60.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 42.5,-61.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 42.5,-63.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: 42.5,-64.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 41.5,-64.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: 40.5,-64.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: 39.5,-64.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: 38.5,-64.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 37.5,-64.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 36.5,-64.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 36.5,-63.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 35.5,-66.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 35.5,-67.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 35.5,-69.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 35.5,-70.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: -50.5,-33.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: -52.5,-32.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: -97.5,-35.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: -96.5,-35.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: -94.5,-35.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: -93.5,-35.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: -93.5,-39.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: -93.5,-40.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: -89.5,-40.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: -89.5,-39.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: -90.5,-36.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: -88.5,-39.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: -87.5,-39.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: -85.5,-39.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: -84.5,-39.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: -83.5,-40.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: -83.5,-39.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: -83.5,-41.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: -82.5,-41.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: -80.5,-41.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: -87.5,-42.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: -88.5,-42.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: -89.5,-42.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: -85.5,-42.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: -84.5,-42.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: -83.5,-42.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: -83.5,-44.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: -81.5,-44.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: -81.5,-45.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -81.5,-48.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: -82.5,-48.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -83.5,-48.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: -84.5,-48.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: -88.5,-48.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: -89.5,-48.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: -89.5,-45.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: -89.5,-44.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: -77.5,-17.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -78.5,-18.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -79.5,-18.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: -80.5,-18.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: -80.5,-17.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: -80.5,-16.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -80.5,-15.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: -80.5,-14.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -79.5,-14.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: -78.5,-14.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: -77.5,-14.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: -77.5,-15.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: -66.5,4.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: -65.5,4.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: -65.5,5.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: -64.5,5.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + pos: -61.5,5.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: -63.5,5.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + pos: -59.5,5.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -58.5,5.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: -57.5,5.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: -56.5,5.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: -56.5,4.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: -66.5,-6.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: -67.5,-6.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: -67.5,-5.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: -67.5,-3.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: -67.5,-2.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: -66.5,-1.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: -66.5,0.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: -51.5,15.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: -51.5,16.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: 45.5,3.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,10.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,10.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,6.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,5.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-29.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-28.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-63.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-63.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-63.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-63.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-63.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-63.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-63.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-59.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-59.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-59.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-58.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-57.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-59.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-59.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-59.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-58.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-57.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-59.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-59.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-57.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-57.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: 16.5,-72.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: 17.5,-73.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: 19.5,-73.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + pos: 16.5,-71.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + pos: 20.5,-73.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: 21.5,-73.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + pos: 22.5,-73.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: 23.5,-73.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: 25.5,-73.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + pos: 26.5,-73.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: 27.5,-73.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: 28.5,-72.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-55.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-55.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-49.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-55.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-48.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-48.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-55.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-54.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-54.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-53.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-51.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-52.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-49.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-48.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-48.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + pos: 28.5,-71.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: 27.5,-72.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,1.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-3.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-2.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + pos: -52.5,52.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + pos: -52.5,51.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + pos: -52.5,50.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: -52.5,49.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: -52.5,48.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + pos: -52.5,47.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: -51.5,52.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: -53.5,47.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + pos: -52.5,56.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + pos: -51.5,56.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + pos: -50.5,56.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: -50.5,57.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + pos: -50.5,59.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: -50.5,60.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + pos: -51.5,60.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + pos: -52.5,60.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + pos: -52.5,61.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: -53.5,61.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: -53.5,62.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: -53.5,63.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + pos: -53.5,64.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + pos: -54.5,64.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: -54.5,65.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + pos: -55.5,65.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: -81.5,58.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: -58.5,65.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: -60.5,65.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + pos: -59.5,65.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: -61.5,65.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + pos: -62.5,65.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: -62.5,64.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: -63.5,64.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + pos: -64.5,64.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + pos: -65.5,64.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: -65.5,65.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + pos: -66.5,65.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + pos: -67.5,65.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + pos: -68.5,65.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + pos: -69.5,65.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + pos: -70.5,65.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: -71.5,65.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -72.5,65.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: -72.5,61.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: -72.5,62.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: -72.5,63.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + pos: -72.5,64.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: -73.5,61.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + pos: -79.5,57.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: -80.5,58.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: -81.5,60.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: -81.5,59.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: -79.5,61.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: -80.5,60.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: -77.5,61.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -80.5,61.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -78.5,61.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: -78.5,56.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -76.5,61.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: -80.5,57.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: -75.5,61.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: -74.5,61.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -78.5,57.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: -77.5,58.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: -78.5,55.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + pos: -78.5,54.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: -78.5,53.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -78.5,52.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: -79.5,52.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: -80.5,52.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + pos: -81.5,52.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + pos: -82.5,52.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: -82.5,51.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: -82.5,48.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -82.5,47.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + pos: -81.5,47.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: -80.5,47.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -79.5,47.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: -78.5,47.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: -77.5,47.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: -77.5,44.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: -77.5,42.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: -75.5,42.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: -76.5,42.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: -74.5,42.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: -77.5,46.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + pos: -68.5,43.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -68.5,42.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-58.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,10.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,11.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,11.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,11.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,10.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,9.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,9.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,9.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,10.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,12.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: 44.5,-28.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + pos: 44.5,-27.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 43.5,-28.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-14.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,13.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,17.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,17.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,16.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,27.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,23.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,23.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,23.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,23.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,27.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,27.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,27.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,30.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: -8.5,20.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: -8.5,21.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: -10.5,20.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: -11.5,20.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: -53.5,19.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: -54.5,19.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: -55.5,19.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: -55.5,18.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: -55.5,16.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: -55.5,15.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: -54.5,15.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: -53.5,15.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: -52.5,12.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: -53.5,12.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: -54.5,12.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: -54.5,11.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: -54.5,9.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 59.5,-7.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: -54.5,8.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: -50.5,10.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: -51.5,12.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: -60.5,-33.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 14.5,-50.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-38.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-38.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-38.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-41.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-40.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 45.5,-45.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 46.5,-45.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: 48.5,-45.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: 50.5,-45.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: -57.5,47.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 50.5,-29.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 6.5,21.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: 46.5,-29.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: 48.5,-29.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 8799 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 8800 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 8801 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-49.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-49.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: -39.5,-40.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: -35.5,-40.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-55.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-57.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-56.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-57.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-54.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-55.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-52.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-53.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: -47.5,-51.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: -51.5,-54.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: -51.5,-53.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -51.5,-52.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: -52.5,-52.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: -56.5,-53.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + pos: -57.5,-52.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + pos: -57.5,-50.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: -57.5,-49.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: -56.5,-49.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: -55.5,-49.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: -54.5,-49.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: -53.5,-48.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: -47.5,-50.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: -50.5,-48.5 + parent: 2 + - uid: 8977 + components: + - type: Transform + pos: -50.5,-47.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: -50.5,-46.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: -50.5,-44.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: -50.5,-43.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: -50.5,-42.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: -50.5,-41.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: -50.5,-40.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: -49.5,-40.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: -48.5,-40.5 + parent: 2 + - uid: 8994 + components: + - type: Transform + pos: -47.5,-40.5 + parent: 2 + - uid: 8995 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 8997 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: -43.5,-38.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + pos: -43.5,-37.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + pos: -43.5,-35.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + pos: -42.5,-35.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 2 + - uid: 9037 + components: + - type: Transform + pos: -57.5,-42.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: -57.5,-37.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + pos: -57.5,-36.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + pos: -27.5,5.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + pos: -28.5,5.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: -28.5,9.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + pos: -27.5,9.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + pos: -27.5,10.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -27.5,13.5 + parent: 2 + - uid: 9083 + components: + - type: Transform + pos: -28.5,13.5 + parent: 2 + - uid: 9084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 9101 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -31.5,-10.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 9124 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + pos: -45.5,-25.5 + parent: 2 + - uid: 9169 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + pos: -57.5,-48.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + pos: -56.5,-44.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + pos: -60.5,-37.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: -60.5,-42.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - uid: 9201 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-49.5 + parent: 2 + - uid: 9209 + components: + - type: Transform + pos: 14.5,-53.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-60.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-61.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-63.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-70.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-70.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-62.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-62.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-62.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-62.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-62.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-62.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-62.5 + parent: 2 + - uid: 9263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-62.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-62.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-62.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-62.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-62.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-64.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-65.5 + parent: 2 + - uid: 9285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-66.5 + parent: 2 + - uid: 9286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-67.5 + parent: 2 + - uid: 9287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-68.5 + parent: 2 + - uid: 9288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-62.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-62.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-64.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-64.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-62.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-74.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-72.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-71.5 + parent: 2 + - uid: 9297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-76.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-74.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-60.5 + parent: 2 + - uid: 9301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-59.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-57.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-56.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-55.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 + parent: 2 + - uid: 9338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-52.5 + parent: 2 + - uid: 9339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-51.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-60.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-60.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-64.5 + parent: 2 + - uid: 9343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-64.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-64.5 + parent: 2 + - uid: 9345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-63.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-61.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-65.5 + parent: 2 + - uid: 9348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-70.5 + parent: 2 + - uid: 9349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-70.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-70.5 + parent: 2 + - uid: 9351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-70.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-70.5 + parent: 2 + - uid: 9353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-70.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-66.5 + parent: 2 + - uid: 9355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-66.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-66.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-66.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-67.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-70.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-69.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-74.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-75.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-76.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-77.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-76.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-76.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-75.5 + parent: 2 + - uid: 9383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-74.5 + parent: 2 + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-73.5 + parent: 2 + - uid: 9385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-72.5 + parent: 2 + - uid: 9386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-71.5 + parent: 2 + - uid: 9387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-74.5 + parent: 2 + - uid: 9388 + components: + - type: Transform + pos: -69.5,-5.5 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 + - uid: 9390 + components: + - type: Transform + pos: -70.5,-6.5 + parent: 2 + - uid: 9391 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 9393 + components: + - type: Transform + pos: -72.5,-6.5 + parent: 2 + - uid: 9394 + components: + - type: Transform + pos: -72.5,-4.5 + parent: 2 + - uid: 9395 + components: + - type: Transform + pos: -72.5,-5.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: -72.5,-3.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: -69.5,-2.5 + parent: 2 + - uid: 9405 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + pos: -30.5,15.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: -28.5,15.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-59.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - uid: 9463 + components: + - type: Transform + pos: -35.5,14.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-47.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-48.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + - uid: 9493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 2 + - uid: 9494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 9497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + pos: -16.5,-77.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: -14.5,-77.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + pos: -13.5,-77.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + pos: -12.5,-77.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + pos: -11.5,-71.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + pos: -8.5,-71.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 9510 + components: + - type: Transform + pos: -8.5,-72.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: -12.5,-71.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: -13.5,-72.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + pos: -9.5,-71.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: -13.5,-76.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + pos: -10.5,-71.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + pos: -8.5,-76.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: -8.5,-77.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + pos: -13.5,-71.5 + parent: 2 + - uid: 9524 + components: + - type: Transform + pos: -11.5,-77.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 9543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 9544 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 9545 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 9547 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: 50.5,-41.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-60.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-58.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-59.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-59.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-59.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-57.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 9766 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-50.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-52.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-51.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-52.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-57.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 9822 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + pos: -57.5,48.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + pos: -57.5,52.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + pos: -57.5,54.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + pos: -53.5,52.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: -57.5,56.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: -53.5,56.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + pos: -65.5,63.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + pos: -65.5,62.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: -66.5,62.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + pos: -66.5,61.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: -67.5,61.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + pos: -68.5,61.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: -70.5,61.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + pos: -71.5,61.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + pos: -52.5,57.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: -52.5,59.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-75.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-76.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,27.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + pos: -1.5,42.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 9918 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: -1.5,47.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 9931 + components: + - type: Transform + pos: 45.5,-47.5 + parent: 2 + - uid: 9932 + components: + - type: Transform + pos: 60.5,-7.5 + parent: 2 + - uid: 9944 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-75.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: -52.5,8.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-73.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-56.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + pos: 45.5,-46.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + pos: -51.5,11.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-39.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,16.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,16.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,16.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,17.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,19.5 + parent: 2 + - uid: 9985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,19.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + pos: -54.5,-44.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: -54.5,-45.5 + parent: 2 + - uid: 9991 + components: + - type: Transform + pos: -53.5,-45.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: -53.5,-47.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-64.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: -56.5,-48.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: -53.5,-46.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-51.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-51.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-53.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: -53.5,8.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-41.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-41.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-41.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-14.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: -57.5,-41.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: -57.5,-44.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: -60.5,-41.5 + parent: 2 + - uid: 10027 + components: + - type: Transform + pos: -60.5,-40.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: 61.5,-7.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-60.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-59.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-58.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-57.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-56.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-55.5 + parent: 2 + - uid: 10552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-54.5 + parent: 2 + - uid: 10553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-53.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-52.5 + parent: 2 + - uid: 10555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-51.5 + parent: 2 + - uid: 10556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-50.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-49.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-48.5 + parent: 2 + - uid: 10559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-48.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-48.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-48.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-48.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-49.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-51.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-52.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-53.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-52.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-52.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-55.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-56.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-57.5 + parent: 2 + - uid: 10572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-56.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-64.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-56.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-59.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-60.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-60.5 + parent: 2 + - uid: 10578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-60.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-60.5 + parent: 2 + - uid: 10580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-65.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-66.5 + parent: 2 + - uid: 10582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-67.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-68.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-68.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-68.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-68.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-68.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-68.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-68.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-68.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-68.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-68.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-68.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-68.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-68.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-68.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-68.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-68.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-67.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-66.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-65.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-64.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-64.5 + parent: 2 + - uid: 10605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-64.5 + parent: 2 + - uid: 10606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-64.5 + parent: 2 + - uid: 10607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-65.5 + parent: 2 + - uid: 10608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-67.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-64.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-64.5 + parent: 2 + - uid: 10611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-64.5 + parent: 2 + - uid: 10612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-64.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-65.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-67.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-64.5 + parent: 2 + - uid: 10616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-64.5 + parent: 2 + - uid: 10617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-64.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-65.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-67.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-59.5 + parent: 2 + - uid: 10810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-59.5 + parent: 2 + - uid: 10902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-59.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-59.5 + parent: 2 + - uid: 10940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-59.5 + parent: 2 + - uid: 10968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-59.5 + parent: 2 + - uid: 11012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,-59.5 + parent: 2 + - uid: 11014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-58.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,39.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,39.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,39.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,42.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,42.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,44.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,46.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,47.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,40.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,39.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,39.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,41.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,41.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,41.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,41.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,42.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,43.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,44.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,45.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,46.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,48.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,48.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,49.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,50.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,51.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,52.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,53.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,54.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,55.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,56.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,57.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,57.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,58.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,58.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,59.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,59.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,59.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,60.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,60.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,60.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,60.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,60.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,59.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,59.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,59.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,58.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,58.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,57.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,56.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,55.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,54.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,53.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,52.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,51.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,50.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,48.5 + parent: 2 + - uid: 13195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,44.5 + parent: 2 + - uid: 13196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,44.5 + parent: 2 + - uid: 13197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,44.5 + parent: 2 + - uid: 13198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,44.5 + parent: 2 + - uid: 13199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 2 + - uid: 13200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,44.5 + parent: 2 + - uid: 13205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - uid: 13206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,49.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,48.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,49.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,48.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,49.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,48.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,49.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,48.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,48.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,48.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,48.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,50.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,51.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,52.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,50.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,51.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,52.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,50.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,51.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,52.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,50.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,51.5 + parent: 2 + - uid: 13232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,52.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,54.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,55.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,56.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,54.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,55.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,56.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,57.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,54.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,55.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,56.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,57.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,54.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,55.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,56.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,57.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,59.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,59.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,59.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,58.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,58.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,58.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,58.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,47.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,53.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,53.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + pos: 1.5,47.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: -30.5,-73.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + pos: -33.5,-67.5 + parent: 2 + - uid: 13784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-50.5 + parent: 2 + - uid: 13799 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-62.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: 26.5,-79.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: 28.5,-76.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-53.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-49.5 + parent: 2 + - uid: 14755 + components: + - type: Transform + pos: -20.5,-66.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: -16.5,-65.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + pos: -17.5,-65.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: -17.5,-66.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: -18.5,-66.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + pos: -19.5,-66.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: -21.5,-66.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: -22.5,-66.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + pos: -23.5,-66.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: -25.5,-66.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: -26.5,-66.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: -27.5,-66.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: -27.5,-67.5 + parent: 2 + - uid: 15077 + components: + - type: Transform + pos: -28.5,-67.5 + parent: 2 + - uid: 15082 + components: + - type: Transform + pos: -28.5,-68.5 + parent: 2 + - uid: 15083 + components: + - type: Transform + pos: -28.5,-70.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + pos: -28.5,-72.5 + parent: 2 + - uid: 15090 + components: + - type: Transform + pos: -29.5,-72.5 + parent: 2 + - uid: 15095 + components: + - type: Transform + pos: -28.5,-74.5 + parent: 2 + - uid: 15096 + components: + - type: Transform + pos: -28.5,-75.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: -27.5,-75.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: -27.5,-76.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: -26.5,-76.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: -25.5,-76.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: -23.5,-76.5 + parent: 2 + - uid: 15106 + components: + - type: Transform + pos: -22.5,-76.5 + parent: 2 + - uid: 15107 + components: + - type: Transform + pos: -22.5,-77.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: -21.5,-77.5 + parent: 2 + - uid: 15112 + components: + - type: Transform + pos: -20.5,-77.5 + parent: 2 + - uid: 15119 + components: + - type: Transform + pos: -11.5,-69.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -10.5,-69.5 + parent: 2 + - uid: 15127 + components: + - type: Transform + pos: -9.5,-69.5 + parent: 2 + - uid: 15129 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + pos: -20.5,-73.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + pos: -20.5,-76.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: -20.5,-70.5 + parent: 2 + - uid: 15687 + components: + - type: Transform + pos: -20.5,-67.5 + parent: 2 + - uid: 16365 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - uid: 16380 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 19102 + components: + - type: Transform + pos: 7.5,-68.5 + parent: 2 + - uid: 29343 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 2 + - uid: 30081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-73.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 45 + components: + - type: Transform + pos: 41.5,-74.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-5.5 + parent: 2 + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-5.5 + parent: 2 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-5.5 + parent: 2 + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-4.5 + parent: 2 + - uid: 955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-2.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: -74.5,-8.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -74.5,-12.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,-1.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-1.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-1.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-1.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: -71.5,-12.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: -71.5,-8.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,9.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,11.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: -16.5,15.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,11.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: -15.5,15.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: -15.5,14.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: 0.5,20.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: 53.5,2.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: 54.5,2.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 50.5,6.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 53.5,6.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 55.5,6.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + pos: 54.5,6.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: 56.5,6.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: 56.5,7.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + pos: 55.5,9.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + pos: 56.5,9.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + pos: 55.5,10.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + pos: 54.5,10.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: 53.5,10.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: 51.5,10.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: 51.5,12.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,25.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: 44.5,13.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: 42.5,13.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: 41.5,16.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 40.5,19.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 41.5,23.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + pos: 41.5,24.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + pos: 43.5,24.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 19.5,29.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,25.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,21.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 8674 + components: + - type: Transform + pos: 3.5,26.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: 5.5,26.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: 5.5,25.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: -5.5,20.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: -7.5,20.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + pos: -7.5,17.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: -16.5,21.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: -15.5,21.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: -14.5,21.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: -13.5,21.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: -12.5,21.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: -17.5,21.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: -15.5,22.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: -15.5,23.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: -15.5,24.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: -15.5,25.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 + - uid: 8722 + components: + - type: Transform + pos: -20.5,22.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 8725 + components: + - type: Transform + pos: -18.5,25.5 + parent: 2 + - uid: 8726 + components: + - type: Transform + pos: -17.5,25.5 + parent: 2 + - uid: 8727 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 8728 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + pos: -23.5,21.5 + parent: 2 + - uid: 8732 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: -26.5,21.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + pos: -27.5,21.5 + parent: 2 + - uid: 8735 + components: + - type: Transform + pos: -28.5,21.5 + parent: 2 + - uid: 8736 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 8739 + components: + - type: Transform + pos: -34.5,22.5 + parent: 2 + - uid: 8740 + components: + - type: Transform + pos: -32.5,22.5 + parent: 2 + - uid: 8741 + components: + - type: Transform + pos: -32.5,21.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + pos: -33.5,22.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: -34.5,21.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -35.5,19.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 + - uid: 8748 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 8749 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 8750 + components: + - type: Transform + pos: -34.5,23.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: -34.5,24.5 + parent: 2 + - uid: 8752 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 8753 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 8755 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 + - uid: 8756 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - uid: 8757 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 8758 + components: + - type: Transform + pos: -37.5,28.5 + parent: 2 + - uid: 8759 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 8760 + components: + - type: Transform + pos: -39.5,28.5 + parent: 2 + - uid: 8761 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 8763 + components: + - type: Transform + pos: -40.5,28.5 + parent: 2 + - uid: 8764 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - uid: 8765 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 8766 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 8767 + components: + - type: Transform + pos: -43.5,25.5 + parent: 2 + - uid: 8768 + components: + - type: Transform + pos: -43.5,24.5 + parent: 2 + - uid: 8769 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - uid: 8770 + components: + - type: Transform + pos: -44.5,23.5 + parent: 2 + - uid: 8771 + components: + - type: Transform + pos: -43.5,22.5 + parent: 2 + - uid: 8772 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 8773 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 + - uid: 8774 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 8775 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 8776 + components: + - type: Transform + pos: -42.5,18.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 8780 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 8781 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - uid: 8783 + components: + - type: Transform + pos: -46.5,23.5 + parent: 2 + - uid: 8784 + components: + - type: Transform + pos: -47.5,23.5 + parent: 2 + - uid: 8785 + components: + - type: Transform + pos: -48.5,23.5 + parent: 2 + - uid: 8786 + components: + - type: Transform + pos: -48.5,22.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: -48.5,21.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: -47.5,19.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + pos: -48.5,18.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + pos: -49.5,22.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + pos: -50.5,22.5 + parent: 2 + - uid: 8793 + components: + - type: Transform + pos: -51.5,22.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: -52.5,22.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: -52.5,21.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: -52.5,20.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: -52.5,14.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + pos: -54.5,7.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: -55.5,7.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: -56.5,8.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: -57.5,8.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: -58.5,8.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: -59.5,8.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: -59.5,7.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: -60.5,7.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + pos: -59.5,9.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + pos: -60.5,9.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: -61.5,9.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: -62.5,9.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: -63.5,9.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: -63.5,8.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: -63.5,7.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: -62.5,7.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: -64.5,7.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + pos: -65.5,7.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + pos: -66.5,7.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: -67.5,7.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: -68.5,7.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + pos: -68.5,6.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: -69.5,7.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: -70.5,7.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: -71.5,7.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: -72.5,7.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: -72.5,6.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 + - uid: 8882 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + pos: 17.5,-49.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + pos: 18.5,-49.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + pos: 21.5,-49.5 + parent: 2 + - uid: 8887 + components: + - type: Transform + pos: 22.5,-49.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 8915 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 8942 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: 40.5,-41.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: 41.5,-41.5 + parent: 2 + - uid: 8961 + components: + - type: Transform + pos: 40.5,-42.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: 37.5,-42.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: 36.5,-42.5 + parent: 2 + - uid: 8976 + components: + - type: Transform + pos: 45.5,-41.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,-37.5 + parent: 2 + - uid: 9006 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 9008 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 9011 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 2 + - uid: 9012 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 9027 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 9028 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - uid: 9035 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 9061 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: -19.5,-59.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: -51.5,-48.5 + parent: 2 + - uid: 9176 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: -25.5,5.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + pos: -9.5,13.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: -15.5,13.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 9207 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 9208 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 9210 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,11.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 9227 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 9228 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 9229 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 9230 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 9281 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 9282 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: -39.5,-59.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 9303 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 9309 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 9312 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 9313 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 9314 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 9315 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: -44.5,-24.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 2 + - uid: 9318 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 9319 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 9322 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 + - uid: 9360 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 9365 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 9366 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 9374 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 9375 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 2 + - uid: 9376 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 + - uid: 9377 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 2 + - uid: 9378 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 9398 + components: + - type: Transform + pos: 30.5,-66.5 + parent: 2 + - uid: 9399 + components: + - type: Transform + pos: 30.5,-67.5 + parent: 2 + - uid: 9400 + components: + - type: Transform + pos: 30.5,-68.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: 30.5,-69.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,24.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,22.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,20.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: -19.5,-77.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + pos: -19.5,-78.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + pos: -12.5,-69.5 + parent: 2 + - uid: 9487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,23.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,18.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-61.5 + parent: 2 + - uid: 9495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + pos: 32.5,-60.5 + parent: 2 + - uid: 9531 + components: + - type: Transform + pos: 32.5,-64.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: 32.5,-65.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: 32.5,-67.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 + - uid: 9570 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 9571 + components: + - type: Transform + pos: 41.5,27.5 + parent: 2 + - uid: 9572 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: 42.5,27.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: 43.5,27.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: 43.5,28.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + pos: 40.5,31.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 40.5,33.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: -61.5,-31.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: -59.5,-28.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: -52.5,-27.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + pos: -53.5,-28.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: -50.5,-30.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: -50.5,-32.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + pos: -64.5,-30.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: -64.5,-28.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: -64.5,-29.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: -65.5,-28.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + pos: -67.5,-28.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + pos: -68.5,-28.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + pos: -67.5,-31.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + pos: -68.5,-31.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + pos: -68.5,-30.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + pos: -64.5,-27.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + pos: -62.5,-25.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + pos: -61.5,-25.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + pos: -60.5,-25.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + pos: -59.5,-25.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 2 + - uid: 9616 + components: + - type: Transform + pos: -57.5,-25.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + pos: -53.5,-25.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + pos: -52.5,-24.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 9630 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 9631 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 9632 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 9638 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 9639 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 9640 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 9641 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 9643 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 9652 + components: + - type: Transform + pos: -61.5,-14.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + pos: -62.5,-14.5 + parent: 2 + - uid: 9654 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 9656 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 9658 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 9659 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: -64.5,-8.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -65.5,-8.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: -66.5,-8.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: -67.5,-23.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + pos: -62.5,-24.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: -62.5,-23.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: -62.5,-16.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: -64.5,-23.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + pos: -68.5,-23.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + pos: -65.5,-23.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + pos: -65.5,-22.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: -65.5,-17.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + pos: -65.5,-18.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: -65.5,-19.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: -65.5,-20.5 + parent: 2 + - uid: 9687 + components: + - type: Transform + pos: -65.5,-16.5 + parent: 2 + - uid: 9688 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 9689 + components: + - type: Transform + pos: -65.5,-15.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + pos: -66.5,-15.5 + parent: 2 + - uid: 9691 + components: + - type: Transform + pos: -67.5,-15.5 + parent: 2 + - uid: 9692 + components: + - type: Transform + pos: -68.5,-16.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + pos: -68.5,-18.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + pos: -67.5,-18.5 + parent: 2 + - uid: 9695 + components: + - type: Transform + pos: -66.5,-19.5 + parent: 2 + - uid: 9696 + components: + - type: Transform + pos: -67.5,-19.5 + parent: 2 + - uid: 9697 + components: + - type: Transform + pos: -68.5,-24.5 + parent: 2 + - uid: 9698 + components: + - type: Transform + pos: -68.5,-22.5 + parent: 2 + - uid: 9699 + components: + - type: Transform + pos: -68.5,-21.5 + parent: 2 + - uid: 9700 + components: + - type: Transform + pos: -69.5,-21.5 + parent: 2 + - uid: 9701 + components: + - type: Transform + pos: -70.5,-21.5 + parent: 2 + - uid: 9702 + components: + - type: Transform + pos: -71.5,-21.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: -71.5,-22.5 + parent: 2 + - uid: 9704 + components: + - type: Transform + pos: -71.5,-23.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: -71.5,-24.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: -72.5,-21.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: -74.5,-21.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: -75.5,-21.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: -75.5,-22.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: -75.5,-23.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: -74.5,-23.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: -76.5,-21.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: -77.5,-21.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: -78.5,-21.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + pos: -78.5,-22.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + pos: -78.5,-23.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: -78.5,-25.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: -79.5,-23.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: -78.5,-24.5 + parent: 2 + - uid: 9720 + components: + - type: Transform + pos: -76.5,-25.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: -77.5,-25.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: -75.5,-25.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: -73.5,-25.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: -74.5,-25.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: -73.5,-26.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: -72.5,-26.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: -71.5,-26.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: -68.5,-27.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: -69.5,-27.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + pos: -69.5,-26.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + pos: -76.5,-20.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: -76.5,-18.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + pos: -76.5,-14.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + pos: -74.5,-14.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: -73.5,-18.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: -73.5,-19.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + pos: -69.5,-14.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + pos: -69.5,-13.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + pos: -68.5,-12.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + pos: -67.5,-12.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + pos: -67.5,-13.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: -66.5,-12.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + pos: -67.5,-8.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + pos: -68.5,-8.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: -69.5,-8.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + pos: -69.5,-7.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: -72.5,-1.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + pos: -72.5,-0.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + pos: -73.5,0.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + pos: -73.5,-0.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + pos: -73.5,1.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + pos: -73.5,3.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + pos: -73.5,4.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + pos: -70.5,-0.5 + parent: 2 + - uid: 9781 + components: + - type: Transform + pos: -69.5,-0.5 + parent: 2 + - uid: 9782 + components: + - type: Transform + pos: -68.5,-0.5 + parent: 2 + - uid: 9783 + components: + - type: Transform + pos: -68.5,0.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + pos: -68.5,1.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + pos: -68.5,2.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + pos: -68.5,3.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + pos: -68.5,4.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + pos: -69.5,4.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + pos: -71.5,4.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + pos: -72.5,4.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: -72.5,5.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + pos: -74.5,-0.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + pos: -75.5,-0.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + pos: -76.5,-0.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + pos: -77.5,-0.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + pos: -77.5,0.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + pos: -77.5,1.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + pos: -77.5,2.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: -77.5,4.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: -77.5,3.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + pos: -76.5,4.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + pos: -75.5,4.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + pos: -74.5,4.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: -49.5,15.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: -44.5,15.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: -31.5,16.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + pos: -31.5,17.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + pos: -31.5,18.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: -20.5,19.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,11.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + pos: -19.5,14.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: -19.5,16.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,16.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,16.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,16.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,16.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,16.5 + parent: 2 + - uid: 9866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,16.5 + parent: 2 + - uid: 9867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,15.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,15.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: -19.5,15.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: -15.5,1.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: -19.5,19.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: -23.5,23.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: -23.5,24.5 + parent: 2 + - uid: 9910 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: -21.5,25.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: -22.5,25.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: -31.5,19.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: -28.5,19.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + pos: -25.5,19.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: -27.5,19.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: -21.5,14.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + pos: -26.5,19.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 9933 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 9934 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 9935 + components: + - type: Transform + pos: -22.5,19.5 + parent: 2 + - uid: 9936 + components: + - type: Transform + pos: -23.5,19.5 + parent: 2 + - uid: 9937 + components: + - type: Transform + pos: -21.5,19.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: -21.5,13.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: -21.5,15.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: -32.5,19.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + pos: -73.5,46.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + pos: -73.5,45.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-37.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-44.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: -29.5,-59.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: -79.5,-50.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: -78.5,-59.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: -79.5,-58.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: -60.5,-59.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: -53.5,-36.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + pos: -87.5,-23.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + pos: 56.5,2.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + pos: 57.5,2.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: 57.5,6.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-8.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,1.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,0.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-0.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-1.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,6.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,6.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-28.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-31.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-32.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-32.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-32.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-32.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-30.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-32.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: -61.5,47.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: -62.5,47.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: -63.5,47.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: -62.5,48.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: -61.5,48.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: -77.5,52.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: -61.5,64.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: -56.5,62.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: -55.5,62.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: -57.5,62.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + pos: -57.5,61.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -57.5,60.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + pos: -58.5,61.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: -59.5,61.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: -61.5,61.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: -61.5,60.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: -61.5,62.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: -61.5,63.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: -63.5,62.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: -72.5,60.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + pos: -72.5,57.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: -72.5,56.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + pos: -72.5,55.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: -73.5,56.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: -74.5,56.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: -76.5,56.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -77.5,56.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -77.5,60.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: -77.5,57.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: -76.5,52.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + pos: -74.5,52.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + pos: -73.5,52.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + pos: -72.5,52.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + pos: -72.5,53.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: -77.5,49.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: -77.5,51.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: -77.5,50.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + pos: -76.5,47.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: -74.5,47.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: -73.5,47.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + pos: -72.5,47.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: -72.5,48.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: -72.5,49.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: -72.5,50.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: -72.5,51.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: -73.5,44.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: -68.5,46.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: -68.5,45.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: -68.5,44.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + pos: -70.5,47.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + pos: -68.5,47.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + pos: -69.5,47.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: -67.5,47.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + pos: -68.5,48.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,51.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -70.5,57.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-62.5 + parent: 2 + - uid: 11506 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 11707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,55.5 + parent: 2 + - uid: 11752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,53.5 + parent: 2 + - uid: 11753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,53.5 + parent: 2 + - uid: 11754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,54.5 + parent: 2 + - uid: 11757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,54.5 + parent: 2 + - uid: 11763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,55.5 + parent: 2 + - uid: 11766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,56.5 + parent: 2 + - uid: 11767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -81.5,56.5 + parent: 2 + - uid: 12480 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 2 + - uid: 12481 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - uid: 12482 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: -63.5,25.5 + parent: 2 + - uid: 12909 + components: + - type: Transform + pos: -76.5,12.5 + parent: 2 + - uid: 12910 + components: + - type: Transform + pos: -65.5,26.5 + parent: 2 + - uid: 12911 + components: + - type: Transform + pos: -63.5,28.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + pos: -77.5,9.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,54.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,55.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,55.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,55.5 + parent: 2 + - uid: 13262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,54.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,52.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,52.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,19.5 + parent: 2 + - uid: 13811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-76.5 + parent: 2 + - uid: 13812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-76.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-78.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-78.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-70.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: 41.5,-76.5 + parent: 2 + - uid: 14583 + components: + - type: Transform + pos: 57.5,23.5 + parent: 2 + - uid: 14678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,31.5 + parent: 2 + - uid: 14680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,28.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,35.5 + parent: 2 + - uid: 14698 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,39.5 + parent: 2 + - uid: 14699 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 14712 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 14733 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - uid: 14739 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 + - uid: 14780 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 14784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,25.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 14797 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 15118 + components: + - type: Transform + pos: -13.5,-69.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + pos: -13.5,39.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + pos: -27.5,-82.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - uid: 15688 + components: + - type: Transform + pos: -12.5,15.5 + parent: 2 + - uid: 15694 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 15697 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 15702 + components: + - type: Transform + pos: -65.5,-25.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-44.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 16268 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 2 + - uid: 16269 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 16299 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 16300 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 16301 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 16302 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 16408 + components: + - type: Transform + pos: 38.5,38.5 + parent: 2 + - uid: 17638 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 17673 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-44.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-44.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 17681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 + parent: 2 + - uid: 17765 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 2 + - uid: 18528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-3.5 + parent: 2 + - uid: 18529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,-2.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 18715 + components: + - type: Transform + pos: -72.5,-30.5 + parent: 2 + - uid: 18716 + components: + - type: Transform + pos: -72.5,-28.5 + parent: 2 + - uid: 18776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 + - uid: 19299 + components: + - type: Transform + pos: -70.5,-12.5 + parent: 2 + - uid: 19300 + components: + - type: Transform + pos: -70.5,-8.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-21.5 + parent: 2 + - uid: 20678 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 2 + - uid: 20679 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 2 + - uid: 21976 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 + - uid: 29135 + components: + - type: Transform + pos: -54.5,31.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 10168 + components: + - type: Transform + pos: -56.5,-43.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + pos: -60.5,61.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 16267 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 10174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-39.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,44.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,54.5 + parent: 2 +- proto: WallWeb + entities: + - uid: 13003 + components: + - type: Transform + pos: -74.5,-19.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: -72.5,-18.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: -70.5,-15.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + pos: -73.5,-15.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: -77.5,-18.5 + parent: 2 + - uid: 14606 + components: + - type: Transform + pos: -71.5,-18.5 + parent: 2 + - uid: 14607 + components: + - type: Transform + pos: -70.5,-18.5 + parent: 2 + - uid: 14609 + components: + - type: Transform + pos: -76.5,-19.5 + parent: 2 + - uid: 14611 + components: + - type: Transform + pos: -71.5,-14.5 + parent: 2 + - uid: 14612 + components: + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 18892 + components: + - type: Transform + pos: -75.5,-14.5 + parent: 2 +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 10685 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10686 + - 10687 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 10688 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10689 + - 10690 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeBlackFilled + entities: + - uid: 12147 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12148 + - 12149 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeFormal + entities: + - uid: 1792 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 98.0039 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1793 + - 1794 + - 1795 + - 1796 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 29978 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 +- proto: WardrobeGreenFilled + entities: + - uid: 16164 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 +- proto: WardrobeGreyFilled + entities: + - uid: 10177 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 +- proto: WardrobeMixed + entities: + - uid: 12171 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 50.919235 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12176 + - 12172 + - 12174 + - 12175 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobePrisonFilled + entities: + - uid: 10178 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 10183 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 +- proto: WardrobeRoboticsFilled + entities: + - uid: 10184 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 +- proto: WardrobeWhiteFilled + entities: + - uid: 12144 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 75.31249 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 12145 + - 12146 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 18099 + components: + - type: Transform + pos: -20.5,14.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 + parent: 2 + - type: WarpPoint + location: жилой отсек +- proto: WarpPointBombing + entities: + - uid: 29160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-61.5 + parent: 2 + - type: WarpPoint + location: цель взрыва ТЭГ +- proto: WaterCooler + entities: + - uid: 10186 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + pos: -67.5,44.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 2 + - uid: 29683 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 +- proto: WatermelonSeeds + entities: + - uid: 10188 + components: + - type: Transform + pos: -85.564285,-47.617386 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 10189 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 16169 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 16296 + components: + - type: Transform + pos: -50.5,-51.5 + parent: 2 + - uid: 16951 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 17642 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 17715 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 2 + - uid: 17867 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 18356 + components: + - type: Transform + pos: -11.5,6.5 + parent: 2 + - uid: 18430 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 18590 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 18617 + components: + - type: Transform + pos: -64.5,-9.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 10198 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 11137 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 10200 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 9516 + components: + - type: Transform + pos: 39.5,-41.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,1.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-53.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-50.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-38.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-36.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-0.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-30.5 + parent: 2 + - uid: 18176 + components: + - type: Transform + pos: -16.5,24.5 + parent: 2 +- proto: WeaponDisabler + entities: + - uid: 10221 + components: + - type: Transform + pos: -32.541714,-52.359016 + parent: 2 + - uid: 10222 + components: + - type: Transform + pos: -32.479214,-52.421516 + parent: 2 + - uid: 10223 + components: + - type: Transform + pos: -32.33859,-52.49964 + parent: 2 +- proto: WeaponDisablerSMG + entities: + - uid: 1773 + components: + - type: Transform + parent: 4043 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponLaserCarbine + entities: + - uid: 10224 + components: + - type: Transform + pos: -32.52609,-51.31214 + parent: 2 + - uid: 10225 + components: + - type: Transform + pos: -32.354214,-51.484016 + parent: 2 + - uid: 10226 + components: + - type: Transform + pos: -32.24484,-51.640266 + parent: 2 +- proto: WeaponLaserGun + entities: + - uid: 10227 + components: + - type: Transform + pos: -32.605976,-54.73278 + parent: 2 + - uid: 10228 + components: + - type: Transform + pos: -32.34035,-54.48278 + parent: 2 +- proto: WeaponMeleeNeedle + entities: + - uid: 2179 + components: + - type: Transform + parent: 2177 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponPistolFlintlock + entities: + - uid: 20124 + components: + - type: Transform + parent: 20123 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponRevolverDeckard + entities: + - uid: 13442 + components: + - type: Transform + parent: 13437 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponRifleLecter + entities: + - uid: 10039 + components: + - type: Transform + pos: -33.64325,-51.451157 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: -33.541294,-51.609768 + parent: 2 + - uid: 10047 + components: + - type: Transform + pos: -33.507313,-51.75705 + parent: 2 +- proto: WeaponShotgunDoubleBarreled + entities: + - uid: 10232 + components: + - type: Transform + pos: -13.457502,-1.5324659 + parent: 2 +- proto: WeaponShotgunKammerer + entities: + - uid: 10233 + components: + - type: Transform + pos: -33.61984,-52.421516 + parent: 2 + - uid: 10234 + components: + - type: Transform + pos: -33.572964,-52.49964 + parent: 2 + - uid: 10235 + components: + - type: Transform + pos: -33.46359,-52.609016 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 11922 + components: + - type: Transform + pos: -89.5,63.5 + parent: 2 + - uid: 14603 + components: + - type: Transform + pos: -4.5,42.5 + parent: 2 + - uid: 14610 + components: + - type: Transform + pos: -8.5,45.5 + parent: 2 + - uid: 14613 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: -0.5,45.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 15294 + components: + - type: Transform + pos: -4.5,56.5 + parent: 2 + - uid: 22967 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 +- proto: WebBed + entities: + - uid: 20204 + components: + - type: Transform + pos: -79.5,-15.5 + parent: 2 +- proto: WebDoor + entities: + - uid: 20183 + components: + - type: Transform + pos: -77.5,-16.5 + parent: 2 +- proto: WeedSpray + entities: + - uid: 10238 + components: + - type: Transform + pos: 19.657402,-7.318007 + parent: 2 +- proto: Welder + entities: + - uid: 10239 + components: + - type: Transform + pos: 16.530144,-13.494179 + parent: 2 + - uid: 14619 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WelderIndustrial + entities: + - uid: 10240 + components: + - type: Transform + pos: 20.72856,11.482963 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: 21.66606,11.514213 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: 9.512369,-47.31148 + parent: 2 + - uid: 15784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.568358,-66.86347 + parent: 2 + - uid: 15830 + components: + - type: Transform + pos: 17.51243,17.713234 + parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 20811 + components: + - type: Transform + pos: 0.54065263,-40.411163 + parent: 2 +- proto: WelderMini + entities: + - uid: 742 + components: + - type: Transform + parent: 733 + - type: Physics + canCollide: False + - uid: 18061 + components: + - type: Transform + parent: 18060 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeldingFuelTankFull + entities: + - uid: 8657 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + pos: 15.5,-53.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 10981 + components: + - type: Transform + pos: -67.5,62.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: 1.5,43.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + pos: -11.5,-65.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 17545 + components: + - type: Transform + pos: 34.5,-69.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 17714 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 18181 + components: + - type: Transform + pos: -22.5,21.5 + parent: 2 + - uid: 18429 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 19946 + components: + - type: Transform + pos: -67.5,-24.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 2 + - uid: 21131 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 10248 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 +- proto: WhiteCane + entities: + - uid: 12196 + components: + - type: Transform + pos: -29.521376,-19.446457 + parent: 2 +- proto: Windoor + entities: + - uid: 10251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-21.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 10966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.5,43.5 + parent: 2 + - uid: 10967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,43.5 + parent: 2 + - uid: 11171 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-73.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-72.5 + parent: 2 + - uid: 18277 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 18278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,25.5 + parent: 2 +- proto: WindoorBarLocked + entities: + - uid: 9457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,23.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 10254 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-11.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 10259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 +- proto: WindoorKitchenLocked + entities: + - uid: 10263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 12260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 12261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-21.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 10264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-40.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-51.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 10267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-45.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-44.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-60.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-60.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-60.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-56.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 +- proto: WindoorSecureBrigLocked + entities: + - uid: 10269 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-31.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-31.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-31.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-31.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-31.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-39.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-39.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-40.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-40.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -68.5,-36.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-33.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 10281 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-24.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: 47.5,-41.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: 46.5,-41.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 10285 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 10287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,53.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,53.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,53.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,53.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 10291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-46.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 10293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 2 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 6195 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-35.5 + parent: 2 + - uid: 30883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-37.5 + parent: 2 +- proto: WindoorSecureKitchenLocked + entities: + - uid: 10297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 10299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,12.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,2.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 2 + - uid: 10304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,5.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 10306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-4.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-6.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,5.5 + parent: 2 + - uid: 17835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 + - uid: 17837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,25.5 + parent: 2 + - uid: 17838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,25.5 + parent: 2 + - uid: 17839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - uid: 17841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,25.5 + parent: 2 + - uid: 17842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 2 + - uid: 17843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - uid: 17853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - uid: 17854 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 10314 + components: + - type: Transform + pos: -37.5,-40.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-35.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-49.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 10317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-5.5 + parent: 2 +- proto: Window + entities: + - uid: 10322 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 10323 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 10324 + components: + - type: Transform + pos: -18.5,6.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: -45.5,19.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + pos: -26.5,3.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + pos: -26.5,4.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 10364 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 10365 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 10366 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 2 + - uid: 10367 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 10368 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 10369 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 21130 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 22236 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 24879 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 10760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,45.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,45.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,45.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,45.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,45.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,45.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,45.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + pos: -62.5,45.5 + parent: 2 + - uid: 10768 + components: + - type: Transform + pos: -61.5,45.5 + parent: 2 + - uid: 10769 + components: + - type: Transform + pos: -60.5,45.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + pos: -59.5,45.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + pos: -58.5,45.5 + parent: 2 + - uid: 17184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,22.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 10372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - uid: 10373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 2 + - uid: 10375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 2 + - uid: 10376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - uid: 10377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - uid: 10378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,1.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,8.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,1.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,1.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 10413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 2 + - uid: 10414 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-21.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-29.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-29.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-29.5 + parent: 2 + - uid: 10427 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 2 + - uid: 10428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 2 + - uid: 10429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 2 + - uid: 10430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,6.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 10435 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 2 + - uid: 10436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-60.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-59.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-58.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-57.5 + parent: 2 + - uid: 10440 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-56.5 + parent: 2 + - uid: 10442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-55.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-54.5 + parent: 2 + - uid: 10444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-53.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-52.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-51.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-49.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 10451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-48.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-60.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-60.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-60.5 + parent: 2 + - uid: 10465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-60.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 10468 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-37.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-37.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-37.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 10473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-52.5 + parent: 2 + - uid: 10474 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-51.5 + parent: 2 + - uid: 10476 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 10477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-51.5 + parent: 2 + - uid: 10478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-52.5 + parent: 2 + - uid: 10479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-51.5 + parent: 2 + - uid: 10480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-51.5 + parent: 2 + - uid: 10481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 10482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 10483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 2 + - uid: 10484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 10485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-5.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 10488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,3.5 + parent: 2 + - uid: 10489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,3.5 + parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - uid: 10491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-5.5 + parent: 2 + - uid: 10492 + components: + - type: Transform + pos: -28.5,12.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-40.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -83.5,-45.5 + parent: 2 + - uid: 10495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 10498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - uid: 10501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,7.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 2 + - uid: 10503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 10504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,13.5 + parent: 2 + - uid: 10505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-22.5 + parent: 2 + - uid: 10506 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 10508 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 10509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-24.5 + parent: 2 + - uid: 10510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-37.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: 43.5,-37.5 + parent: 2 + - uid: 10512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-37.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-37.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: 45.5,-37.5 + parent: 2 + - uid: 10515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-37.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-37.5 + parent: 2 + - uid: 10517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-37.5 + parent: 2 + - uid: 10518 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - uid: 10965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.5,43.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 + - uid: 11162 + components: + - type: Transform + pos: -16.5,13.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,14.5 + parent: 2 + - uid: 11249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,15.5 + parent: 2 + - uid: 11250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,15.5 + parent: 2 + - uid: 11251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,15.5 + parent: 2 + - uid: 11252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,15.5 + parent: 2 + - uid: 11253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,21.5 + parent: 2 + - uid: 11254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,21.5 + parent: 2 + - uid: 11255 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 11256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 2 + - uid: 11257 + components: + - type: Transform + pos: -30.5,22.5 + parent: 2 + - uid: 11258 + components: + - type: Transform + pos: -31.5,22.5 + parent: 2 + - uid: 12224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 12225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-18.5 + parent: 2 + - uid: 12226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-18.5 + parent: 2 + - uid: 12227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-18.5 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 2 + - uid: 12229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-19.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-20.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: -49.5,-21.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-21.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-20.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-19.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,37.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,37.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,37.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,38.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-74.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-73.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-72.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-71.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-70.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-69.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: -16.5,-68.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-71.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-67.5 + parent: 2 + - uid: 17712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-48.5 + parent: 2 + - uid: 17713 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 17716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-46.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-44.5 + parent: 2 + - uid: 17836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,24.5 + parent: 2 + - uid: 17844 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 17845 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 17846 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 17848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,20.5 + parent: 2 + - uid: 17849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,20.5 + parent: 2 + - uid: 17850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 2 + - uid: 17851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,33.5 + parent: 2 + - uid: 17852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 18203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,18.5 + parent: 2 + - uid: 18204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,18.5 + parent: 2 + - uid: 18205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 2 + - uid: 18206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,20.5 + parent: 2 + - uid: 18222 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 18226 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 18227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 + - uid: 18228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 + - uid: 18229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 18230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,23.5 + parent: 2 + - uid: 18231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,24.5 + parent: 2 + - uid: 18232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,25.5 + parent: 2 + - uid: 18233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,25.5 + parent: 2 + - uid: 18234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,25.5 + parent: 2 + - uid: 18235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,25.5 + parent: 2 + - uid: 18236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,25.5 + parent: 2 + - uid: 18237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,25.5 + parent: 2 + - uid: 18238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,25.5 + parent: 2 + - uid: 18239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,25.5 + parent: 2 + - uid: 18240 + components: + - type: Transform + pos: -38.5,24.5 + parent: 2 + - uid: 18241 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 18242 + components: + - type: Transform + pos: -39.5,25.5 + parent: 2 + - uid: 18243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,24.5 + parent: 2 + - uid: 18244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,23.5 + parent: 2 + - uid: 18245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,22.5 + parent: 2 + - uid: 18246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,21.5 + parent: 2 + - uid: 18247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,20.5 + parent: 2 + - uid: 18248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,20.5 + parent: 2 + - uid: 18249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 18250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,20.5 + parent: 2 + - uid: 18251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,21.5 + parent: 2 + - uid: 18252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,22.5 + parent: 2 + - uid: 18253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,23.5 + parent: 2 + - uid: 18254 + components: + - type: Transform + pos: -38.5,23.5 + parent: 2 + - uid: 18255 + components: + - type: Transform + pos: -38.5,22.5 + parent: 2 + - uid: 18256 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 18257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,24.5 + parent: 2 + - uid: 18258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,20.5 + parent: 2 + - uid: 18259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,20.5 + parent: 2 + - uid: 18260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,20.5 + parent: 2 + - uid: 18261 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 18262 + components: + - type: Transform + pos: -42.5,20.5 + parent: 2 + - uid: 18263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,20.5 + parent: 2 + - uid: 18264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,20.5 + parent: 2 + - uid: 18265 + components: + - type: Transform + pos: -41.5,25.5 + parent: 2 + - uid: 18266 + components: + - type: Transform + pos: -42.5,25.5 + parent: 2 + - uid: 18267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,25.5 + parent: 2 + - uid: 18268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,25.5 + parent: 2 + - uid: 18447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,20.5 + parent: 2 + - uid: 18448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,20.5 + parent: 2 + - uid: 18449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,25.5 + parent: 2 + - uid: 18451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,25.5 + parent: 2 + - uid: 20680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 + parent: 2 + - uid: 26695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 2 +- proto: Wirecutter + entities: + - uid: 2156 + components: + - type: Transform + parent: 2153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10519 + components: + - type: Transform + pos: -45.530895,-45.485256 + parent: 2 + - uid: 10520 + components: + - type: Transform + pos: -25.435595,-35.53795 + parent: 2 + - uid: 10521 + components: + - type: Transform + pos: -58.499573,-36.663097 + parent: 2 + - uid: 10522 + components: + - type: Transform + pos: -53.515255,-37.556194 + parent: 2 + - uid: 12460 + components: + - type: Transform + pos: -64.47911,-17.484655 + parent: 2 +- proto: WoodDoor + entities: + - uid: 10756 + components: + - type: Transform + pos: -71.5,47.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + pos: -64.5,62.5 + parent: 2 + - uid: 10999 + components: + - type: Transform + pos: -62.5,62.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 +- proto: Wrench + entities: + - uid: 2157 + components: + - type: Transform + parent: 2153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 2187 + components: + - type: Transform + parent: 2184 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 3286 + components: + - type: Transform + parent: 11013 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10523 + components: + - type: Transform + pos: -3.536781,-21.484562 + parent: 2 + - uid: 10525 + components: + - type: Transform + pos: 3.5094304,-25.449728 + parent: 2 + - uid: 10526 + components: + - type: Transform + pos: -41.58819,1.5363841 + parent: 2 + - uid: 10527 + components: + - type: Transform + pos: -46.51595,9.572054 + parent: 2 + - uid: 10528 + components: + - type: Transform + pos: -11.478779,-0.4048066 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: 2.496818,-38.556282 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: 24.510735,-35.498478 + parent: 2 + - uid: 10531 + components: + - type: Transform + pos: 6.508458,-42.463966 + parent: 2 + - uid: 10532 + components: + - type: Transform + pos: 18.542793,-48.456284 + parent: 2 + - uid: 10534 + components: + - type: Transform + pos: -39.510086,-45.423393 + parent: 2 + - uid: 10535 + components: + - type: Transform + pos: -32.5248,-15.417202 + parent: 2 + - uid: 10536 + components: + - type: Transform + pos: -53.530952,-39.21002 + parent: 2 + - uid: 10537 + components: + - type: Transform + pos: -55.51387,-41.34333 + parent: 2 + - uid: 10538 + components: + - type: Transform + pos: 28.510965,6.6025753 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: 52.52638,-4.476216 + parent: 2 + - uid: 10848 + components: + - type: Transform + pos: -2.5091224,-56.65628 + parent: 2 + - uid: 10946 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: -9.327724,47.488583 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 45.529823,-30.417645 + parent: 2 + - uid: 14623 + components: + - type: Transform + parent: 14614 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17866 + components: + - type: Transform + pos: 29.416782,33.576515 + parent: 2 + - uid: 19951 + components: + - type: Transform + pos: -65.51353,-29.551239 + parent: 2 + - uid: 27385 + components: + - type: Transform + pos: 33.484898,12.591927 + parent: 2 +- proto: Zipties + entities: + - uid: 10540 + components: + - type: Transform + pos: -19.554895,-38.36662 + parent: 2 + - uid: 10541 + components: + - type: Transform + pos: -53.503128,-33.339455 + parent: 2 + - uid: 18068 + components: + - type: Transform + pos: 1.5202117,22.570433 + parent: 2 +... diff --git a/Resources/Maps/ADTMaps/ADTStations/adt_meta.yml b/Resources/Maps/ADTMaps/ADTStations/adt_meta.yml index e6b4f359812..25e777e5930 100644 --- a/Resources/Maps/ADTMaps/ADTStations/adt_meta.yml +++ b/Resources/Maps/ADTMaps/ADTStations/adt_meta.yml @@ -11189,6 +11189,75 @@ entities: - type: GridAtmosphere version: 2 data: + tiles: + 0,0: + 0: 17 + 1: 4352 + 0,-1: + 1: 4352 + -1,0: + 0: 2047 + 1: 57344 + -3,-1: + 1: 34816 + -2,0: + 0: 3839 + 1: 12288 + -3,0: + 1: 34816 + -2,-1: + 0: 57344 + 1: 768 + -1,-1: + 0: 28672 + 1: 3584 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 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 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -11325,6 +11394,13 @@ entities: - type: Transform pos: -44.560997,-20.278118 parent: 2 +- proto: ADTComputerSecShuttle + entities: + - uid: 1518 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 - proto: ADTEftpos entities: - uid: 25 @@ -11367,6 +11443,39 @@ entities: - type: Transform pos: 15.223545,-34.088955 parent: 2 +- proto: ADTFunCasinoChip100 + entities: + - uid: 25896 + components: + - type: Transform + pos: 29.420895,-11.932781 + parent: 2 +- proto: ADTFunCasinoChip10stack + entities: + - uid: 1542 + components: + - type: Transform + pos: 28.43652,-12.667156 + parent: 2 +- proto: ADTFunCasinoChipBase + entities: + - uid: 1520 + components: + - type: Transform + pos: 29.49902,-11.557781 + parent: 2 +- proto: ADTFunPokerBox + entities: + - uid: 1519 + components: + - type: Transform + pos: -23.503225,56.89132 + parent: 2 + - uid: 11699 + components: + - type: Transform + pos: 29.295895,-12.698406 + parent: 2 - proto: ADTHeadBorgSecurity entities: - uid: 33 @@ -18579,6 +18688,26 @@ entities: - type: Transform pos: -7.5,52.5 parent: 2 + - uid: 21976 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 25895 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 32816 + components: + - type: Transform + pos: 0.5,1.5 + parent: 32708 + - uid: 32817 + components: + - type: Transform + pos: 0.5,0.5 + parent: 32708 - proto: AtmosFixBlockerMarker entities: - uid: 1044 @@ -19728,6 +19857,20 @@ entities: - type: Transform pos: 41.066017,-22.514046 parent: 2 +- proto: Biofabricator + entities: + - uid: 26106 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 +- proto: Biogenerator + entities: + - uid: 26304 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 - proto: BlastDoor entities: - uid: 1253 @@ -20935,25 +21078,6 @@ entities: - 1509 - 1510 - 1511 - - uid: 1515 - components: - - type: MetaData - desc: Коробка, полная инструментов для отслеживания отбросов. - name: коробка упакованных имплантов трекера - - type: Transform - pos: 3.5,34.5 - parent: 2 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1517 - - 1518 - - 1519 - - 1520 - - 1516 - uid: 1521 components: - type: MetaData @@ -21031,10 +21155,10 @@ entities: parent: 2 - proto: BoxFlashbang entities: - - uid: 1542 + - uid: 1517 components: - type: Transform - pos: 3.439269,35.437737 + pos: 3.3681345,35.425434 parent: 2 - proto: BoxFolderBase entities: @@ -21504,10 +21628,10 @@ entities: parent: 2 - proto: BoxHandcuff entities: - - uid: 1631 + - uid: 1516 components: - type: Transform - pos: 3.501769,35.498672 + pos: 3.4699974,35.519184 parent: 2 - proto: BoxHugHealing entities: @@ -21731,6 +21855,13 @@ entities: - type: Transform pos: -28.5,-64.5 parent: 2 +- proto: BoxSechud + entities: + - uid: 1515 + components: + - type: Transform + pos: 3.4699974,34.47231 + parent: 2 - proto: BoxSterileMask entities: - uid: 1671 @@ -73497,11 +73628,6 @@ entities: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 11699 - components: - - type: Transform - pos: -6.5,51.5 - parent: 2 - uid: 32756 components: - type: Transform @@ -142164,12 +142290,6 @@ entities: parent: 2 - proto: Implanter entities: - - uid: 1516 - components: - - type: Transform - parent: 1515 - - type: Physics - canCollide: False - uid: 21683 components: - type: Transform @@ -144184,11 +144304,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 21976 - components: - - type: Transform - pos: -8.5,51.5 - parent: 2 - proto: LockerWeldingSuppliesFilled entities: - uid: 21977 @@ -169676,16 +169791,6 @@ entities: parent: 2 - proto: SpaceCash100 entities: - - uid: 25895 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 2 - - uid: 25896 - components: - - type: Transform - pos: 29.5,-11.5 - parent: 2 - uid: 25897 components: - type: Transform @@ -170662,6 +170767,13 @@ entities: - type: Transform pos: 30.5,40.5 parent: 2 +- proto: SpawnPointPilot + entities: + - uid: 1631 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 - proto: SpawnPointPsychologist entities: - uid: 26068 @@ -170880,11 +170992,6 @@ entities: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 26106 - components: - - type: Transform - pos: -7.5,49.5 - parent: 2 - proto: SpawnPointTechnicalAssistant entities: - uid: 26107 @@ -172138,11 +172245,6 @@ entities: - type: Transform pos: 22.5,-46.5 parent: 2 - - uid: 26304 - components: - - type: Transform - pos: -8.5,50.5 - parent: 2 - proto: SuitStorageSec entities: - uid: 11396 @@ -180435,32 +180537,6 @@ entities: - type: Transform pos: 26.5,-78.5 parent: 2 -- proto: TrackingImplanter - entities: - - uid: 1517 - components: - - type: Transform - parent: 1515 - - type: Physics - canCollide: False - - uid: 1518 - components: - - type: Transform - parent: 1515 - - type: Physics - canCollide: False - - uid: 1519 - components: - - type: Transform - parent: 1515 - - type: Physics - canCollide: False - - uid: 1520 - components: - - type: Transform - parent: 1515 - - type: Physics - canCollide: False - proto: TrainingBomb entities: - uid: 27466 diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_kilo.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_kilo.yml new file mode 100644 index 00000000000..f5935551334 --- /dev/null +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_kilo.yml @@ -0,0 +1,77 @@ +- type: gameMap + id: ADT_kilo + mapName: 'kilostation' + mapPath: /Maps/ADTMaps/ADTStations/adt_kilostation.yml + minPlayers: 10 + maxPlayers: 80 + stations: + ADT_kilo: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Kilostation {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'RT14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency.yml + - type: StationJobs + availableJobs: + # command + Captain: [ 1, 1 ] + ADTBlueShieldOfficer: [ 1, 1 ] #ADT-Roles + #service + Bartender: [ 2, 2 ] + Botanist: [ 2, 2] + Chef: [ 1, 1 ] + Janitor: [ 2, 2 ] + HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 3, 3 ] + #engineering + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 4, 4 ] + AtmosphericTechnician: [ 2, 2 ] + TechnicalAssistant: [ 2, 2 ] + ADTSeniorEngineer: [ 1, 1 ] # ADT-roles + #medical + ChiefMedicalOfficer: [ 1, 1 ] + MedicalDoctor: [ 3, 4 ] + Chemist: [ 2, 2 ] + MedicalIntern: [ 2, 2 ] + Paramedic: [ 1, 2 ] + ADTPathologist: [ 1, 1 ] #ADT-Roles + ADTSeniorPhysician: [ 1, 1 ] #ADT-Roles + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 3 ] + ResearchAssistant: [ 1, 1 ] + ADTRoboticist: [ 1, 2 ] #ADT-Roles + ADTSeniorResearcher: [ 1, 1 ] # ADT-roles + #security + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + Warden: [ 1, 1 ] + ADTSeniorOfficer: [ 1, 1 ] # ADT-Roles + #Lawyer: [ 1, 1 ] # Corvax-IAA + SecurityCadet: [ 1, 1 ] + Detective: [ 1, 1 ] + Brigmedic: [ 1, 1 ] #ADT-Roles + #supply + CargoTechnician: [ 3, 3 ] + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Boxer: [ 2, 2 ] + Reporter: [ 2, 2 ] + # juridical + Lawyer: [ 1, 1 ] + IAA: [ 1, 1 ] + #silicon + StationAi: [ 1, 1 ] + Borg: [ 1, 2 ] diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index eb6ef545e22..e2ff20a1ecf 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -32,7 +32,7 @@ - ADT_Packed - ADT_Train - ADT_Delta - - ADT_Oasis + # - ADT_Oasis удалён чтоб жизнь малиной не казалась - ADT_Gemini - ADT_Aspid - ADT_Moose From bd2f3074fd1b52dc6e945e6aea1b56e13ac842e8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 20:19:00 +0300 Subject: [PATCH 03/34] Auto CL update (#619) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index 3ea06998dca..328c6fce9fc 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3496,3 +3496,26 @@ Entries: - {message: 'Аллея временно выведена из пулла карт, до переработки.', type: Tweak} time: '2024-10-07T07:32:03Z' id: 430 + - author: Котя + changes: + - {message: Удалены фелиниды из списка рас., type: Remove} + time: '2024-10-07T16:30:41Z' + id: 431 + - author: Mirokko + changes: + - {message: Добавлена кнопка скрытия и показа интерфейса в лобби. Насладимся + красивыми артами!, type: Add} + time: '2024-10-08T01:21:03Z' + id: 432 + - author: Mirokko + changes: + - {message: Исправлен баг с телепортом сумеречников в рипли и в утилизационной + трубе, type: Fix} + time: '2024-10-08T11:25:38Z' + id: 433 + - author: Ratyyy + changes: + - {message: Инженеры НТ вновь вернули чертёж станции kilostation!, type: Add} + - {message: Инженеры НТ исправили часть своих косяков на станциях!, type: Fix} + time: '2024-10-08T15:58:59Z' + id: 434 From b30eccfc23cc68a7a6ad978378b2cb63e5f04284 Mon Sep 17 00:00:00 2001 From: Hyrmik <72623996+Hyrmik@users.noreply.github.com> Date: Wed, 9 Oct 2024 23:25:34 +0300 Subject: [PATCH 04/34] =?UTF-8?q?=D0=91=D0=B0=D0=B3=D1=84=D0=B8=D0=BA?= =?UTF-8?q?=D1=81=D1=8B=20=D0=BB=D0=BE=D0=B4=D0=B0=D1=83=D1=82=D0=BE=D0=B2?= =?UTF-8?q?,=20=D1=85=D0=B0=D0=BB=D0=B0=D1=82=D0=B0=20=D0=BF=D0=B0=D1=82?= =?UTF-8?q?=D0=B0=D0=BB=D0=BE=D0=B3=D0=BE=D0=B0=D0=BD=D0=B0=D1=82=D0=BE?= =?UTF-8?q?=D0=BC=D0=B0=20=D0=B8=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D1=8D=D0=BA=D1=80=D0=B0=D0=BD=D0=B0=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=BA=D0=B8,=20=D0=BB?= =?UTF-8?q?=D0=BE=D0=BA=D0=B0=D0=BB=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D0=B8=20?= =?UTF-8?q?=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B5=D0=B9=20=D0=B1=D0=BE=D1=80?= =?UTF-8?q?=D0=B3=D0=B0=20(#621)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Изменения экрана загрузки. Изменения лодаутов: Противогаз атмосианина теперь спавнится в левом кармане Халат робототехника для профессии робототехник доступен в лодаутах Изменение локализации модулей борга ## Почему / Баланс **Ссылка на публикацию в Discord** - [Баги](https://discord.com/channels/901772674865455115/1289263022145273866) - [Баги](https://discord.com/channels/901772674865455115/1291494422445293721) - [Баги](https://discord.com/channels/901772674865455115/1291494685063249941) - [Баги](https://discord.com/channels/901772674865455115/1290761193891565649) ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: - tweak: НаноТрейзен изменила экран загрузки. Слава НТ! - fix: НаноТрейзен исправила критическую ошибку инженерного отдела. Атмосферным техникам стали выдавать маски не только по бумагам, но и в реальности тоже. Слава НТ! - fix: НаноТрейзен дала возможность брать робототехникам на станцию халат роботехника. Слава НТ! - fix: НаноТрейзен изменила способ производства халатов паталогоанатома. Была добавлена возможность расстёгивать их. Слава НТ! - fix: НаноТрейзен переименовала некоторые модули борга. Слава НТ! --- .../Specific/Robotics/borg_modules.ftl | 6 +- .../Entities/Clothing/OuterClothing/coats.yml | 5 ++ .../Engineering/atmospheric_technician.yml | 5 +- .../ADT/Loadouts/loadout_groups.yml | 1 + .../Prototypes/ADT/Loadouts/role_loadouts.yml | 2 +- .../labcoat_pathologist.rsi/icon-open.png | Bin 492 -> 473 bytes .../Coats/labcoat_pathologist.rsi/meta.json | 56 +++++++++++------- .../open-equipped-OUTERCLOTHING.png | Bin 0 -> 1108 bytes .../open-inhand-left.png | Bin 0 -> 684 bytes .../open-inhand-right.png | Bin 0 -> 683 bytes Resources/Textures/ADT/Logo/adt_logo.png | Bin 0 -> 2118458 bytes Resources/manifest.yml | 2 +- 12 files changed, 47 insertions(+), 30 deletions(-) create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/open-equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/open-inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/open-inhand-right.png create mode 100644 Resources/Textures/ADT/Logo/adt_logo.png diff --git a/Resources/Locale/ru-RU/ADT/Objects/Specific/Robotics/borg_modules.ftl b/Resources/Locale/ru-RU/ADT/Objects/Specific/Robotics/borg_modules.ftl index 7fad7cbf8b2..b4d93fa2b7c 100644 --- a/Resources/Locale/ru-RU/ADT/Objects/Specific/Robotics/borg_modules.ftl +++ b/Resources/Locale/ru-RU/ADT/Objects/Specific/Robotics/borg_modules.ftl @@ -1,8 +1,8 @@ -ent-ADTBorgModuleDetention = модуль задержания +ent-ADTBorgModuleDetention = модуль задержания киборга .desc = { ent-BaseBorgModule.desc } -ent-ADTBorgModuleHarm = модуль вреда +ent-ADTBorgModuleHarm = модуль вреда киборга .desc = { ent-BaseBorgModule.desc } -ent-ADTBorgModuleDisabler = модуль дизаблера +ent-ADTBorgModuleDisabler = модуль дизаблера киборга .desc = { ent-BaseBorgModule.desc } ent-ADTBorgModuleRPD = РРТ-модуль киборга .desc = { ent-BaseBorgModule.desc } diff --git a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml index 139c13d0f02..c8233dc3ced 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml @@ -73,6 +73,11 @@ - type: Clothing sprite: ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi +- type: entity + parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLab] + id: ADTClothingOuterCoatLabPathologistOpened + name: pathologist's lab coat + - type: entity parent: ClothingOuterStorageBase id: ADTClothingOuterCoatBrigmedicWB diff --git a/Resources/Prototypes/ADT/Loadouts/Jobs/Engineering/atmospheric_technician.yml b/Resources/Prototypes/ADT/Loadouts/Jobs/Engineering/atmospheric_technician.yml index bb5a0859c45..82a977e522d 100644 --- a/Resources/Prototypes/ADT/Loadouts/Jobs/Engineering/atmospheric_technician.yml +++ b/Resources/Prototypes/ADT/Loadouts/Jobs/Engineering/atmospheric_technician.yml @@ -28,9 +28,8 @@ # Mask - type: loadout id: ADTMaskGasAtmosian - storage: - back: - - ClothingMaskGasAtmosian + equipment: + pocket1: ClothingMaskGasAtmosian effects: - !type:GroupLoadoutEffect proto: ADTMasterAtmos diff --git a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml index 3b51d361a24..be4497ecb7f 100644 --- a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml @@ -85,6 +85,7 @@ - ScienceLabCoat - ScienceWintercoat - RoboticistWintercoat + - RoboticistLabCoat - type: loadoutGroup id: RobohandsGloves diff --git a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml index 20951f6232f..65633c6f33f 100644 --- a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml @@ -12,7 +12,7 @@ - GroupSpeciesBreathTool - type: roleLoadout - id: JobADTPathologist + id: JobADTPathologist groups: - Inventory # Corvax-Loadouts - GroupTankHarness diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon-open.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon-open.png index 4800a822f285dede784b76a36c05f20043c76635..e45eb1c36069d1779113d60ae6c910f1af2399ab 100644 GIT binary patch delta 448 zcmV;x0YCoi1K9(RBYyw^b5ch_0Itp)=>Px$lSxEDR9J=Wl)p>EKorNn5w}(-C2=VQ zYky55rLANZ9PCnXDVRlF9Yk<&a@?PpRk zbQ@IwKscM`GBFzzaD8)6GpQJoi8xwq0su%R;zKd+`Xs-C^)(fi?ZDjBs8%TjJ_l0; z+~fw)VcE{e7=O!lU=SUxHu+`HkH89Om6G)M)bUDc_WC1}59*fffaUf~1^}R#UzPyi zVE;JqZCMk$Fi(Mt+x@J15KI+t8JvBdy@?q(tli@C^%-;XOQ@_ac>2c9nWs+o9j+|xS`bpYSZSIjrL3~=>;+3Wj`;iw6jsDZ&`emU!@88C?c=Pk`%f2>Ius{%hw qj8l3Su1^E-|BULVN8INL1cEOFK8?>hVFQc+00001vSTNO%aTuO)9+D;AngKyIQ`#!s~}YYLDc($!vFtB* z+3EIv*PT5!^8Xwl0^Bo{(XS`DR3C?O#M-~*3l!B2g{N)iA7002ov JPDHLkV1i%_*#iIo diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/meta.json b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/meta.json index c83e07dd30d..840b109c833 100644 --- a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/meta.json +++ b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/meta.json @@ -1,29 +1,41 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by JustKekc", + "copyright": "Created by JustKekc, open-equipped-OUTERCLOTHING icon-open modified by Hyrmik", "size": { - "x": 32, - "y": 32 + "x": 32, + "y": 32 }, "states": [ - { - "name": "icon" - }, - { - "name": "icon-open" - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - } + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "open-equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "open-inhand-left", + "directions": 4 + }, + { + "name": "open-inhand-right", + "directions": 4 + } ] -} + } diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/open-equipped-OUTERCLOTHING.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/open-equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..2159bf1653b8038ad3137b6d90a10bfb327f0324 GIT binary patch literal 1108 zcmV-a1grarP)Px(4oO5oRCt{2n!#%mK@`Tnh_|*-Lbo6xhmbTql@gjt{s9jyl%NPL#!HL09*Q6$ zMFO@cMXJ$**Lq2WMJ?o#3Pq0+Y)UAe8WSRfT#Q6T3xdLUC~uu?Hp$K;8@0|4maw}s z`@MOYd9&<$fI^{AC=?3Ce~Rl*8z4hU&#+*?gF>+i`i;%cN{vORleW0bSp73Trc+J* zMxrt1au1{S_>p5yC4B&RcqwLFUwM)O0LbW{vfFSZ8e;>R2A6vnDLupZdnrA`T<&2E zXc|VMG1lrC-N5SuKrrAj4&Zq3GWxb0FcOWi!SOKwz~Q}hLzD;xJUG0!4geS&AM3dj z%=&}lWAOXD#xXcPCar(EQv+IWexDaRyIBB$-{);;L+7`r&SK_V1f_BXg-bCeyDnSl zm&%p4ZJ*AcH`>|Nw>1N3@cC@6r4gla1^H|aJG&bLmeLa~L)^Fym-_0yj4Fd+6F!rBJMIEJH|{*c*AH(oG&<36{ld~i%j>=7=KYuW z`TY}yMkgA!;-S$A=&#=6`Rgyj&lLKn_Vy1LMOe4nZS<|z>kK#!e$!Kvj=c${^bE^q zbC|yzZMvr?(+EYv!mq@(-vj~c9e^T!G5-8tL}&?YCgLs{G!J>cSKFVcKH1>3zCxi;C=?2XLZMJ76pE99 z)CUAgSphJTkxqUMwt~J;)AvZ(A_?IR+Tt=B&@=$Rx5IbXiC^!#6ZpZ;tlb5r&W~y} z=L#f%#=!%}MG5q&-0$;ZZ~wrN;s_po@P%U4D3}0%0ZoIpxGZFYRAR)O1K^hfpD=NP zdcDs0Y0ujrGZUrq0%lQy3MiapXE%$Pa}fZ)<4-qVrG*?&C|2S3c`b7Qy)KIA1V0PN z7P3tQ;kdKys0~6(;L(Fy zme;qpR?!_m4!KMtX{h)mpCPugLzJ%S1O6stZR%-#KtC~S_Nzugp-?Ck aCy8HbN>hT*-NU5-0000FQy!jnLorwp${k*cOKiDb2o@%w?`bb^n&Lplxb0LB<&j4{R-V~jDz7)wC> z@R3war~CSo=H2a6HJy^?EwYtHNWQI5RuoYw7ZF_q!?Y+XipaN>Sc4AoqLWoMosI`T zkR=$D&Mqd?83aMd#LX+o66T(V{Zh?F z3M4riA)vv0aDUcSQC7U6yC-P-=rSL!EPV{e%q SAbfv`d4j(OFvb{Tj4{R-V~jDz7yz}? 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 z

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

J0DDI)w< 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

XUK?jUu9~RmkpbI|;%v)6-{Y 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

l38)auo;F_po+=||o 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

~R^l0R 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

p}`L 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

  • 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 z
    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�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%0D!*(X}6qisMi!mkCz?z6OGpGb;ypq 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 z zBY*Yb(_FU)X+2~V%}TJeSib!w-hM)Xwa_gsXagb48s2AtTUZ85&l<3D&874Bn!-BJ z@>|vf*p-1a`>PD9mZr|~IFO}9FS4vhVewnUig(|uR)tau1NeB*hO->>0bti}NvaJ{ z*0-NGLO~eHfu$*q0>g`W&j@Q#J7C!?tR-skJ0P@sZz!Y@@JT@&1|)gL(Usu<@b>Z8 z>Ux=2Z$e9C7!nr!C;#mOuAl_(XEr31BF(ABA)U$aY2F8M0L_*53gM?57_Kae#W5-Bn z?+4Oal)CYT9diMwidC?zd~oB=o8RWlPli~1H;(&pU?DUEfD%TF30U8_DJ zu|2#xB^hD=F7?hlAY{EX8XM0??!1icR}<6N@H+wCIoz%3xOeYVbF0_^{$El4?mr%# z$#l_07x94)e1LlW7@(@kAspGD^{u7WozUJ-8M{||gAF^#++o|Bv5wEw%2@0Q0aK4K z^;j=y1q=TP>7wOTTSnQh-}SRYb#w-_K`k4Bg9K`4Lv|;Kaii#{dgg4Yx}fGjpW?W> z0%LhBH$%7y!clYf4Ptx74Il`4+!LP2%E}TqeC4aBwtidB*nwp|kGw!^jDB^LCyPAFb_Vev;fAjQKb`4rwT;x-q`V`N3&a;`EoT@HFI)~A7 zVCyqs_Wk$I64)+!V)PMYgb39}rOSx!93q)PrAHt=g3cGvIx&f5gbZp3DUCHJ)}=Zv z&>c|OZ~z!<{cDe%L@^@XgQ#smgiVw%@qZn>Yc_1NX86kL#;Jf&l|pNz37|$zEFfj8 zT%?Byg?&V?U%mzqnDWVDhQQX!t$~zm8$Eq36=X!Y}N-F7a*_?^ycMn=bXW}{4K0`Rr##zk}!ht zNtm46$>`{2f}lp0w@DIX9Hc3&esf)Z7hV}o{E#X8j4daQU~;il1)v4S_)7{iN}WaTYNY!;{Sj!b;?kXo%lqcLKXE?s=dlT_w| zlHuvi^8;n{94^%2X9|&S*lpjndZB*H&@|Q|ay4rPD7l%KJa&vdr zi%#&f)7EW<%TsyhJg-Q1=5zg*X%H!_tiaauAIbO=pGo?O53u~*TTR?MRX(dQ;Y@^U ztfkzhNi%4#fDmoS?xfM2B+nDNU7JRiZE|@!<|R`=Y8Zgr8w7>%+$vq@(zyQgnJqU4 zgeaLP^Ns=_Lx|9ImC-yGcKm6DEVP_-p?zcOD#%1YphwA62c@(T#ts{BP+@YTe1U{f z1cR=RG&w>Cg>YKyQb=rKq6GwE6j;L|uBgK@FpeNI7qlJJNw4Hub43v(+Ev`eC|!#e zag$C;11PK9eDWTs4yYPvt5f8_UZ+tZT};zHPTmb#;T0mFuzZY+c5S>(@{%W?#b4gE z&${(BZ!^;-9&?%+@HCQwB#r5$V>D|kgd!u;HJh_>=k2#q2tlWtveKSs_f(ycC`7Hy z6Xb1-_NpY;5sDb0BZM^8&Pr=@P|{{x7;7;}xfL(#2QB)&II$VDF6}wi%TEC{_Zk6O>kgRz2G4o+lX&Tm zzLLNG%RfKeHG7bbL79eyth#Ol!gwFio{#!M^jw&P+O)+lw?kKV{eEz?aVmt|y`LL!cPg)L;{wo3d@~jK!BlvNXX)S3A?Xugyxnz^pcD`&x`QFCyPw%*}($BFyP>Pi|M{j z2?bodsYdF|o)P3|>QXYZxQye)kC5{R9qu=lawUSD{rpfdSfjSSJiQ= zs$B1OQ`#7oQ)K80&3O_irQAo z-!4P#EKqGMWU=wSIFY1*<I_*L%`R(8NJubcI65jB0Z>F1^Vxamo zQxHUK+qR8Pr^CX+T;*PtrM&Nb@8f;%dmm4D!V`JH3x1fVJ?&{c^q~)>Ua#{zzw_H1 zJvz&E*M0gl)&AIY^UXK&s#m>=KmYT;VDDbfHM_7%!J8fp*L)Gacnuup_+tVqkl6}^ zO|;ICDnVx}sB{t1Bj5}yR2#%7BIu!2g4CfW8xlYaq6u_uJt<^oxs@RbOnM!Hi1t7< zMNn&^WWyN3q(-1;9C8T6ka_5@>C#F^1UZsp#GcYaz86Lc-gV0hXZDlmfXsR(86@Ls zSECA9prQUSTjgKvxx{wh_~fR|)a&E4T5~Kd%+l>qIQ{Ccy89umTv0n`3Q%~&>948Q zRi43kETLlITX@d#p3xZIMPkGPQicd2&{`Q!bh)lt|CZfX0K&QUfLCn*Ta}mf2`qy* zJ9Cupe)l^pF0RlRZL%=8$lZ6|Mr);G_$yJ?RVWkx*LgTf74%f;c-zUXi+bp?JwExb zy}yf3+P?nqN5VrMVk-WcH^9UceDdS)sed>Dr5dF-?e?&Kq2x)Y^_OMFzb4Caq`W`- z?djpbgph3CzJo1Wwvr@04jec@yS;K+>T-P4FC6sZ0I!l%+mU5{`UjOVtCI)-52wk= zt^B~#p30?{Ttd6k<@Q@|GxNZ6`6q;6`}Q5|+_{r(x5u4# z-bt@_;+$-j8W(5k5oUel7WlR94s=52V*-8)G=L9dYDa|3-W65bb@p(oIc0oVAX^Z05PeAp$7fdQkFb-4yZ#=(c*) z8%K=QOKJ>Gapl^63T#IxWx(SsH{~HcF`ypY8wVCX|Ap$oMB0{DUP>7hG%D*NPN6MB z;oKP*&aEezr zxUtcMm_w!Qj5URmv%q%12<4Pg$Sgr9tI<#lYWIB=ph~-uVO(A%YCU))W&ZZpzopp>yla-S^A zNpeLk&q>lc%~}g7yB3(X0)LbRYF!m2iz_Sq!{2?3i5fiP(HHQ@vqyjqd1{$zG88E} zH3I6EkrpT+tk(jGRuU~FN|?c|39NfT2NIa}sWhdNq;zSa!;mnH3BwvuWa>0JI!dF_ zpx5is?RM$)dL&6=ES!UYOlz`kUdB%pnwsh&^Mq7DR2!jDA0ZTqUwr4U@cZw1?^=Te zfH164tJUfCx}<53W3RN|e-y_JuDIfI;<(1hNRtnK@K4QwzW{#~^cLXAb&$@3Y}ldg zz+Afs`23u^@6SO^IY*VU8%vMUC4>WkG4o4jW&@B;AtQm=FPOPFb=4{AofAZj?Pk4L zz6H^~li&EYckp+A^Eaev_jK3nLE0eY8ah7OvM$=FSpOJX;kwE?zB1f27JUhohAp|I zHWnHIhfSlEQC12C2v6y0^~i;*i8snU1r0(<4llK7WxC>iTVi?0Ar0{PWcNGYz-v;# zT}RvZdza|1gP-4e-fM^;-9ROlGmV<>4p1ge<&_-BzjC15LaoSoUwtf+dUuXYWu}1pUo?VLs-yh&Fz|uw*nC~Nc!%zMw zk9zFm)|Xfwr`RrCfbKK}$m_sX2Lou|D%e2-P|Q+cH#Q^&nB6FdsSW50_I#*}lA^FG z8Cn@W)>;3m1Y_B29}l;Iw$F`r9e)T`N^Uhm`rv1VfKF=4v z@Oj2Yn!M;GFX2TmdLcjfgU{p>pZI&Ox#pUoF@b|1LTiOmt8-DOfAn7HL2)qV*1Y&dX3LN2o=xV4X`Q)C#Ccgi>gw zP*U0*)yk0=GaGK0fmkA!pkyiIRMNUBP2uMo#j^Bbp0hrd1*!8edRz!iBffxk`_d)Du-xo9Mi|y@Ud+&il&r&kR}^Kwa5>$T8j-fAX|&Es)0`}OU@0#N5wLUT4lcXw3eGxfH{EWJk&zK@y6I+; zJ(E-8IwlT>evo1%JRsIbmMaZ6l&r8elo$;ykeh>TLeTwU{@3+fuNF7bOY8+re zXy1YF2Cj7bX5#dk+6k{HPdaX)2MbQ9alpB@82+yLZM!ngjJ~BpJZxDq6 zXn|G=DKw!-L8Ksh-T>+&BWVUP2BHokz&g2hta+&sf^7%3Ta%s|8dD@PN*}=6hpTbwfJSDI9@t0y>A8+%`@x4f(fciR zt#v(H?Xdh-%eOzxvGVYLOMl8*YQ~a!99RV|&_a+aO{TPQXKG0bL1&d1z>QE)ld_1( z<+jW?3hZ(qEH5TmY$ascaVK7^Aa6_W?*qrLnvW>l&90Yfq8cCBm0SJz|N4I$SH9YQ z54`Uo*3Is!ACp%gSa2I_7^nb7Z zUQJavK#-z~(0R_+$FTVzZQtTu(+DOT0dXxNS0xXbWk&g~VBjr(-R@Om06Q9uj0AAKU*RCG@e~Zs5Tj^TsM*sDG8kWZIFFoWs4EFu7HN(&M`-Rim z=z9JAK${u?|MxHcn94LsIM+OD9xaK!Y(Yl;*ImY;4|% zheLe>VMcTgbN>!m3v>_C8RObn_;tul86+l+ny1jft)CC+eIT08l6sO70b_4NBj2equcHBgFpC#6wDgfxs$`_*|6mquP_ZN3yBWDOmTA;J+v5EBFfA#A{0GJ9sV-rDj8xk|~& zjMtMupu;T??L!Bckf_`kCkS+5kFfeKmfO*k6OaOhin#F zVts!-CZ?T3E1#gJVsa&oH#V*85@(QHT_~BPI1^Jn#OkuJKGo%KSEn$Bsma|;O>JXr zVu~@55C-OYUm?*TxcHZ89EyPQZay68e4@{otnXf!x<=pcs<9b#h> zMIfZ_Ncj7MRy%kP`#UV1qTE1yFCqRx9ZDgUd(H{J{8+%gz`!q8dVl?}rH&kc>B>-| z%G(M1Uy+|LSn={HEQ>`Ily>3Cgmf6)ah@<%p3DmN7Vj@qSG*X)&Fz zhEHP=X+^n!RaI}J(V{Uv3GH>zY@?DCWgPG)7-v1H3Se=tj+m-?Gmth)HK_83dXG_5 zQYl)U0yL@b4IQUF0IUN5?77D{rg_D2dh2Z)JRLJoEyqadEUI5I001)#I!7-xewo#$ zhE|IMdk(Otw}JC_?5qIb0QhE^`*a|%rkUlWiLLSgyLX>d?^*jCfQi;@*sy`io^%=4 zTz3OdgfEX5{_1-?2jcUZfjJ%LYSVEdcW+1$FD~&pycDVu=@96 z`B84V>^%PHO>d_tPA2cn6Lcm?t>JIfy~~w(vTYf4zl^vhd|#=J)p517?6FMIYGjpC zQYnS8meNv%gmYV*qF0DZ#Sv8?z<8obGF3%(%#N1Y#jj<6Q|bD-t=|DQAc`R}}rXT0?Lfi>jQ zJsFz$3gpw&;BEvXR2xj<096%*m<~X((%zEWM|fI)9kjNszJA+-=`T5;RtfYE69oeG z-#y|ZB}fPCw0FJJkX!)8{g7S)D93y2Nq4OhkOi=32ml7ZVRfPVRVW*ft%qa+l+Ono zEcdNJXDJt6cnPn1)vI{X_k0gYlCW#nE;^l47d7x~p=NW8i!Z*2ZQHi7Y11aArY706 zaT8Nh>nQpK$7hbOc>lhAd-=czKEQ`Q^x=WyV`JlN-FhCIHf!{@yh2q3U{!vxz#Y@1Rhuxbjc*E?_fY!jp#u<1Ii9z#g5k~kHQt@nPnU8^c} zM!Xk`M{$+A8%<7w4w;(vn;)YY>##hH*-~z=Bcac7npDSQ(Uyowu*|K&dnA z4pmf>#dlHkJ7mpBQ)o0M7@t_rT9?;M13e2j_OtCUm!C5f*`94H-D`4sOE1Qhf_-sicTvZ@toV>^Ph!Z z`j;?$6khyNc<=%E%IVAFuFzQ)cJa+`-oyR(e~a1qna8UMr-_7S zvxQQMLx&FW;De7aH@7ll6O+p;*r3%Kqm{P&mKp5(2NwgaQyOWLc+)+XY1ASfws5`7 z`EcKWB84H(+Ng}-a;xiE3IK=e0&5WJ2_CZp2DCsUgRwD~9D}izmy>)hj*zM+;AFu< z%!s$HvM%g#_2;7^8RKv?okFYWLXRkMVUnv{w$UUH7G`nyzp8)2CLNwnMW0ZCyV`Ho zS<}^-WK>u}e7%l8RsFjKThj zM^`<}urg<$Tpc}gc*f{j9UXJ;Q4!Q&N+m9@Yo+w6!Ql$bR{=D}pYs5oN>Hjts-&`b zTb8M<$Y5xA063}2PScDm^9VfRxvf5?bmn!AkuHF_<+Ul*pj`ykc>%NrVU_Q!`gZ?P zDlj&5Yl?SjNbW2`pJdol+8a@N)rD=%elV3l= zMVDNOh;d;ylawq=$+85k6Au68qLWaLOWqP6&#u|G4oZJhv zY1$ymQnc0>V;CEopwpS7p)KuZ6RaUs&>m}%w8oj7xtm}6WRPb)>pA?+@BBwDz4TJ5@Ok2;#rbc+-giPd?>yg$ z#xoFR)qNt0j0n8d zF3j$*NIcA5#8iq?-jvaw1=@)#GgZ!uG*Pb3`1kN%!}odW|HAJ^bS(U7e@~{I7jkE% zyfP!6r|AWSFeWq(6wb6lC$5j08d9y+lwWvUD_WlSZQzW{5)Fw~mBK50CMx=^+%<{k z)vG^MUl*QPM}4V$A7}-ce~+1VIo3w?$W-F_Oy#|Xqw$d9kNaZ^RR?t;Kr_Pnb~+LO zHUR(*+mWsT;9)s#BGV*^H*D|?wLmjV5akkdgdE`0or0nC#7-VlZv4jMq2ljD8^Roq z=5sRi8GG-aioccCjqsdtpPu^?{OW0VtsQl2`24ps-FVgc{L%mKSD~@hfrY1w^5Zb` zWe@Jc0Qigl9fatRqqh?L!+GuQm)rrJQ`bU!=jz)~F1pA#rsKYs$B6=%`X&Vr;4at& z=jAIv^Geqia{$uqROo}wTzga#%pAzvW9+EMND9~9-o4N{4kXZ62gx`C(XYHhNT&%G zoPQzT_kG{T5B<;&am_W?(3ziS*PcCR+?(}OQBf2uEG)8n_a4fA&eqN6amj@jvuWdI z^1R2RkM5x~Cj;DS)~#E|q#xq#%yp*S*tCI$dlrEcu$tVN;|w6ZvKGoXM?U<^wO zLmR8dvB@Nou7hL>NhdIgiy|lZ+`3}D-r1R>xiv#-U35HbtNmR_q$DFJQ}d*1b}54& z-4okXSGFmRS+37{@81OjJ+qFkZDVcfLk@><)KQ!h0kBxFM{~c*s_M{vAvf=m_W18s zdMMqX)ofvll9`!9%+1Zz0BclUI1oH_t=IX6tsVJul4m=nV8;$zl zk6z_wy-qc-!QpsW`cGRo%K9ZJfYC}pYYfi6U<(&rawTJ9lg!Ug)9HAyIR>mv&Ev=6 zqeFP>*h9J6PONuMmw_Q#IR=HOoxuZm;9U$2jmM7!-uG^}mghM|Vd!>y96WfCy?ggEH#hT`%4}vWHf-F? z<_((}8z09Qd)ggmY8^w=*Zyma`>Zr^qQl+CT@xq>ci#C0zVem3NK`^$iaHMZIZpTA z|4klz@IgSCrDcgxA|{u4DVQ^JukN%+Ael;NX6& zoLg25!?YZm8-(~#d~o0eeBdIKaw1Exh7X$u(KUe`SSj^JoP%NbBCQ8EG$rm>GlO+g zEheVcW6M5=4j-qx;1mqah_OpjXe5xOexpy^{aI3b(WVi=oHd};N@%yoNwj8uZk8iQ zg;Rrb@yb?&^EY!4yMhZ4@n|*^CNEN8U2`cf=0hrX)-D)^Xu<75mMXAg^lJ}-`1(zg}MqV1h!xcm{LgGTL*mWdon(^2T zJ@i=^OVMAddT9Ej(xRXQGL+JkrJ=hpPnPE-NrDlJ$x9!qM&t4Tx7?rfRcGI z)7`Ih z^R3RQ-~eGuQIt%LHM!|o-@ya-pUQqg0MY`TW3C z-(8BWdV*9c7^O%=Fv>yv8rKG;1#1io3-jc8AC;!`J1%6F)^N$imq33JYYnLw#+wN` z&6w)%fzQ5@5C7BRi3Z16Op1gAon+`lp_A-PH;5nkkssj?|L_mlxN)Nge=SwKr_Mgu z_ipGPfTZm};VRU@kXRUE@K+S?Rzzr$MAv%hOW8``#^#`%A=rRbQt2&4e;CPE7{- zHuUvipO5T^(5|6tW24PX!_fu1tQ;|_v{Vg;b{584DQQDjz-HhtkIk%Js2|H>xrIh!0X#O-X^GR6Tn!76{+Px-|`J91dn40`fRC{ja5fU zc-DB_4LGC55ajXcAX~`No z^tlqPe)gO_^k07IM_^(SKf#Z@=7;#wSHHrW-~49Y_rCYBZ{NN%_%M&1L=5}(?PlM; z-5fl4h_WzTbJaEUdL73jon+LwgBN_?Zq)ohMN(*P8 zpJI}PvLQ(6*KFldc3HH`18lwG%?8la?Q((vtFU5-a{!05C*UAg?Uiy$m85C~kY1uc zFJg!29~uViRj|;r(6bHtb{uO{r`z;7enXC8=OAE_h!?ZLD;O#uGXTGVtqz{7@xGE9 z$Y(nk`37Z~lco*2z4^*9DBiymUKbtNwp6c;K@e4x)4wLEv)4AI<714};i4;0RMqde z^0y%R^bZ*V4g@H|4n0cENTPMPsZCGpR_j}~MKB>w`vXs(TjKs{5qSbEGZnw!A8I7#z;eu~J3X6VN zuUO_Ts8n{bWagl*}{D*dLNDrjY}aec~pTQ_mu zmi45maK+9stm)DoYckPnk|qghrb)GOR(M)D&j6)-PG99i)+(BbCTpa$vy@gdW4zU1 ztktI7NGPl&&wCVQNs$-yi-KOiWU_hHEG)vp0(5(jmkz{L$~}LQ zKpHwGb^V;+Jbtqlv|5m+DI(>d64ZitoX&a$PzawV;;}#Nj+Lfn98xvtISuZ2Zx#-I z{sT;IxrEN42UtAZLnrlSuSdMkux?lQh>BD@o)JmMU}DQPs6^90{s?7vv5s17owBA5 zRhRj3RL`R@Rz#IpNoo)0D!xvrTlsOCVWdTACn)U#X&5-edP_C<*I)Ech7>N0jut>>S1eUxXa zZ^6`s6$o6dFab-7SU3YT$@Zn|a40O#k*Ye~iUrnd8$il)R-ENn$ z@iCf8n4h0zy_%z$@8a(J4G(osx5CXb+nL2+NOj8m;vA>1M&F1kZUGOAuFajqDAd4j znB!77L0^pfOUGRfIMahI&x6*Mlkc)KL9K24{vZAkANhx;@zDNbXSy{{&}pRQwzTDF z0HhjmK3;KSj=Bcq>dz1xV;~G0-eO*k=bNo0? zp&Ip(L?=g7yyBYT$5jPH!}1e0I&LeO$fu0)ePdUc>)%eKlviY1r~C~47eE0c^?1P! z1_2&cqE}^d;`x1YYrvVKAAI4{c+sn#?}YUA&C^$rh)V+^HsUqoKYxvakuyRu^il#c zvsM7O4^q0EzP4Z2UAg)N%Z(hQS2r)k0afLGNOySNw&Ubl+XwunW@pycp3_Yl*S_hu z!u)4o-3#En7sC3RptUtx-s4?Zk+quKdh4y+dh4zH_HX|-AN}Y@dHdVn&WAqqp>y6V z_`v=>eB{F)<||+N3Mx??+<$<6ak4;%aQyf*y-yZ6$Sc^xmr5K6JV2xNML+j*+(bAAl%>m`9O{Z+i?ua?z0!v3j0KnO=b^j+Xb13jSPKFx z8HKLA*N@@_?3$&RA^P+GHKHCxtJz}RhIJTV=EyOMfpti&3UIX6d8caclyfeo0*H-Y z&R&v{{N>4zu})9iNZq2HC6Qy(X(RE@O!aSY<4^`Kt3QX<*Xod3-FEZ1QnNY6mMvQl z5e^*Kx5PRugl3h2&E?!D5lc}xKqsf`&C`b!0MPIEn3E zH&_N$$NfdY!YNs!pdDL$1wC3BZIGDE(uQQDO?86Tv`X9AIkQx=-d4aH+(3!-#T zYqSt4NhN2joifoHXKJ#|y74AclM|e`d6J3NMYLNDT3Lc9$cvKsZkO5FMUEan&hfcf zre}_GeAaM$7W#|O%bgWn(}#Q>Yx!^?c}dx)O6fXGA?j}oPgG#LmuIRlYaaa75%Z?R z;SkgJJi=`DNToCgTS!=-R-(Wh4Orc!Fme7ZOkH#(S!;^?_@x~E+TUY}x=rEk@LehG zm_~_N6Q7q%#g@?uL%e88r5G+HC6_T0yTEvGlnr1nL!bUHl|EXP&ifOOuB$qanpgwD z>&Oe}21SBqRZ;sbpyz--P~w8hhqttfNg`eqETQ4v4s#d?4xuP@$oE^~xY!Oz3+%Y( zRvXnby3gU=NuZOvmo(O5320WmJh$#Y=lToy&|lrfj;-5iH5(XHkmn_1V-fT1710tj z-c|nL;bNm>VO*eSHX7tbL0K9u+`f_BynwqNp6BN55VSL}f>N5qf|LqUg;DMWi|;}$ z$_Z6kxpz9`2^=Wo-ou*&n8-U@Ywd)tp=cQb=%hiCjw8yDJ^Y7o>}#-XjNg3i?d)q@ zis$XHGt1;#df^LRz%T#GuW;$5mwHcXHx3((hBH(*B`Jn>F-v;n8!SBX z4}9$7|BwIlx3K#(d9@hZXLh0R%>3!w>s=V|jIzv^@Ehaf-L(2b$P?DSz~T|CASf-z(2_Q=Xv5frbV7z-I)qL&xKt zZCGVJeBH_v?q0f2uGZwTGSpqZsESszx(zuW4&A*J0UoT*?<~He%E2o-8v|>l2-MC!fvv67Ym@T%yY#bt~429BR~ zl*E35r;02km69rm%8HI~GCZRO>kRE)c8m{?4S#D5ZVp~B5=0)N0neULu9rK^h@JmL zZ)tdqSdL=j;9&}$y>V{km1y7^6+mF;Cl%`Xb~M!<^&V27ktvjQ?=FPzR^mg72j#X1 zMngkf4)5SWRCu;OV3NZl=v)JON6`gaC;9U~{I`CxHhm`UHSd5AY zdO88|k;+_LK&R6YQjDryJ(U*EA4zPz&eE0FI?zX00Y*_KYG6PUSVU4hBA;iedru zyOw@`j=b-{XreYq)OEEk%IiTJE^3X4%h79cpm16`OwE%7CmK?KI(vIq<03*PsaMHWZ-9YUYm9RidUWsoEcQBdI$e6bNWCD@eGKwT z@$**ryhKh@BlYD1uie5lg?{q2E9EfL}+^r2S_?vopupzkffS#RZDe zaPZ(E@{>ws@L1^tvg-<`&ME*nNm9-`?>x3{-G(ta^Yimd^5|-vkfsfcF_h(*5BYI= zY3Z`p?afmh?xU2VFn!jpntANxtX>*qX-22lr8K7&0a%R+CJgyeYxhb*dwed49Kq5l zRW3yHx)y9)4;$Av*f2T9)L4u0c7s-y`n(L5#eSdpxef;o&9c}vq5;ktg*s^XNTQ^U!X~R0MxNrxpcAF&8B;sVoi^Bg*IfWt?pnVW}B4;DL~ zHPl1lvc0Cwr=4?$f&vKdNo}ceObl%F5eFgEfOp7QoFohyCo9j$sihv;1Mkzv5=k?E zj{zy1WwK-$5r14!osX*kG)4q1)_W;yGhTqib_!8a|HXBV99V{pr=6QRxx4bfC-?9CW)A~I_&XM z@((7;Y2t#}VD&D%PlWf#bqS;`lrD4-%3E=lJxCUzY&a!{&Zq~2hde`=TR)+Dg`t&} z&}`Jr2_dF^ADANNNf++m>6bpp!;d`7HCJDah|ufxuy%|Pjz~l(L}RRW*`9qry6QrX z_4>68XixpuMx%jJ1w~PC{&^dDxbs~+xaX}r>GESBTfFzU@?kEuSMF->N#-nTC17yc zg{aobuLvrPDGzh{@g6Kh6BK1Q>&NZDnkPb|k+9I*0o@t4x1Ni=HQluAevjWI#=ay35Z zInUvb{^*am{`%|Pg#!v2f&O7Q`e|7FCUq{}NKh65$=!FI03i=|2Ke~@)#6|xNiP_6 zX=(sDf~}+g@c^*WAf+oa0K-Jbf@ehxeI;X%&%mJ%!KP=!)Rm{JYflT^{=Ki@wXgj# z{^BqG@=Q172|C3T_=ZZE!_w_(7#`C@pO0m|2*8{ku_>y!QOmR`CQ)k8dVWO1R9Nfd zGSu?dua=fTh$F;=71;*A55+bqYi&V-)L~pA>%giwT}Qyw)$+7d-4m`4{gj-B4MCJ( zl#m4DJ$IDVNh38?V=yRFrT!g%2WJ>o({lCH!0afnQtJ>_T2)}|ih!k3gI=?ty^*)7 zsNe;(lwvhcQ0!WilLJOw%yPY0A00NxFv#fnG+d4v?S)dq2NLhbODOKo;l2%_o)d3? zsU!rw98r#1>RF<3_X%}G0Ts3BT%qALNku>7_199%Z&?y-Bi;Jf5YN$wAXa&UOcydc zcs6MRT3k@hU~p2}`kjYpV2r4LxV`5>|NhM%{u&b(Z-?X4Ft*;wPp6AI`&_Dt%066A&HtJ;>fcPy@x!JEHh{;LnnxAK!%7Y^Ur)AdClp8B_hcOGB50px z1so4-dhYnyNXN0{%Yp%WFdj7}%_yd0J z*M5Z$e(;05?QL)46QB45WqIy8fi#jf8`p23)oNi($)O`h$h~Lz)Yy79Z`nek6|=K* z9G*TjV&^(H=oPPcIq!VuyLja*U*V601=Z_THr)iz`T~6R=?(;5DIBzgM7ln2YDsOR zKTP#*rNpP9BK1IBiXaqd3@Ji_@%xnkwXt$t@USFa19c7|j8i{^)F*=!G_I?Q9AE`< z)=|m(GDPkA^WO2EF<5f`3~ys9ez#QofR zxkljcuzn^kTg2%(8=2GB3V?R|Tu}n0)BP59sWEE+wUzd!LmerO zZx4I;@JbbU)z~C{nAWBFMBRY1(x>L

    En(Uan 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
      plYSAzHZf%gILhrds&1TAYdz>UmD2jrGg#~73 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 z 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

      drd`b0tbMx^noW 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

      wpSZ^0#{_FBSQzx2u+cGdZ!XN$Q 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�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®T_9H|`K7o%Y-mX?+HjL5Lub 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≪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

      }r;kEJu+3n7MGRA@$23jP%w{uqo; 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

      lK(9x7*mjaR&T#`Y)s1aZ8@5j4iV<+Jeo-ppC>B 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

      |SzfWF{fTrmX%0o8dZ9F$H` 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 z z!Em8>g1r&UjX-bF`do(Z1*ifTwd(t0(w*Dg>f?Cqguhw%Aua%6VrvDY;9AE>X(oR{ z6Ga>&Sa%oEiT3V!PcXXfIywz3w2!wx%AbhlsMfLe1Ghon)_mJptK0cY>zHT9bw2)I zzWLbZ*8Htc*P$ve#^=`FQn$x9fMGk5wqAN-&f!q8tAWW#Lap%HU`!GyL#q%88Y)nl zb}nB5FcnVe8o2GG8MA{$bZQt4hqw_~o8x>%6X84k9@=E?F;_0GiNTiqzJv%kru))Q ze|OO2+zh>4?{!dvh_19$ZVcqXfy`04s&S?wV)P-+f=C%H6BR{|xrnxII? z2J_4>F4FJMlBOA*ZXatctLrOVxnwBH>r*t?-UYhj&|L2zFCC-Nh)#EiNjsnoTbtW# zZ*4Lfm6X9|VuF3iwXXGE>`qZ|YqPAyZK~TbWSwrXk;pu$id@D{%NFd#|8MGDjwWDN zw%Ig8p}sEVnwave0#YaUNp+Kpx4kSxn-RVNj_Y|mwU)_urJ^%IkcC?3ID$SH{^@XT z<>a4I)2_WXoS!ObSHyRtoI6nP^c6UF4vsI=(D~82p`L&*ptuIT92FgYltzbCTXIny zTi+_O4~R^sP(Imv?T#Rk7bnR7aiq+DEoydVB=oh4ynTP?7aVU^lz-I znZvQPbNgzj^Z!YN&eyDjUeR*!xN$qZ_Yx7T#EGWg?J&DA!^)L4&Rtxg zno+I*7ftnz8Vj6Ha5o+iJQZCEa_W}Rt#o3WLZb_-yrA42x@VCY3+#t{Phuljh``C z6vhWf78i76@3A5Mg6zK%{aco@&iOFD8p$D6Iz65YfRSfZw&l#4NXnv%7uWIDlg*~g z&-LhL85$*N?x1EKDT|V8SFV!#oaqTT?I^Ib=siBi*=Xu^w`(;qZ;%nE{ zer9$Yo3451`AwbEb+lWwS9xXN_eR&ZRWeas#qM#%kGN0_@dd=)L7~X#0bN$+NUOst>{>&_+?QPCoxWFHL;177>vB#Md8?XKe zzJL<*XnMax;`+Z}Np(VMQk-+-w%DbR0^$bwtG_5nWv`I zuhuBBKwiKnUV{4%!#BMdhO6*5epQ4flz^JoM)1G>HgpWU<`{haJ@AW9Q|E@Tz|VXP z4nHaa>?6nFu0!xE&xC=i2?nzU2(EiAN`zsA8!f{8Km91&`FVKZBIFf(^_}qTZ-Rvx z*cgGm2G2bSpE)bE&VTi_aAX1g;I!m0E?mf`YlTr_T)_STy!AM|<{;dAJ8(OUo`iq% z7&R43C7w=PUG$)l(0Z?-oqZtlI;+d!f0G3VI3e6=UcjXjEr6>wjG6S81ETqq~kgRZh z;}D~frQa{@S1hnFwnR7h0euT~OkbT{Kj7!Ii$;lNg9X!U$mG^P} z+$nB-;1I)+CkGC=bx>U*rDq{{o=4d3}U z_|FH9@MY)Ek~oh^3}5|?7Sn%;Q!kwYU2^x`2f6RQH{o2QAB97Qj&kYJd7$mE;Mv|D za`^BG{;R)po{xO+4>j3W zx+UFS!Jt>t%}SDvB};+;suGfHl1GXt)G&Ky+N30(9r zaoqXkkMPg`#^?CqpL+~||MRy#L|!`n_V;`nYnz*FkGHVF_0U0`>Og5RT6hPgg6*w> z@#q|AkGImlCTWZVRzVVt6~U9bsvOQ+s<1{HDk>+ABWNoIVI?bOO^4;gBfi4pwXY2q z-YE!N56LzsM$CV0ZY^8!>&!c>aa;8>WRLzlVP{F8z3I+!yz`pW2q@SvUJS>DF zI2D2FVCX_oDj)Lar6`wRe1=kvM3tl(QgaxiDhv}0Bf7@Z@tPUak+saPfgMk~*S3QL z4UOjmkUOYcN);#}Z8QW&AOK0A>lzV_xU;*v>NOnar zRoD=@ExAEdVY1}g9_h`73F%wd~(Ma}fptqt1dR+xNg1$vK9{)|k zKMRa#abf={mG*NO1b~hta1juW6FsMy@Esa}*g?!2=4FR!96p-T=sQuyn4UO|aeU{M zHpoZQ?Ur?6kK<0WSDdjAYq!-7?ZQCN0FlNyw62BF>{&~+HG7a~%zz+yT^sxfOgxew zSVK%55DnUOT9pP&m1hk59g#9wPXVa%Tg*Z0>V6XgxDJkBikT!M4WOKJ+f=rcv>-Lr zc8t!AZ$#C5uI#(20WdrvLNx4!-iIjaz28-EQ3(|NvDc&`N$DfsV;*052FcevHAaF# zUMY=EGL%W>bva+B0Px=9tev6|Z}K3w9w6w_9xx^$?eyex+Ch~Swh~9r#$lwY0Y|(J zeIC}$I-0xbulCT5tAhaDx;ZC+O#%iMD4hlQKH9TX0AC4_$C{=qVl;1(YMTBdKDk?;{r2-E{n^{bh|w!`IsUfk(VW<^;A}z}-+iux$Lz>bCkYFkQX(G$jsES8sgbxNm-Ik1Z7){k^oeYMmD| z@<#CYz(UI6!U9!Mu(Gzna3b|qUfMl&@N1934?n^*!V??qx4zmt*M-yf@2F%Y5 z7|iwQ^+aCxh)vA~xj9J;b2EL)o}@;pijuOBHB>tRfzg4DB5~NVBJHFsEX}ZQ-yFk9 z&f4lG!>tjCwd0w)$Jr1@kOOhDL$F2=F0bg0P5|Fv=^kuDMV{^!GI7TUBY?XiG9Tf^Ooh(XAtT&oidK#j}#BW4o1>G{pbv*44?>Q^)%^-`hZQd=L5t$6Tw9 z-RjkDz;3TqVrOX|-x>R*Fd@-SN@vHpE!VvI>~?$N=bgaX-XQQ^3gD|h=SJ^)uacm6 zHeclp{T@H@&>P|4?aJa14S-&Jt!3QxZLBp<$dlEd9Oe(2t>AUk}Q| zHR0UpvwZ5&PqDSRMW@?gZFQAXr%v(cXFkhwFFyChxBDi=m?U@yDe^qW+MV=Qe+J87 z9)=rx|I`_8yJm-c<l2@4BdoN4k8M@7LX@TwyNRi)f9 zbCMbJFc+_8%r9uROT~;IsI7nGBdys{W;QNakVg2AF+)4K%$lqO$HG<<6>B$W$l#Uoa4ZOBb+_^d5U6;);dH? zisCXJmmE8GobUXe5##Yy%CbYhpR&B1(C;5$GFE6UDxFfk1>jbUCLNNbPsfaEBb8A( zU2~nW-OrTgX}t!t^0Bn$fC8%0VwK~TTV}cS)`$6quf3DcK5?Gk`JLzZ;0J$)wYB}s zm7i7%BiBY0;i;p8z1QTE4x>>AryVJdBy)5- z6(7N=bUMX)Itw`=!o^3! zrf2L5AVd~BPa3EqA|0-?4Q-ZJfNf}XjaHII!9`ywCxm|*lyd@X2B6G&(56FX41@j* zoqiwXHKXws)t1MWIi4!8`U*JYl&5lyGV7F3aRWG~5gEkem7!w{-Awb3!of2Ew%j}2=~P{ozdfkw*nCZDUrDghFlQz0Tju1j==)hQNH z9KFrK=VTf>K4YBp=;;LQk5N{exN-w;H%J(vHDne#ehyXc13FOTY?d30%Y?$uQjk)5 z9gM4uNzW?DtE_{kTVU8G(rU^+=xZY|w4cW}V;dhR0u_~#ap!$7H2FZwH_@N;YHN9+gpd<>)0*}FD*;3#sxrI0Pz^j+mdfo>p~yjU_1`W zmpCWUCL%XPdB@?c4xrPHCOH9dr*X8#yL0CiI}M~RoVQb1Y}Xf`ptL2~XbfcqMTsrO zR8@`-z)5sW@ZQy*n~}P^z6JocyMNnRf|JB_5z|uyv|?Ry@7-ph>E9bwONDXNs+{^H%`+)tMKCEKWMU5o3&nJ?)?>O%EHb)6Y=;Z&k)mUn(!NR&7j!2Wds~#V9 zH>pH&^=eTf>+8dw=aJ((oEV&QRJb~?U{iMk?8?4jYtyheF4+Kb2F9dTdk8v(avGmx zWc@zYmJ~&fqr$nO6(vj!NH(iSRUey7CRo3Y28v=rS(X$|oLW_U?i!5>=CyFGAY{Sa zC-!gXUQdh8KlHOBjt#d90JcigNmH^UBQYtJwOC(+chMU>mXMl3BJo^UXM}2* zN*w7r9w0#}8PDS6Wo0i24ofjoSNb_dY7<)*n|mR-h%JwEtKkr2OUOw(~92MtK6O zOk;OZUZOu8O`cxcvdP5tF@m-6I%#jrc`YDFRe35LF#=aqQE`?rL9UJODhcg0Edbej z3E)slF&^f8@I#OD^i!wlWGS{etl2kJ@(_wb5C+k+#lD5KHzqP%=+SX<>j+rhy zzwZQLn{yhv<~EEM;oOGCxw&p9fU8?|HL%(=CA4l`OY2&>$IdoQAJa@fkE&aB6LEIO zGsd|n|J_^CZ`#*<_dC8%UoVbn(`{?6*$V`w*5+SLxuLf51s97ap~G7b-3!O=m!Low zfEks*XpOD&&+}`ipJc<1`NpI7bJuOJg}Go~jKHsWg}{|d{L9Ba%>_T%6HI-j_i`iP zcjr+LR8(wHaY7CF$v3AfrDZcu)X1X+Uxj@p4Z>tj2qQ`qk3HHj4z=!c$4yKX4md3 z6gQ0k79sT67oOw#<~mP5^?5qIl=bWDoILX~}(;cyZn+xnzwic%xG-Hf03vA@T)%UAgPbI;X1YCROHv0c;=Dp0So zKGMw--o$x0{W5&)C3yD>lDoGEtV~Hr>$+Khe;nTXG`zSfz$S>`>l_R+xVR1f?)?I| zo>~*&vvwNxO+$i?dBYM7@iW2pu|9;WErWY65hY*(JhK9CJ_Ni3kDr9kT@WSXTOWe2 zz6+s|PJy{_&vS74oKRVR_zbM&LUFy5zQ=nS8mVw^Uw2q|6xI3{lpPbIYqW+eX@Fw% zbj+UQ(G*(haR4F|@ch-iyXFUf@CW(6@B2RTT#(|mwM}Mbdi>^Z{tCwI=Z-t>BuzEF zUYD7f4ue5g@{yR(=^Bi-H2J9%mA~3bD$kbQ0CRHJ+oyX z^@?h6jM>>P>GdIoA;a+;Wm#bp(~5ioAM!6&B+{uE$X0l8_8OnvJkDKJ#g^)@Ko$+u=WPAIx)$QkI3K9$)*l_wr?5b{o$;bBXu9_aqYU(a-jg zC0%TiV1g1PaiTd@F&0Bvpo;Y-#Y}O)0{9vTmbE}41ggTYF-d?fDuF~hI+-KODv8YR zR-{=)+NsDAhgP06^DJ~S7Uq{wZi(DEin3xn9&_#bknPP4uC8BaedMuznZy0R%q{or zV|LIJP_T4(Ww4dz>eU(YNt0)%UB)gY@fKSeCPPi<7RSD&gqc~x?3^M?`pl&nv)v>J z$idoFRtQUwmj!+K2tWU0-^Bgj_sd)gK3dP5zQ#+ZuW|RH>|qhes%J(Lj6SNi4@*=q za=y|sy<^G%Q7#)rr?gO7E9n3NfaU__vja?`uuelo4aP(RbOWBrdoqb3O;U^rbZj=q zRi(rtI)~C4;|UbQ@+=(?fV9(NW_BI`>n-VMhz*9M#1SG=W3D|yu3sJIj=~1ILZ#$E zyJ^Zye}TEh1qQtVMOm=6ex1A+Nq$#tAw(_NNHS1aCees~lWnpCOU04oMsiOzGS z!Y5IE4Tf{2&{{m!(@f+bTN$dV#JU0(Bb>t8ppd^wn3obL?1+)NG2*t#8znh{t&Xat zL${(HodT027$Z58t*yk-1W?N0m6Hf^Wxx~qP3E5Qrgh&Sum^ddp}STMxTaK1qgMq> zYNa4iDc$ZYz1{$=6;(N*m<%Zj!`M19pOCAJZk3`)C`*N_Qn0fqB^lU~MANGb9oI)E zDP>-;m3OGD$I`)Ku-=fQ9g-x&D@|DzI9o~NbTsV7^(~H9@0;~6nhB+I#IRGJBWE~; zI9d^-05nbqa5VIZr;+*MobbxyRfhBP6e^{oX6UM`;EHLBMcg*O7}X=ndA?7D)TbDJaiG@4$mGhQv!1~bG~JeQK8RTTeecIe15JaPwKXbb2{R{Mn}bX zsHMfm+g8C7Mr%z~SzJ{#HE0u5--gmusW#BI`;*$)8EQ)WpDuofNkY{v-*I*X{Uq<& z?*48?_0TBALOoQ1DnaEmQN0C_gC2$NBX;NJeHCTT@f6=cOs}#tGB^I7fYYsW^p5M> zo8yg4i@>gE+jzWvji%218>pWpr@PEF>-Tu0yPmBv=k3PEcXDCv0E=B~va~<#s3%hP zPMtFqE+*d_+UDtJt<5yG_k|2T0sflbd|Vv7T+=vfAd$C`$s*3U-~d?F`QCN7TLTo< z{Zsd4Gq)pUbWMxvWqjIT$`su|{#8!ZIbVGZeo%wWj%JR<$l%Fj%rGBGr0*24Eq`Us zgloJK(A~$k)&Qkax38~@-(9P|W-i8a8d^_fkjUSpgIB7~^;?FNK?1@m2$8nnYR4hx zVh-QnoE02U#^VVnjkA`r5+Jk+EFY>xgB=qFcuxQ!e5=j62CO4U5gqj6tBa9@jiWD9 z?^bz@(wJ`?mUuQg;P*fIe6=e(fiImkt5oC4kT5~_rN{4f-50So!*kfE3+7#Mgy*N~w z$dDXtQt}R|%bwtGvux}FecSec=)7oKb!b8$fN#!qp-Q6^v$KmFI&_$K z8AheNhg8917vcO#IQ9rrvO!&$8iOhX0M3rcT=Pm=rF4)pcftVe{X-fk&o1$JyZNU5 z)VXO=(#sNtd5TgILZ+sWkFlXK-($N(ooDy%z^-V{=sed>e;lvSzTF*u>U(tfh&0er zR|5ijk3_6muv(J@qn?TkG_6JmgHjwXz8;IlXdZv^MLzTC7ntpL=*{-&W(i4RSl&O! z!R2}8<_6-(8NkmXFIdS-Ha53en4e|e@;r011JW$TIZIJFtg9sIH^{+hCnL!cs>)L3 zRajpuyw@1xAu*I?$(FUGX+kgSaOB7`i_3GYU*BSTdq~F^di{)IlrtLV(l;o&i5BOe zXeSD5a$Y#r*GIC(dRe;+vKI6@2}=j&>b?@4#?}3=>q+9L`Z3zjbn6{QRzc^$D~ooX zstPOzR^HK`g7(faRco0#{3Yx-stLrwlW2oNapm$F0G-q@Guvg*>(p(m$7NvCSY26T z;X3w#YW+1t8s#Qt zxC)je-BOfxwpk$&xiQOpNri+Yv=jX_Kyyk$5^5}PL4IoBTD1eT)F`1LN9JNqS<6Jz z=b0MFP0=Lc8pW83ii%DkL-zIgZP9Y)YVjvm46=HD;>rr&y1WAWmV}Y9D&X1~K5^y= zKC$vLch2nRdvARU9J~{{1MrsG6U&4?JA0b{<%!2R^rc`PyP2l#gF_qKg`(+7lSG%0!tBB zLmPa`6@&m65hUag|LgcS&Opx=X)JPbJ5WAVVG zf~T)a#T^|C?Cpo!%K*2RTshSr(%!6PEVsy-xKYCY@i_d(=V5Id?puQIe>-&U0R}Wq z{g>hC$Ki={u(A!;hVb&X^i@}jLJ&PV<3!(Ur25ve8u*0<{0+ynlJ-S`Xy>NyoX{HO zr9}T0;>gU&tFXBTM)$6Fy^A0H(H{-oh83gH1Y-0D z0!49|#K3cBE@Fop9OnrzBmUcecZ&b;pFhHPf7f@jZ}~9RRU}5lAcJ@rO4pdMzXkzT zYl=dlbp!M&FF<2L1jD7BF>i%a&_n_&jL~Qv7!Qh)$s`Za)J>n}-eHyDuKOS6$M3k8 z#~=G7zw!P)zp|XV< z9%&iGY^-;28dBrv zWR|Q~GUyg`x)t4CNt#ro#*rq_Nj0WkO_X=wRJ)Qz@J(FChD9g%FSDCgIMMV6iut94tfxp*@H*kp@_@O179x#;1)ImDB4mAS+#rB{)-^uv zC6H=qm$QL7+JG2=CEu^Ip2P%2E#?rAhNBI1vM!yhOOjDisVX z8jKfK2?wAJiH_r34F3*!A2v8U#K=o!5}6CZnCqOVcnSgLl=5V~K68spEFUBf*AW#Sx9A2#g0)VSsqzh{d$_WagwMo8i7K$D5ZOyG@T)*cD$Q@40lW%UQV&U%F*CEk?EE|$ z&v1K-qO7R=Bv5^7N?$Q7LhPmIk8o9q^;W2h!+z((du}_o#Udkm2PK>LA}{%1I0>Mz#i1=!DmsES*F+#y z4AGMNvLYio~CK`)yY^!g9 z+p*M9C*fQh#$|k#Xb5h0w5F%pvcmMS<~$pXHZiJ7?YytA1zOk2Excm~mFFsQ0{P=q zJ9InwVlWg%2xqF6HXgatAm*EI4K4ExO3T=;;v{PSKrm$Z=2_xyT}J>1nap^LMEnM@ zmkFpz_#FR*Xy3h5{9W5q8<^ceyX@k3F_|@yyNVk4t>taiIv)3`oo2xHvG%?9Xpd*_ z_QUjx38p~2gTKu=%|L3+E*~iTeRO-0c`HsG@&rZ}w0dsUpmF%_!Zpg<`n&ScWhm4gXriIc z7+!;_V%XC-B<4W{&~TDZBzn;~#*+zU71@_OaqlKXy*1Bg!f_hVH}qdLp~h1yT%C8^ z2Rc+u%qPs$-`Fp$S3%4@9FM7~@4mh^K^Uh%NiNf>lJq;yQu&y6LDvp0s!}wu=Ya{u z8F6y+9$Qpwjkd|lLQ<0C6Uw{@^vAM#HBJMv_e$i9fS}FlEY=6m+6e${y~SWiyD7cyK=S%-h?AU1od&E&VX&3MX-Lv6jID|2 z)RAEW0aEIF)Cj0X=>(%S3yViMe(P<_&n+?<4LN_|ELSdFW@~dr9NMjCG#PR3;#r21 z3C}+J3|?y{lOdBlXSlh|=H@!X?M(qV&>>H;bfpK%N}jv2)It5Vqa7mKdJj|rdPc5= zdesi#copi5j(~UwY`f$ITwlMAM}Y6^YggFXlJ{Fx&3(nW0DN#{^x;ND5xT}tJMwok zh0=;q<;Yv9FrwNsDMj|viP)=bC8@*WXxzE;fjE6Nj$PBGJ|}#!tz&Tn>bU>;>GLPn zOS&yQy+M!pg+&(U=ed*$0P7H&-L{8c_(S;nkF;(YC%Ok%1LhK+bYTYw)n3Wtk#47C9HM}AkP&Qn)(G(Ky>m=gT7&L;^lXgo z6(F~voAzOyZRh@tMf)}-^z^-LeN8J8&3Q`YNwp4hF~}^f_W7ynJ!zJ5>B<@(|LEt* zl7yLsKD|!H%%H>JLyOEW^jTP#B}t4#?uH28DzeFW$IA6JuC1)m>vh?`JkQep1qR&? z-lr60MNw73X-917T5Hm7M&cc|5K8B&vI5Q;0~s~da|D79A6{lSnPF{plkspuGGplU zIuzravXUN%j$o3`MfA2jFWJ}>59+e=RDpWm7M24C7CCreiS6MSTUJDt4S5gpV&l>o zqqn_l2EWL^zL^hkU3QA1ti*qh;7se)p2MeI>it&9D%t>{&8UuQL7F7wdCA)KO^jBg zS;E|GpR|+I&IfVqI_I&K<=V=1syf2BDLZ9aJ@t9F4Jb%rEnrm6jB8Ut#X(ZOVsMnZ z<`0nSq~5=~iJ_mQ*rMW@wM#rXyo5z@%q%izx_Gb1ou%-y=SF8YgQCE(dgUaS?G_Ja`*~#f7>8!&NF!Jw1`@e8 zNg&U8aqS$RxO#@%TVRg!&VB*eh?{rt3d8A3QWWrs;R^j1UgYcUx&t!B)ypsPTW3E{ z=^fv3>mwXF@emA_{L*#O@0 zH6j%jxlFwIg%wYhVP|I@43kA-F4ahpM+!LA| zt%SN6X!5cd`C9=`u1JnvlZZ#9LX6vS)6Gnn@}WDN5^qbdgW%j+6A10RVTn3Vt%L@l zItqeFH1M#3eiudw{PqiQ?;0GPg>$R$>6hX17R>kI$SfRMgsY{rU;9S6a8T2F)_|}N z&lr?OqA(DmcjDd@Jv+4$P$dnXr&FevU~{lu*21!a?Gfa;)NytNE*9)6?|Rp}_`84i z@1m5Vs!EEYVm!_{a^wI%`?LR%g@s#~pI;(P6A|=!X`qbJLPZ?fXw38+6!rfGkpr!g zWf|-1YdresDfaI_#*rhlwWpp5aWP715+$@%!RpOUFgVvU&^yXZ`ZU9hF}=!REmYP` z(PL}v!CHI-fT@6t{r%I-R2Nv^nqy%eN;QY7R?)=p{gp$8wpt3L=q^aL~srRv#Oe$RVpZjwL%y8=t6J- z2}nK?Eq$IOnmo^`@{+tNutgaJcU9jjQJOS0jPo30Qr_|vU(Z8tcq@-R@o7H#u@7$1AK z9ZqbIEl-+eEH3Wn(xnUBbI)re=Wbbv!WHImq_Zpv0q6yf(%3+wB>Q4qpmbPs98fVH zXJmSTPPST)7mcT5)|qgiSUO63@z_koFxrvcPSBc^}{SjrZ`vb65Gq zr(WhmA9{vQf8t5550^-}jRUjjRbR~)em82w7IfJKe-h2vH z85KZT<-u9S)-c6yrL5~NPCK&1(#c9X-3h&}qth+PvWm20NwrWprI`Y+sI06B-JZre zM=>#MY;;*)8}Ld3j(3W@N*N9fi~AMbz9Q)g<#&}=+a6;r4h;QAu>0G8syRC|?(%bB#lLgZCQe%hsA0jCDa}HYUL+LuD%_ zML|)C5!8Aop4=hNtwx~@bstGoKtdYOpV&{*!QvyFgeY49Nj*@ZovMv621Sx&bdn5| zp)7KWqNJ*<&>gmveZuzRofsjMvh_1a6pkj<;-Tfe3r>*Y1R`|W!Vwr}hcyI8p^P-^ z;d}+fq>d8O-hgsMk|~YG883!#W$Rq8#z}r`9Skj43Bief^Z7brB=%lxvwq;yu=kF96CQVK&RbC5B#w;J2Z77!@C!{;dDs@>;nZ|l6#a!ew_8}TZ}+BEg6;CK@aVRgOM z)w#^v&JM7?)rRTcqEEIA)o>H7YCumxP1zX1zsNK@4Q@MHHH0#KFRx|)RLc?$8@R38+WPL*^m#s} zGKo>PddGD;k3lp65+AGnqgv0~>Yw(9X%T3T-PG@>Q|=ve)COV)eEmkkJ)LiYl4EOw zLRpJM?cam`RO@IFJ+A4PeO>)D5E=$@_%Yml>X{oE3~&*o6M!{R#%rCRbj+I?9L-(W z8|ymTxyi#bdE5FN=qd425o!_Gl*fs0#)~izjjAd*goXV^0NPU4)=*obMA!BnN=(=@ zHFy&uiVfrOgwbRoz-CCj6L*tno^wtdP-?(d1)ahPC||$hXh+u2K zHy_s$kzjTnkME+6nyv3e-PhhLw0Bgt!j}eXD~h}jrl(RgkO~cfve(;44H|pBaa6-b zXt$yo4jHL2gveYM1gOlH<7w z!9@h8u-tj zfxo{3EVLRE8{{v8KLmCI>^kT)P(Rz6?W&4~3xWfCqqU%dWyqpMo+m+Q#+xYM>5RN0 zV<)C0%S!Sht=CcQgOf|Eui`suud|9qe%WcKaP{64kBiO_sh_=XcfmC6b0cF#s_5n# zxh~9p-;AI5-GnH{y5^|XdyzY0^s3gH(P+Y_KJgsmykvf1hF&M5-%B}qWQqBO0ZJ(* zlY&ksBdP5~N+^w807Q+!d(ZavkhQf#K=AwnU7E$zvTd(PKI-ivG7|U z;E~0n+;jYHp(jp5sx76$f;@rMi(GyAEFHDUSMOWqf#dhVzGIN};)AygWg157aOo5$ zH%`*i6TainT^v4sFU&4O)^?yIEZQD6ud=fGB2QdD#d4PLO($Lh-F^JblaI6Ni`o{} z?(IL_5{ZpHA6UP{m8V8zX2{k28u!dC^L4jA0Eh2@q=z^MA|QeS#$&jAk^l74Nj^Tl zN=Etx(>@nSF7BPFS7c74q`_)2qQK+0*Ua&4CvM}G+ir)s1p$6-)olFE!TNa~J@q&r zy!;}EI&=KU17AsY%l*)qm55&-*qdTxTrq^pr}?dypWvm75S@;~+8pOR+uJ#LUgF$5 zNs{vBx4eb_{pWvy@BdqWi%XZUwG>+zE69RwXDgv4_R+{~AT?q)UmZyv+{8c<1mhTW z>yWv;G6FS*exR{WRZu2dbG>%hQH@X+f^VcQ6}_xqUGKEL^lD>SxITUs@DWb0z%!TN zx0D>)E`-kd=)64h>5Fh>Qv~kR1mz(LhAp61Xuz6dF^Z|)@51xx)-#*n7?T)kKr^b; zIw+~yN?myc!!ZnV`R&3wyu3#m=^y{`ALj>t;0GknP?2M;C(jEO7w6d6SmOg9_z-V; z(_bV>3~8E@WeI6&ND>or^-0lMk?QE32ckSDwK5O1ehZHp0MW^0#792zd6Hy_haWyp zr=uuKhcN*X^)&i(U0=%@9PU@?46-9+_7kjbZLnm8QpH&p41du$>9JbjwSi<&UIGeq z!Qt#Gz2sg};~CRu!Yq}&PE|rS+u`mz??h$ueE74^aO&l=Y+O1>XM2-74$tx1AN+mZ z^5!pNYikQ@t2$?I%x4@0YNb3$qJ`n270uuR1xyrFiQ_PA@Lns@RQi2;IA$`*!CG8t zYkIf%PGWTGk>iIc3IX-2$}vB`$XCAO>v-eq-^vRopXWm#dM{5s_4q4Kk{!i+$JMJ> z@!oOe%2g(l2`eiruYBR3h4M@PJACVR@GHk|Dluy4{3F-gKNtUVn_g@>hmD_v|G;^x?Do z+OK_*3m5(n#<#F&Ue8ST2#M0ve8siNK^9%_N{N`!NdTN~=JZiZ=yjx7Y6zOK7H|ED zVm#KcE@6DySd^L2NhfqNPu92eyN*EzbfVG5pp?Q{7)~_##Gtf9!Q4nVH%ekcJci9J z&GFkax&uR!D7LmN>%%o}J28;WY?M>GXDDE@1^xNP%9HfKEby1!c^|(>%3t}XAFS_l zekA+E@&NMCeb&o9Sw|t-VDBZY@kGp7yrK$=P;^BKEEU%Zns*uuR7o%ZDZnWm-U}$_ za88T!3qs4}l*U*`W*w>XRIXxFOvv*I$~#fgl?o{a;<}=RW_!4Wvz~k;sUt@Dm@1!; zby7MeLn)}Ng~Cy}5?>&IrT2hEsRX5UFjh&&Y!8R5ZLS3aV#&tFI-}7RWnR@DQPvx@ zm;93!T^r(+HW)3D&o)>JWB%JXXG-Pjc`f||cu(pB$fG+XX%~~ER8`4vJd|9C0lY

      H*Q`2)=9~5`h0D0ONOp=oIW?5P|K(c?C zbbX!6T%xQjm2)^BBep#udn%O@NO-pB?_Ln7vhhIJX^(jFP%F|sBO8p*k- zs5EGmkoyXwI%qtpE6~cJRY9UkG$pAj&=e>&LQym;VQU$3zK2tDk`LLsY*~`OvPvEnDvdmUXz< zP8`qgNNO0(Wh(Tww~f%QoGfJZtB8?>@tT$@v$bKd|MAa(>ujC#IrXyu_>u*$Kbn~5fe(Sucjuv27 zO%e?3zt#D}9c*?U*7Rq>=~5RUmB8)t>!CgW`#0j_l_`i?eKl~Cx~z%u5& z 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�CghZ<0;D#cuy-!Nwj8VrH4*abe3WIL!sU-1c;xRnCAH61)NiKI$N=}l=*Ee z?RHLCf-xog_8nw;dK(Wv`~~j6{~Z`3)Zkf`(Q0J@?7dd|+AzMwuqV;Q5d>DDJ0mT$ z09MZRaBc$cW>FJMI5WiL8SR!KOGXrKJBo?1=+I5eCgY$o!)`i8)c98~VH}NJtrR*@ zBuYV=gtgIOi-J5$ICA6$ZoBOk-uunp!s^mxPMtc&gAaa@haUPek390*JpcS3aK#(} za}Nnem`!%lNeMYfOH!9%b%yxn)?;3WT&D)muEaR8`N;|5w z3Q+Hv(eVjtXRFfq+PNy;H}NPZdF&#Ev(gG}g*r^ef{bOE$hK-eAJ(fRNy)Qza8z=b za#(xPM+X_i7^<`Yl!;CSx>NE(0xn4M1Oe@xP-|sv(yS#whqV|hIi;MlXcAP+Pk|3P zbYu5t;ayU!Gm_H5nLwA8ph5&ttXs@YShre?@Cj6yN@(D91ptTKx41w}9j%eBvKdLP zU5_#fmk33qQ(nLs6~KQVBf@NDlZz<;YVg#9GB}lyXD!mKLzcJE)=(OYQbmX!vN%

      0yofesNkRI&=l#l9kugA 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 #vh5!=HcXqb!_wLR2$B7ElbC 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℘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

      V&qyqylDQ1#{5th7?$kwr~J(4ur5o#HjoGoW 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 Date: Thu, 10 Oct 2024 02:42:53 +0500 Subject: [PATCH 05/34] =?UTF-8?q?=D0=94=D0=BE=D1=80=D0=B0=D0=B1=D0=BE?= =?UTF-8?q?=D1=82=D0=BA=D0=B0=20=D0=BC=D0=BE=D0=BC=D0=B5=D0=BD=D1=82=D0=BE?= =?UTF-8?q?=D0=B2=20=D0=B2=20=D1=80=D0=B0=D1=81=D0=B0=D1=85=20(#623)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit :cl: - add: Рептилоиды пробудили кровь предков. - add: Добавлен Ня-кцент, мя! - tweak: Изменены сопротивления некоторых рас - tweak: И немного помаленьку, вульпы прожорливее, драски немного светятся, жирные расы имеют больше крови и наоборот. - fix: Кобольды вспомнили что нужно пить и есть... --- .../ADT/prototypes/Body/Organs/Tajaran.ftl | 4 ++ .../ADT/prototypes/Body/Organs/demon.ftl | 6 +- .../ADT/prototypes/Body/Organs/drask.ftl | 7 +- .../ADT/prototypes/Body/Organs/kobalt.ftl | 1 + .../ru-RU/ADT/prototypes/Body/Organs/moth.ftl | 3 + .../ADT/prototypes/Body/Organs/reptilian.ftl | 3 + .../ADT/prototypes/Body/Organs/shadekin.ftl | 9 ++- .../ADT/prototypes/Body/Organs/vulpkanin.ftl | 3 + .../ru-RU/ADT/reagents/meta/biological.ftl | 6 ++ Resources/Locale/ru-RU/ADT/traits/neutral.ftl | 5 +- .../Prototypes/ADT/Body/Organs/Drask.yml | 25 +++++++ .../Prototypes/ADT/Body/Organs/felinid.yml | 7 +- .../Prototypes/ADT/Body/Organs/reptilian.yml | 15 ++++ .../Prototypes/ADT/Body/Organs/shadekin.yml | 35 ++++++++++ Resources/Prototypes/ADT/Body/Parts/Drask.yml | 8 +-- Resources/Prototypes/ADT/Body/Parts/Ursus.yml | 8 +-- .../Prototypes/ADT/Body/Prototypes/kobalt.yml | 2 +- .../ADT/Chemistry/metabolizer_types.yml | 1 + .../Prototypes/ADT/Damage/modifier_sets.yml | 34 ++++++++-- .../ADT/Entities/Mobs/Species/Drask.yml | 40 +++++++---- .../ADT/Entities/Mobs/Species/Tajaran.yml | 28 ++++++-- .../ADT/Entities/Mobs/Species/Ursus.yml | 36 ++++++++-- .../ADT/Entities/Mobs/Species/Vulpkanin.yml | 7 ++ .../ADT/Entities/Mobs/Species/demon.yml | 16 +++-- .../ADT/Entities/Mobs/Species/felinid.yml | 9 +++ .../ADT/Entities/Mobs/Species/ipc.yml | 3 + .../ADT/Entities/Mobs/Species/kobolt.yml | 37 ++++++++++ .../ADT/Entities/Mobs/Species/moth.yml | 5 +- .../ADT/Entities/Mobs/Species/novakid.yml | 48 +++++++------ .../ADT/Entities/Mobs/Species/shadekin.yml | 43 ++++++++++++ .../ADT/Reagents/Consumable/Drink/fill.txt | 1 - .../Prototypes/ADT/Reagents/biological.yml | 68 +++++++++++++++++++ .../Prototypes/ADT/Reagents/medicine.yml | 1 + Resources/Prototypes/ADT/Species/novakid.yml | 5 +- Resources/Prototypes/ADT/Traits/speech.yml | 11 ++- Resources/Prototypes/ADT/ai_factions.yml | 14 +++- Resources/Prototypes/Body/Parts/arachnid.yml | 8 +++ .../Prototypes/Body/Prototypes/reptilian.yml | 2 +- .../Prototypes/Entities/Mobs/NPCs/space.yml | 10 +++ .../Entities/Mobs/Species/arachnid.yml | 3 + .../Entities/Mobs/Species/reptilian.yml | 29 ++++++-- .../Reagents/Consumable/Drink/drinks.yml | 4 +- 42 files changed, 524 insertions(+), 86 deletions(-) create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/moth.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/reptilian.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/vulpkanin.ftl create mode 100644 Resources/Prototypes/ADT/Body/Organs/reptilian.yml delete mode 100644 Resources/Prototypes/ADT/Reagents/Consumable/Drink/fill.txt diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/Tajaran.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/Tajaran.ftl index 05d7161b84f..a03a2e383f7 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/Tajaran.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/Tajaran.ftl @@ -1,2 +1,6 @@ ent-OrganTajaranStomach = { ent-OrganAnimalStomach } .desc = { ent-OrganAnimalStomach.desc } + .suffix = { "Таяр" } +ent-OrganTajaranHeart = сердце таяра + .desc = { ent-OrganAnimalHeart.desc } + .suffix = { "Таяр" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/demon.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/demon.ftl index a216c9d900e..ddf0d434ced 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/demon.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/demon.ftl @@ -1,2 +1,6 @@ ent-OrganDemonStomach = { ent-OrganAnimalStomach } - .desc = { ent-OrganAnimalStomach.desc } + .desc = { ent-OrganAnimalHeart.desc } + .suffix = { "Аркана" } +ent-OrganDemonHeart = сердце арканы + .desc = { ent-OrganAnimalHeart.desc } + .suffix = { "Аркана" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/drask.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/drask.ftl index 63dfb61b328..788e2276b26 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/drask.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/drask.ftl @@ -1,10 +1,15 @@ ent-OrganDraskEyes = глаза .desc = Я тебя вижу! + .suffix = { "Драск" } ent-OrganDraskLungs = лёгкие .desc = Фильтрует кислород из атмосферы, который затем поступает в кровь для использования в качестве переносчика электронов. -ent-OrganDraskHeart = сердце + .suffix = { "Драск" } +ent-OrganDraskHeart = сердце драска .desc = Мне жаль того бессердечного ублюдка, который его потерял. + .suffix = { "Драск" } ent-OrganDraskInnards = внутренности .desc = Мерзость. + .suffix = { "Драск" } ent-OrganDraskKidneys = почки .desc = Выводят токсины из кровеносной системы. + .suffix = { "Драск" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/kobalt.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/kobalt.ftl index c77297f6307..cf9bb301fbf 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/kobalt.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/kobalt.ftl @@ -1,2 +1,3 @@ ent-OrganKoboltStomach = { ent-OrganAnimalStomach } .desc = { ent-OrganAnimalStomach.desc } + .suffix = { "Кобольд" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/moth.ftl new file mode 100644 index 00000000000..c36657f5b18 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/moth.ftl @@ -0,0 +1,3 @@ +ent-OrganMothHeart = сердце ниана + .desc = { ent-OrganAnimalHeart.desc } + .suffix = { "Ниан" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/reptilian.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/reptilian.ftl new file mode 100644 index 00000000000..31a95a8d190 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/reptilian.ftl @@ -0,0 +1,3 @@ +ent-ADTOrganReptilianHeart = сердце рептилоида + .desc = { ent-OrganAnimalHeart.desc } + .suffix = { "Унатх" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/shadekin.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/shadekin.ftl index 40a01c53572..4543b800d75 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/shadekin.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/shadekin.ftl @@ -1,14 +1,21 @@ -ent-ADTOrganShadekinHeart = сердце +ent-ADTOrganShadekinHeart = сердце сумеречника .desc = Сердце? Кажется что оно лежит здесь уже не первый день. + .suffix = { "Сумеречник" } ent-ADTOrganShadekinStomach = желудок .desc = Выглядит будто он меньше чем обычно.. + .suffix = { "Сумеречник" } ent-ADTOrganShadekinLungs = воздушный мешочек .desc = И это лёгкие? Больше похоже на шутку. + .suffix = { "Сумеречник" } ent-ADTOrganShadekinEyes = глаза .desc = Разве они не были другого цвета?.. + .suffix = { "Сумеречник" } ent-ADTOrganShadekinKidneys = почки .desc = Кто-то точно не следил за тем что он ест. + .suffix = { "Сумеречник" } ent-ADTOrganShadekinBrain = мозги .desc = А если его съесть, то я смогу так же как они? + .suffix = { "Сумеречник" } ent-ADTOrganShadekinLiver = печень .desc = Интересно, за сколько же его можно продать... + .suffix = { "Сумеречник" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/vulpkanin.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/vulpkanin.ftl new file mode 100644 index 00000000000..dbce7d8777e --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/vulpkanin.ftl @@ -0,0 +1,3 @@ +ent-OrganVulpkaninHeart = сердце вульпканина + .desc = { ent-OrganAnimalHeart.desc } + .suffix = { "Вульпа" } diff --git a/Resources/Locale/ru-RU/ADT/reagents/meta/biological.ftl b/Resources/Locale/ru-RU/ADT/reagents/meta/biological.ftl index 289e4d89993..d229dbb1d31 100644 --- a/Resources/Locale/ru-RU/ADT/reagents/meta/biological.ftl +++ b/Resources/Locale/ru-RU/ADT/reagents/meta/biological.ftl @@ -1,2 +1,8 @@ reagent-name-shadekin-blood = фиолетовая кровь reagent-desc-shadekin-blood = Я надеюсь, что ботаники просто раздавили блюспейс помидор. + +reagent-name-zessul-blood = кровь Зессул +reagent-desc-zessul-blood = Компонент крови представителей расы Унатхов + +reagent-name-corelander-blood = Коурова кровь +reagent-desc-corelander-blood = Принадлежит представителям расы Кобольдов. diff --git a/Resources/Locale/ru-RU/ADT/traits/neutral.ftl b/Resources/Locale/ru-RU/ADT/traits/neutral.ftl index dc3c5535235..fce38ef45da 100644 --- a/Resources/Locale/ru-RU/ADT/traits/neutral.ftl +++ b/Resources/Locale/ru-RU/ADT/traits/neutral.ftl @@ -5,7 +5,10 @@ trait-shitcure-name = Тенкодовый акцент trait-shitcure-desc = Вы настолько долго работали в службе безопасности, что тенкодовая таблица стала вам слишком родной. trait-moth-accent-name = Жужащий акцент -trait-moth-accent-desc = Вам либо нравятся моли, либо вы ботаник +trait-moth-accent-desc = Вам либо нравятся моли, либо вы ботаник. + +trait-nya-accent-name = Ня-кцент +trait-nya-accent-desc = Кажется на вас нашло мя-гкое голово-мррр-ужение. trait-tall-name = Высокий trait-tall-desc = Вы слегка выше других представителей своего вида. diff --git a/Resources/Prototypes/ADT/Body/Organs/Drask.yml b/Resources/Prototypes/ADT/Body/Organs/Drask.yml index f896a8db663..7ac317eaf69 100644 --- a/Resources/Prototypes/ADT/Body/Organs/Drask.yml +++ b/Resources/Prototypes/ADT/Body/Organs/Drask.yml @@ -8,6 +8,11 @@ - type: Sprite sprite: ADT/Mobs/Species/Drask/organs.rsi state: eyes + - type: Tag # goob edit + tags: + - Meat + - Organ + - Eyes - type: entity id: OrganDraskLungs @@ -42,6 +47,11 @@ reagents: - ReagentId: UncookedAnimalProteins Quantity: 5 + - type: Tag # goob edit + tags: + - Meat + - Organ + - Lungs - type: entity id: OrganDraskHeart @@ -60,6 +70,11 @@ - id: Medicine - id: Poison - id: Narcotic + - type: Tag # goob edit + tags: + - Meat + - Organ + - Heart - type: entity id: OrganDraskInnards @@ -87,6 +102,11 @@ groups: - id: Food - id: Drink + - type: Tag # goob edit + tags: + - Meat + - Organ + - Stomach - type: entity id: OrganDraskKidneys @@ -101,4 +121,9 @@ maxReagents: 1 metabolizerTypes: [ Drask ] removeEmpty: true + - type: Tag # goob edit + tags: + - Meat + - Organ + - Kidneys diff --git a/Resources/Prototypes/ADT/Body/Organs/felinid.yml b/Resources/Prototypes/ADT/Body/Organs/felinid.yml index fe5e87d1b7b..9aa25e88473 100644 --- a/Resources/Prototypes/ADT/Body/Organs/felinid.yml +++ b/Resources/Prototypes/ADT/Body/Organs/felinid.yml @@ -10,4 +10,9 @@ groups: - id: Medicine - id: Poison - - id: Narcotic \ No newline at end of file + - id: Narcotic + - type: Tag # goob edit + tags: + - Meat + - Organ + - Heart diff --git a/Resources/Prototypes/ADT/Body/Organs/reptilian.yml b/Resources/Prototypes/ADT/Body/Organs/reptilian.yml new file mode 100644 index 00000000000..7b426977352 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Organs/reptilian.yml @@ -0,0 +1,15 @@ +- type: entity + id: ADTOrganReptilianHeart + parent: BaseAnimalOrgan + name: heart + categories: [ HideSpawnMenu ] + components: + - type: Sprite + state: heart-on + - type: Metabolizer + maxReagents: 2 + metabolizerTypes: [ Reptilian, Animal ] + groups: + - id: Medicine + - id: Poison + - id: Narcotic diff --git a/Resources/Prototypes/ADT/Body/Organs/shadekin.yml b/Resources/Prototypes/ADT/Body/Organs/shadekin.yml index 156ba0229d8..039c01e030f 100644 --- a/Resources/Prototypes/ADT/Body/Organs/shadekin.yml +++ b/Resources/Prototypes/ADT/Body/Organs/shadekin.yml @@ -27,6 +27,11 @@ reagents: - ReagentId: UncookedAnimalProteins Quantity: 5 + - type: Tag # goob edit + tags: + - Meat + - Organ + - Lungs - type: entity id: ADTOrganShadekinBrain @@ -51,6 +56,11 @@ - type: FlavorProfile flavors: - people + - type: Tag # goob edit + tags: + - Meat + - Organ + - Brain - type: entity id: ADTOrganShadekinStomach @@ -78,6 +88,11 @@ groups: - id: Food - id: Drink + - type: Tag # goob edit + tags: + - Meat + - Organ + - Stomach - type: entity id: ADTOrganShadekinLiver @@ -95,6 +110,11 @@ groups: - id: Alcohol rateModifier: 0.1 + - type: Tag # goob edit + tags: + - Meat + - Organ + - Liver - type: entity id: ADTOrganShadekinHeart @@ -113,6 +133,11 @@ - id: Medicine - id: Poison - id: Narcotic + - type: Tag # goob edit + tags: + - Meat + - Organ + - Heart - type: entity id: ADTOrganShadekinKidneys @@ -130,6 +155,11 @@ maxReagents: 5 metabolizerTypes: [ Shadekin ] removeEmpty: true + - type: Tag # goob edit + tags: + - Meat + - Organ + - Kidneys - type: entity id: ADTOrganShadekinEyes @@ -142,3 +172,8 @@ layers: - state: eyeball-l - state: eyeball-r + - type: Tag # goob edit + tags: + - Meat + - Organ + - Eyes diff --git a/Resources/Prototypes/ADT/Body/Parts/Drask.yml b/Resources/Prototypes/ADT/Body/Parts/Drask.yml index d6c7ef319be..1494dabfffd 100644 --- a/Resources/Prototypes/ADT/Body/Parts/Drask.yml +++ b/Resources/Prototypes/ADT/Body/Parts/Drask.yml @@ -135,8 +135,8 @@ partType: Leg symmetry: Left - type: MovementBodyPart - walkSpeed : 2.5 - sprintSpeed : 4.5 + walkSpeed : 2.3 + sprintSpeed : 4.3 - type: entity id: RightLegDrask @@ -154,8 +154,8 @@ partType: Leg symmetry: Right - type: MovementBodyPart - walkSpeed : 2.5 - sprintSpeed : 4.5 + walkSpeed : 2.3 + sprintSpeed : 4.3 - type: entity id: LeftFootDrask diff --git a/Resources/Prototypes/ADT/Body/Parts/Ursus.yml b/Resources/Prototypes/ADT/Body/Parts/Ursus.yml index 2d9c745885e..e75141d3022 100644 --- a/Resources/Prototypes/ADT/Body/Parts/Ursus.yml +++ b/Resources/Prototypes/ADT/Body/Parts/Ursus.yml @@ -135,8 +135,8 @@ partType: Leg symmetry: Left - type: MovementBodyPart - walkSpeed: 2.7 - sprintSpeed: 4.6 + walkSpeed: 2.4 + sprintSpeed: 4.3 - type: entity id: RightLegUrsus @@ -154,8 +154,8 @@ partType: Leg symmetry: Right - type: MovementBodyPart - walkSpeed: 2.7 - sprintSpeed: 4.6 + walkSpeed: 2.4 + sprintSpeed: 4.3 - type: entity id: LeftFootUrsus diff --git a/Resources/Prototypes/ADT/Body/Prototypes/kobalt.yml b/Resources/Prototypes/ADT/Body/Prototypes/kobalt.yml index d15716b6c1a..defd03fc94b 100644 --- a/Resources/Prototypes/ADT/Body/Prototypes/kobalt.yml +++ b/Resources/Prototypes/ADT/Body/Prototypes/kobalt.yml @@ -13,7 +13,7 @@ torso: part: TorsoKobolt organs: - heart: OrganAnimalHeart #как у reptilian + heart: ADTOrganReptilianHeart #как у reptilian lungs: OrganHumanLungs #как у reptilian stomach: OrganKoboltStomach liver: OrganAnimalLiver #как у reptilian diff --git a/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml b/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml index 391e5e82475..86d7fce29b4 100644 --- a/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml +++ b/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml @@ -84,3 +84,4 @@ - type: metabolizerType id: Shadekin name: metabolizer-type-shadekin + diff --git a/Resources/Prototypes/ADT/Damage/modifier_sets.yml b/Resources/Prototypes/ADT/Damage/modifier_sets.yml index e161b41a6cb..073034054ff 100644 --- a/Resources/Prototypes/ADT/Damage/modifier_sets.yml +++ b/Resources/Prototypes/ADT/Damage/modifier_sets.yml @@ -51,12 +51,38 @@ Poison: 1 Cellular: 1 +- type: damageModifierSet + id: ADTNovakid # новакиж + coefficients: + Blunt: 0.85 + Piercing: 1.15 + Slash: 1.15 + Shock: 0.8 + Cold: 1.65 + Heat: 0.55 + Poison: 0.5 + Radiation: 0.8 + Cellular: 0.8 + +- type: damageModifierSet + id: ADTArachnid # пааук + coefficients: + Blunt: 0.9 + Piercing: 0.95 + Slash: 1.15 + Cold: 1.2 + Heat: 1 + Poison: 0.65 + Radiation: 1 + Cellular: 1 + - type: damageModifierSet id: Drask # большие и хп больше + лечение, но медленнее и слабость к жаре coefficients: - Blunt: 1.1 + Blunt: 1.05 Piercing: 0.85 - Slash: 1.05 + Slash: 0.9 + Cold: 0.5 Heat: 1.5 Asphyxiation: 2.0 @@ -120,9 +146,9 @@ - type: damageModifierSet id: Ursus # что то типо медленных танков, но слабы к проникающим. coefficients: - Blunt: 0.9 + Blunt: 0.85 Slash: 0.8 - Piercing: 1.15 + Piercing: 1.1 Heat: 1.1 - type: damageModifierSet diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml index 880232e7a25..46e282f47fe 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Drask.yml @@ -9,19 +9,10 @@ - type: Sprite scale: 1.07, 1.07 - type: Hunger - starvationDamage: - types: - Cold: 0.05 - Bloodloss: 0.05 + - type: Thirst - type: Icon sprite: ADT/Mobs/Species/Drask/parts.rsi state: full - - type: Thirst - - type: Butcherable - butcheringType: Spike - spawned: - - id: FoodMeatHuman - amount: 5 - type: MobThresholds thresholds: 0: Alive @@ -31,15 +22,19 @@ damage: types: Blunt: 0.8 + - type: PointLight + color: "#4682B4FF" + energy: 1 + radius: 1.2 - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute. allowedStates: - Alive - damageCap: 20 + damageCap: 25 damage: types: - Heat: -0.05 + Heat: -0.08 groups: - Brute: -0.05 + Brute: -0.06 - type: Body prototype: Drask requiredLegs: 2 @@ -52,9 +47,10 @@ types: Blunt: 10 - type: Bloodstream + bloodMaxVolume: 250 bloodReagent: Cryoxadone - type: MovementSpeedModifier - baseWalkSpeed: 2.3 + baseWalkSpeed : 2.3 baseSprintSpeed : 4.3 - type: Temperature heatDamageThreshold: 330 @@ -74,8 +70,24 @@ 160: 0.8 140: 0.6 100: 0.4 + - type: SlowOnDamage + speedModifierThresholds: + 62: 0.85 + 84: 0.65 - type: ThermalRegulator normalBodyTemperature: 273.15 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 225 # bigger density + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer - type: DamageVisuals damageOverlayGroups: Brute: diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml index 3da087d87ce..fd28e038444 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml @@ -10,6 +10,11 @@ - type: Body prototype: Tajaran requiredLegs: 2 + - type: MobThresholds + thresholds: + 0: Alive + 80: Critical + 200: Dead - type: RoarAccent - type: Hunger - type: Thirst @@ -29,7 +34,7 @@ types: Piercing: 5 - type: Temperature - heatDamageThreshold: 400 + heatDamageThreshold: 325 coldDamageThreshold: 240 currentTemperature: 310.15 specificHeat: 46 @@ -42,16 +47,27 @@ - type: MovementSpeedModifier baseWalkSpeed : 2.7 baseSprintSpeed : 4.6 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 145 #lower density + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: SlowOnDamage + speedModifierThresholds: + 42: 0.85 + 60: 0.65 - type: TemperatureSpeed thresholds: 273: 0.8 260: 0.6 240: 0.4 - - type: MobThresholds - thresholds: - 0: Alive - 80: Critical - 200: Dead - type: Sprite netsync: false noRot: true diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Ursus.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Ursus.yml index 66e30f414d3..9691c8710eb 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/Ursus.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Ursus.yml @@ -6,17 +6,25 @@ components: - type: HumanoidAppearance species: UrsusSpecies + - type: NpcFactionMember + factions: + - Ursus - type: MobThresholds thresholds: 0: Alive 115: Critical 250: Dead + - type: Bloodstream + bloodMaxVolume: 235 + bloodReagent: Blood - type: Hunger - starvationDamage: - types: - Cold: 0.05 - Bloodloss: 0.05 baseDecayRate: 0.0983 + thresholds: + Overfed: 300 + Okay: 250 + Peckish: 175 + Starving: 125 + Dead: 0 - type: Thirst #baseDecayRate: 0.0083 - type: Icon @@ -41,7 +49,7 @@ drawdepth: Mobs scale: 1.03, 1.03 - type: MovementSpeedModifier - baseWalkSpeed: 2.4 + baseWalkSpeed : 2.4 baseSprintSpeed : 4.3 - type: DamageOnHighSpeedImpact damage: @@ -57,6 +65,18 @@ 32: sprite: Mobs/Species/Human/displacement.rsi state: jumpsuit-female + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 250 # bigger density + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer - type: Damageable damageContainer: Biological damageModifierSet: Ursus @@ -88,6 +108,10 @@ 283: 0.8 265: 0.6 250: 0.4 + - type: SlowOnDamage + speedModifierThresholds: + 64: 0.85 + 86: 0.65 - type: InteractionPopup successChance: 1 interactSuccessString: hugging-success-generic @@ -96,8 +120,10 @@ - type: SizeAttributeWhitelist # Frontier tall: true tallscale: 1.12 + tallDensity: 1.5 short: true shortscale: 0.98 + shortDensity: 0.7 - type: entity save: false diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml index adf85022434..3ba74a1475f 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Vulpkanin.yml @@ -6,6 +6,13 @@ abstract: true components: - type: Hunger + baseDecayRate: 0.045 + thresholds: + Overfed: 225 + Okay: 175 + Peckish: 125 + Starving: 75 + Dead: 0 - type: Thirst - type: Speech speechSounds: Vulpa diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml index f03549b778d..7e07e9abf53 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/demon.yml @@ -40,24 +40,26 @@ Slash: 2 Piercing: 3 - type: Temperature - heatDamageThreshold: 400 - coldDamageThreshold: 193 #starting temperature damage treshold + heatDamageThreshold: 363 + coldDamageThreshold: 250 #starting temperature damage treshold currentTemperature: 310.15 specificHeat: 46 coldDamage: types: - Cold : 0.1 #per second, scales with temperature & other constants + Cold : 0.2 #per second, scales with temperature & other constants heatDamage: types: - Heat : 0.3 #per second, scales with temperature & other constants + Heat : 0.1 #per second, scales with temperature & other constants + - type: TemperatureSpeed + thresholds: + 285: 0.8 + 268: 0.6 + 250: 0.4 - type: InteractionPopup successChance: 1 interactSuccessString: hugging-success-generic interactSuccessSound: /Audio/Effects/thudswoosh.ogg messagePerceivedByOthers: hugging-success-generic-others - - type: MovementSpeedModifier - baseWalkSpeed : 2.5 - baseSprintSpeed : 4.5 - type: LanguageSpeaker speaks: - GalacticCommon diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/felinid.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/felinid.yml index 168e61e8dbc..0bc3079d9d5 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/felinid.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/felinid.yml @@ -7,6 +7,8 @@ components: - type: HumanoidAppearance species: Felinid + - type: Hunger + - type: Thirst - type: Respirator damage: types: @@ -121,8 +123,15 @@ - type: MovementSpeedModifier baseWalkSpeed : 2.6 baseSprintSpeed : 4.6 + - type: SlowOnDamage + speedModifierThresholds: + 48: 0.85 + 64: 0.65 - type: Body prototype: Felinid + - type: Bloodstream + bloodMaxVolume: 170 + bloodReagent: Blood - type: Damageable damageContainer: Biological damageModifierSet: Felinid diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/ipc.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/ipc.yml index da42db2056a..24be7d68c29 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/ipc.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/ipc.yml @@ -30,6 +30,9 @@ Critical: BorgCrit Dead: BorgDead allowRevives: true # Для воскрешения достаточно починить урон. - ss220. + - type: NpcFactionMember + factions: + - NanoTrasen - type: TypingIndicator proto: robot - type: Destructible diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/kobolt.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/kobolt.yml index 8032cf06a6d..0382e1e7f23 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/kobolt.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/kobolt.yml @@ -7,6 +7,8 @@ components: - type: HumanoidAppearance species: KoboltSpecies + - type: Hunger + - type: Thirst - type: Icon # sprite: Mobs/Species/Reptilian/parts.rsi state: full @@ -18,6 +20,24 @@ - type: Body prototype: Kobolt requiredLegs: 2 + - type: MobThresholds + thresholds: + 0: Alive + 85: Critical + 180: Dead + - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute. + allowedStates: + - Alive + damageCap: 20 + damage: + types: + Heat: -0.04 + Cold: -0.04 + groups: + Brute: -0.08 + - type: Bloodstream + bloodMaxVolume: 175 + bloodReagent: ADTCorelanderBlood # - type: DiseaseCarrier непонятная недобавленная херня # diseaseResist: 0.1 - type: MeleeWeapon @@ -40,6 +60,23 @@ heatDamage: types: Heat : 0.1 #per second, scales with temperature & other constants + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 140 #lower density + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: TemperatureSpeed + thresholds: + 283: 0.8 + 260: 0.6 + 230: 0.4 - type: MovementSpeedModifier baseWalkSpeed : 2.7 baseSprintSpeed : 4.5 diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml index 03bd61e99dc..44faad9cdec 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml @@ -8,10 +8,6 @@ - type: HumanoidAppearance species: Moth - type: Hunger - starvationDamage: - types: - Cold: 0.05 - Bloodloss: 0.05 - type: Thirst - type: Icon sprite: ADT/Mobs/Species/Moth/parts.rsi @@ -35,6 +31,7 @@ - id: FoodMeat amount: 5 - type: Bloodstream + bloodMaxVolume: 190 bloodReagent: InsectBlood - type: DamageVisuals damageOverlayGroups: diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/novakid.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/novakid.yml index 91a8a61946d..41b9e1ae167 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/novakid.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/novakid.yml @@ -20,6 +20,26 @@ types: Cold: 0.12 Caustic: 0.08 + - type: Damageable + damageContainer: Biological + damageModifierSet: ADTNovakid + - type: MobThresholds + thresholds: + 0: Alive + 100: Critical + 300: Dead + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + Ash: + min: 3 + max: 6 + - !type:BurnBodyBehavior { } - type: Respirator damage: types: @@ -28,6 +48,7 @@ types: Asphyxiation: -0.5 - type: Bloodstream + bloodMaxVolume: 300 bloodReagent: Plasma - type: ZombieImmune - type: NovakidGlowing # see NovakidFeaturesSystem.cs @@ -51,9 +72,6 @@ Male: MaleNovakid Female: FemaleNovakid Unsexed: UnisexNovakid - - type: Damageable - damageContainer: Biological - damageModifierSet: Demon # Потому что. Я зол, эта штука ломала мне мозг на протяжении двух часов, пока я искал ошибку >:c - type: MeleeWeapon hidden: true soundHit: @@ -74,6 +92,11 @@ heatDamage: types: Heat : 0.2 #per second, scales with temperature & other constants. + - type: TemperatureSpeed + thresholds: + 273: 0.8 + 263: 0.6 + 250: 0.4 - type: FlashImmunity - type: EyeProtection - type: MovementSpeedModifier @@ -99,29 +122,12 @@ scaleByQuantity: true damage: types: - Heat: 0.3 # Повышенный дамаг от водички и моющего средства. Пшик-пшик + Сold: 0.12 # Повышенный дамаг от водички и моющего средства. Пшик-пшик - !type:PopupMessage type: Local visualType: Large messages: [ "novakid-hurt-by-water-popup" ] probability: 0.25 - - type: MobThresholds - thresholds: - 0: Alive - 100: Critical - 300: Dead - - type: Destructible - thresholds: - - trigger: - !type:DamageTrigger - damage: 300 - behaviors: - - !type:SpawnEntitiesBehavior - spawn: - Ash: - min: 3 - max: 6 - - !type:BurnBodyBehavior { } - type: InteractionPopup successChance: 1 interactSuccessString: hugging-success-generic diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml index f54772ddea5..1325973b9ab 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml @@ -41,6 +41,7 @@ types: Blunt: 1 # В секунду. - type: Bloodstream + bloodMaxVolume: 180 bloodReagent: ShadekinBlood bloodlossDamage: types: @@ -88,6 +89,48 @@ Asphyxiation: 0.0 - type: Sprite scale: 0.95, 0.95 + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + shader: unshaded + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - map: ["jumpsuit"] + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: ["enum.HumanoidVisualLayers.Handcuffs"] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false - type: MeleeWeapon soundHit: collection: Punch diff --git a/Resources/Prototypes/ADT/Reagents/Consumable/Drink/fill.txt b/Resources/Prototypes/ADT/Reagents/Consumable/Drink/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Reagents/Consumable/Drink/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Reagents/biological.yml b/Resources/Prototypes/ADT/Reagents/biological.yml index 486fe2bec57..d868173ccfe 100644 --- a/Resources/Prototypes/ADT/Reagents/biological.yml +++ b/Resources/Prototypes/ADT/Reagents/biological.yml @@ -10,3 +10,71 @@ recognizable: true physicalDesc: reagent-physical-desc-ferrous slippery: false + +# Кровь унатхов + +- type: reagent + id: ADTZessulsBlood + name: reagent-name-zessul-blood + group: Medicine + desc: reagent-desc-zessul-blood + physicalDesc: reagent-physical-desc-pungent + flavor: metallic + color: "#800000" + metabolisms: + Medicine: + metabolismRate: 0.25 + effects: + - !type:HealthChange + conditions: + - !type:OrganType + type: Reptilian + shouldHave: false + damage: + groups: + Brute: -0.2 + types: + Cold: -0.2 + Poison: 0.4 + - !type:AdjustTemperature + conditions: + - !type:OrganType + type: Reptilian + shouldHave: false + - !type:Temperature + max: 370 + amount: 10000 # thermal energy, not temperature! + +# Кровь полукровок (кобольды) + +- type: reagent + id: ADTCorelanderBlood + name: reagent-name-corelander-blood + group: Medicine + desc: reagent-desc-corelander-blood + physicalDesc: reagent-physical-desc-viscous + flavor: metallic + color: "#800000" + metabolisms: + Medicine: + metabolismRate: 0.5 + effects: + - !type:HealthChange + conditions: + - !type:OrganType + type: Reptilian + shouldHave: false + damage: + groups: + Brute: -0.4 + types: + Cold: -0.15 + Poison: 0.6 + - !type:AdjustTemperature + conditions: + - !type:OrganType + type: Reptilian + shouldHave: false + - !type:GenericStatusEffect + key: Stutter + component: StutteringAccent diff --git a/Resources/Prototypes/ADT/Reagents/medicine.yml b/Resources/Prototypes/ADT/Reagents/medicine.yml index 64b82315e89..d4f5faee2a3 100644 --- a/Resources/Prototypes/ADT/Reagents/medicine.yml +++ b/Resources/Prototypes/ADT/Reagents/medicine.yml @@ -508,3 +508,4 @@ Radiation: -2 Slash: 0.4 Piercing: 0.8 + diff --git a/Resources/Prototypes/ADT/Species/novakid.yml b/Resources/Prototypes/ADT/Species/novakid.yml index 3c26ebdc730..92995a86132 100644 --- a/Resources/Prototypes/ADT/Species/novakid.yml +++ b/Resources/Prototypes/ADT/Species/novakid.yml @@ -18,7 +18,7 @@ id: MobNovakidSprites sprites: Head: MobNovakidHead - Hair: MobHumanoidAnyMarking + Hair: MobNovakidAnyMarkingFollowSkin HeadTop: MobHumanoidAnyMarking HeadSide: MobHumanoidAnyMarking Snout: MobHumanoidAnyMarking @@ -67,6 +67,9 @@ points: 2 required: false +- type: humanoidBaseSprite + id: MobNovakidAnyMarkingFollowSkin + markingsMatchSkin: true - type: humanoidBaseSprite id: MobNovakidHead diff --git a/Resources/Prototypes/ADT/Traits/speech.yml b/Resources/Prototypes/ADT/Traits/speech.yml index b8afc45dc29..4be2c039730 100644 --- a/Resources/Prototypes/ADT/Traits/speech.yml +++ b/Resources/Prototypes/ADT/Traits/speech.yml @@ -7,9 +7,18 @@ components: - type: MothAccent +- type: trait + id: ADTNyaAccent + name: trait-nya-accent-name + description: trait-nya-accent-desc + category: SpeechTraits + cost: 2 + components: + - type: NyaAccent + # Визарды добавили свой немецкий язык # - type: trait -# id: ADTDeutscAccent +# id: ADTDeutscAccent # name: trait-deutsch-name # description: trait-deutsch-desc # category: SpeechTraits diff --git a/Resources/Prototypes/ADT/ai_factions.yml b/Resources/Prototypes/ADT/ai_factions.yml index 146ede980dd..a48441fe1d1 100644 --- a/Resources/Prototypes/ADT/ai_factions.yml +++ b/Resources/Prototypes/ADT/ai_factions.yml @@ -1,10 +1,22 @@ - type: npcFaction id: Ursus hostile: + - SimpleHostile - Syndicate - Xeno - Zombie - Revolutionary + - DroneAntag + +- type: npcFaction + id: ADTSpaceMobs + hostile: + - NanoTrasen + - Syndicate + - Passive + - PetsNT + - Zombie + - Revolutionary - type: npcFaction id: DroneAntag @@ -30,4 +42,4 @@ - Xeno - Zombie - Dragon - - DroneAntag \ No newline at end of file + - DroneAntag diff --git a/Resources/Prototypes/Body/Parts/arachnid.yml b/Resources/Prototypes/Body/Parts/arachnid.yml index d275bd91c63..4cd9d92001b 100644 --- a/Resources/Prototypes/Body/Parts/arachnid.yml +++ b/Resources/Prototypes/Body/Parts/arachnid.yml @@ -90,7 +90,11 @@ - type: Sprite sprite: Mobs/Species/Arachnid/parts.rsi state: "l_leg" + # Start ADT tweak - type: MovementBodyPart + walkSpeed : 2.5 + sprintSpeed : 4.4 + # End ADT tweak - type: entity id: RightLegArachnid @@ -100,7 +104,11 @@ - type: Sprite sprite: Mobs/Species/Arachnid/parts.rsi state: "r_leg" + # Start ADT tweak - type: MovementBodyPart + walkSpeed : 2.5 + sprintSpeed : 4.4 + # End ADT tweak - type: entity id: LeftFootArachnid diff --git a/Resources/Prototypes/Body/Prototypes/reptilian.yml b/Resources/Prototypes/Body/Prototypes/reptilian.yml index 1e9ebd54a48..2039dc83e72 100644 --- a/Resources/Prototypes/Body/Prototypes/reptilian.yml +++ b/Resources/Prototypes/Body/Prototypes/reptilian.yml @@ -13,7 +13,7 @@ torso: part: TorsoReptilian organs: - heart: OrganAnimalHeart + heart: ADTOrganReptilianHeart # ADT tweak lungs: OrganHumanLungs stomach: OrganReptilianStomach liver: OrganAnimalLiver diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index 737f2ed1343..4f5e02b9723 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -83,6 +83,11 @@ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] state: glow shader: unshaded + # Start ADT tweak + - type: NpcFactionMember + factions: + - ADTSpaceMobs + # End ADT tweak - type: DamageStateVisuals states: Alive: @@ -133,6 +138,11 @@ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] state: glow shader: unshaded + # Start ADT tweak + - type: NpcFactionMember + factions: + - ADTSpaceMobs + # End ADT tweak - type: MeleeWeapon soundHit: path: /Audio/Weapons/Xeno/alien_claw_flesh3.ogg diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index f2b788fe984..f39ab14c474 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -45,6 +45,9 @@ - type: MovementSpeedModifier baseWalkSpeed: 2.5 baseSprintSpeed : 4.4 + - type: Damageable + damageContainer: Biological + damageModifierSet: ADTArachnid # End ADT tweak # Damage (Self) - type: Bloodstream diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 4f44ac8c534..028dfe40a38 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -15,10 +15,6 @@ - type: Puller needsHands: false - type: Thirst - # Start ADT tweak - - type: Sprite - scale: 1.05, 1.05 - # End ADT tweak - type: Icon sprite: Mobs/Species/Reptilian/parts.rsi state: full @@ -87,6 +83,31 @@ - Draconic - CintaTaj #Start ADT tweak + - type: PassiveDamage # Slight passive regen. Assuming one damage type, comes out to about 4 damage a minute. + allowedStates: + - Alive + damageCap: 45 + damage: + types: + Cold: -0.06 + groups: + Brute: -0.08 + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 215 #weighs more than humans + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: Sprite + scale: 1.05, 1.05 + - type: Bloodstream + bloodReagent: ADTZessulsBlood - type: InjectorsBlocker - type: SizeAttributeWhitelist # Frontier tall: true diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml index 9deddadf9a2..76b88b77f27 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/drinks.yml @@ -454,7 +454,7 @@ ignoreResistances: true damage: types: - Heat: 1.5 + Cold: 1.3 conditions: - !type:OrganType type: Novakid @@ -465,7 +465,7 @@ scaleByQuantity: true damage: types: - Heat: 2 #Данный урон обусловлен тем, что есть такая вещь как регенерация, и челик очень плохо убивается. Возможны правки + Cold: 1.2 #Данный урон обусловлен тем, что есть такая вещь как регенерация, и челик очень плохо убивается. Возможны правки conditions: - !type:OrganType type: Novakid From 2e9c47259e3a358659075f9e20eceb48f79f5d4c Mon Sep 17 00:00:00 2001 From: Kasey <143746353+BitBoxxxer@users.noreply.github.com> Date: Thu, 10 Oct 2024 11:02:06 +0500 Subject: [PATCH 06/34] =?UTF-8?q?=D0=94=D0=B0=D0=B9=D1=82=D0=B5=20=D1=83?= =?UTF-8?q?=D0=B6=D0=B5=20loadout-=D1=83=20=D0=B1=D1=80=D0=B8=D0=B3=D0=BC?= =?UTF-8?q?=D0=B5=D0=B4=D0=B8=D0=BAa=20=D0=B6=D0=B8=D1=82=D1=8C=20=20(#624?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit О боже больше без тупых правок ## Описание PR role_loadouts - id бригмедика ## Почему / Баланс тупая правка на изменение имени loadout не дает работать loadout бригмедика, с этим изменением все работает (проверялось на локалке) ![Screenshot_25](https://github.com/user-attachments/assets/ad605116-c032-47d6-bf8a-0667f379b576) no cl, no fun --- Resources/Prototypes/ADT/Loadouts/role_loadouts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml index 65633c6f33f..0c05b4d5c62 100644 --- a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml @@ -118,7 +118,7 @@ # brigmedic - type: roleLoadout - id: job-name-brigmedic + id: JobBrigmedic groups: - Inventory # Corvax-Loadouts - GroupTankHarness From eef1757cb3bb1b25175bb8d295afd2b76f1dc3cc Mon Sep 17 00:00:00 2001 From: PyotrIgn <131798882+PyotrIgn@users.noreply.github.com> Date: Thu, 10 Oct 2024 16:24:02 +0400 Subject: [PATCH 07/34] =?UTF-8?q?=D1=81=D0=BF=D0=BE=D0=BD=D1=81=D0=BE?= =?UTF-8?q?=D1=80=D0=BA=D0=B8=D0=B5=20=D0=B2=D0=B5=D1=89=D0=B8=20=D0=A3?= =?UTF-8?q?=D0=BC=D1=8B=20(#628)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Добавил спонсорские вещи Умы ## Почему / Баланс Мне заплатили, ничего личного :cl: - add: Добавлены спонсорские вещи одного из жертвователей. --------- Co-authored-by: PyotrIgn --- .../Locale/ru-RU/ADT/personalization.ftl | 15 +++ .../Structures/Wallmount/Signs/posters.ftl | 26 +++++- .../Clothing/personalization_clothing.yml | 33 +++++++ .../Objects/personalization_items.yml | 17 ++++ .../Structures/Wallmount/Signs/posters.yml | 62 ++++++++++++ .../Markers/Spawners/Random/posters.yml | 6 ++ .../uma_armor.rsi/equipped-OUTERCLOTHING.png | Bin 0 -> 750 bytes .../Personalization/uma_armor.rsi/icon.png | Bin 0 -> 352 bytes .../uma_armor.rsi/inhand-left.png | Bin 0 -> 483 bytes .../uma_armor.rsi/inhand-right.png | Bin 0 -> 498 bytes .../Personalization/uma_armor.rsi/meta.json | 26 ++++++ .../uma_choker.rsi/equipped-NECK.png | Bin 0 -> 482 bytes .../Personalization/uma_choker.rsi/icon.png | Bin 0 -> 497 bytes .../Personalization/uma_choker.rsi/meta.json | 18 ++++ .../Personalization/uma_pistol.rsi/base.png | Bin 0 -> 692 bytes .../uma_pistol.rsi/bolt-open.png | Bin 0 -> 719 bytes .../uma_pistol.rsi/equipped-BELT.png | Bin 0 -> 217 bytes .../uma_pistol.rsi/equipped-SUITSTORAGE.png | Bin 0 -> 217 bytes .../Personalization/uma_pistol.rsi/icon.png | Bin 0 -> 726 bytes .../uma_pistol.rsi/inhand-left.png | Bin 0 -> 855 bytes .../uma_pistol.rsi/inhand-right.png | Bin 0 -> 852 bytes .../Personalization/uma_pistol.rsi/mag-0.png | Bin 0 -> 172 bytes .../Personalization/uma_pistol.rsi/meta.json | 39 ++++++++ .../equipped-INNERCLOTHING.png | Bin 0 -> 913 bytes .../uma_sport_clothing.rsi/icon.png | Bin 0 -> 466 bytes .../uma_sport_clothing.rsi/inhand-left.png | Bin 0 -> 497 bytes .../uma_sport_clothing.rsi/inhand-right.png | Bin 0 -> 494 bytes .../uma_sport_clothing.rsi/meta.json | 26 ++++++ .../Wallmounts/posters.rsi/meta.json | 88 +++++++++++------- .../poster_umaazalia_contraband.png | Bin 0 -> 1503 bytes .../posters.rsi/poster_umahot_contraband.png | Bin 0 -> 1312 bytes .../poster_umaonbeach_contraband.png | Bin 0 -> 1421 bytes .../poster_umapress_contraband.png | Bin 0 -> 1374 bytes .../poster_umarabbit_contraband.png | Bin 0 -> 1354 bytes .../poster_umasport_contraband.png | Bin 0 -> 1053 bytes 35 files changed, 320 insertions(+), 36 deletions(-) create mode 100644 Resources/Textures/ADT/Personalization/uma_armor.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/ADT/Personalization/uma_armor.rsi/icon.png create mode 100644 Resources/Textures/ADT/Personalization/uma_armor.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Personalization/uma_armor.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Personalization/uma_armor.rsi/meta.json create mode 100644 Resources/Textures/ADT/Personalization/uma_choker.rsi/equipped-NECK.png create mode 100644 Resources/Textures/ADT/Personalization/uma_choker.rsi/icon.png create mode 100644 Resources/Textures/ADT/Personalization/uma_choker.rsi/meta.json create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/base.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/bolt-open.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/equipped-BELT.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/equipped-SUITSTORAGE.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/icon.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/mag-0.png create mode 100644 Resources/Textures/ADT/Personalization/uma_pistol.rsi/meta.json create mode 100644 Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/equipped-INNERCLOTHING.png create mode 100644 Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/icon.png create mode 100644 Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/meta.json create mode 100644 Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umaazalia_contraband.png create mode 100644 Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umahot_contraband.png create mode 100644 Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umaonbeach_contraband.png create mode 100644 Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umapress_contraband.png create mode 100644 Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umarabbit_contraband.png create mode 100644 Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umasport_contraband.png diff --git a/Resources/Locale/ru-RU/ADT/personalization.ftl b/Resources/Locale/ru-RU/ADT/personalization.ftl index 29a6076c913..554b969d436 100644 --- a/Resources/Locale/ru-RU/ADT/personalization.ftl +++ b/Resources/Locale/ru-RU/ADT/personalization.ftl @@ -374,3 +374,18 @@ ent-ADTClothingUniformZoroJumpsuit = легендарный деловой ко ent-ADTPlushieEmma = плюшевая Эмма .desc = Кажется, она хочет заставить вас работать. +ent-ADTWeaponPistolUma = "Умми" + .desc = Пистолет на основе МК58, выполненный под прихоти владельца. На затворе имеет небольшую надпись "Умми". + .suffix = { "Пистолет, Спонсорское, Ума" } + +ent-ADTClothingNeckUmaChoker = чокер Умы + .desc = Небольшого размера чокер, вокруг которого расположенны шипы, а спереди сердечко с надписью "Ума". + .suffix = { "Спонсорское, Ума" } + +ent-ADTClothingOuterArmorUma = бронежилет + .desc = Небольшой, лёгкий бронежилет, предназвначенный для защиты груди. Поставляется в комплекте с налокотниками и наколенниками. В правом верхнем углу имеется небольшая табличка с именем владельца - "Ума Э.С." + .suffix = { "Спонсорское, Ума" } + +ent-ADTClothingUniformJumpsuitUmaSport = тёмная спортивная форма + .desc = Облегающая спортивная форма, позволяющая телу дышать при интенсивных тренировках. Выглядит ухоженной и на удивление чистой. От неё исходит приятный запах. + .suffix = { "Спонсорское, Ума" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Wallmount/Signs/posters.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Wallmount/Signs/posters.ftl index 09aaca7a4f9..1ff837aecf1 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Wallmount/Signs/posters.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Wallmount/Signs/posters.ftl @@ -222,4 +222,28 @@ ent-ADTPosterUSSPKS = "Ищем тебя в Космических Силах" ent-ADTPosterUSSPKDV = "Никто кроме нас!" .desc = Плакат с бойцом Космо-Десантных войск СССП и их классическим девизом, ведущим свою историю уже почти шестой век. - .suffix = { "СССП" } \ No newline at end of file + .suffix = { "СССП" } + +ent-ADTPosterContrabandUmaHot = горячая Ума + .desc = На плакате изображена высокая вульпа, с рельефными мышцами, в откровенном наряде. + .suffix = { "Спонсорское, Ума" } + +ent-ADTPosterContrabandUmaPress = горячая Ума + .desc = На плакате изображена высокая вульпа, демонстрирующая свой рельефный пресс. + .suffix = { "Спонсорское, Ума" } + +ent-ADTPosterContrabandUmaSport = Спорт - Жизнь! + .desc = Плакат, призывающий занятся тебя спортом. Посмотри на неё, и на свой пивной живот! + .suffix = { "Спонсорское, Ума" } + +ent-ADTPosterContrabandUmaAndAzalia = дружный коллектив + .desc = На плакате изображены два не безызвестных инженера, что очень "дружны"! + .suffix = { "Спонсорское, Ума" } + +ent-ADTPosterContrabandUmaRabbit = Ума - кролик + .desc = На плакате изображенна высокая вульпа, в облегающем костюме кролика. + .suffix = { "Спонсорское, Ума" } + +ent-ADTPosterContrabandUmaOnBeach = Пляжный сезон! + .desc = Плакат призывающий экипаж опробывать исскуственные пляжи на станции (пляж не доступен на некоторых станциях). + .suffix = { "Спонсорское, Ума" } diff --git a/Resources/Prototypes/ADT/Entities/Personalization/Clothing/personalization_clothing.yml b/Resources/Prototypes/ADT/Entities/Personalization/Clothing/personalization_clothing.yml index cb6c7e28d5e..e161dc82b72 100644 --- a/Resources/Prototypes/ADT/Entities/Personalization/Clothing/personalization_clothing.yml +++ b/Resources/Prototypes/ADT/Entities/Personalization/Clothing/personalization_clothing.yml @@ -586,3 +586,36 @@ - ADTSyrelBattleAxe - type: Appearance +#cherreshnia (она же Ума) +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformJumpsuitUmaSport + name: dark sporting clothing + description: dark sporting clothing + suffix: Sponsor, Uma + components: + - type: Sprite + sprite: ADT/Personalization/uma_sport_clothing.rsi + - type: Clothing + sprite: ADT/Personalization/uma_sport_clothing.rsi + +- type: entity + parent: ClothingNeckBase + id: ADTClothingNeckUmaChoker + name: Uma`s choker + description: Uma`s choker + suffix: Sponsor, Uma + components: + - type: Sprite + sprite: ADT/Personalization/uma_choker.rsi + +- type: entity + parent: ClothingOuterArmorBasic + id: ADTClothingOuterArmorUma + name: Uma`s armor vest + description: A Type III heavy bulletproof vest that excels in protecting the wearer against traditional projectile weaponry and explosives to a minor extent. + components: + - type: Sprite + sprite: ADT/Personalization/uma_armor.rsi + - type: Clothing + sprite: ADT/Personalization/uma_armor.rsi diff --git a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml index 771d09d8711..d0709e069b1 100644 --- a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml +++ b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml @@ -1097,3 +1097,20 @@ Wood: 250 - type: Prying +#cherreshnia (она же Ума) +- type: entity + name: Uma`s pistol + parent: WeaponPistolMk58 + id: ADTWeaponPistolUma + description: A cheap, ubiquitous sidearm, produced by a NanoTrasen subsidiary. Uses .35 auto ammo. + suffix: Sponsor, Uma + components: + - type: Sprite + sprite: ADT/Personalization/uma_pistol.rsi + layers: + - state: base + map: ["enum.GunVisualLayers.Base"] + - state: mag-0 + map: ["enum.GunVisualLayers.Mag"] + - type: Clothing + sprite: ADT/Personalization/uma_pistol.rsi diff --git a/Resources/Prototypes/ADT/Entities/Structures/Wallmount/Signs/posters.yml b/Resources/Prototypes/ADT/Entities/Structures/Wallmount/Signs/posters.yml index d19e37e2210..d5b4a12fe02 100644 --- a/Resources/Prototypes/ADT/Entities/Structures/Wallmount/Signs/posters.yml +++ b/Resources/Prototypes/ADT/Entities/Structures/Wallmount/Signs/posters.yml @@ -795,3 +795,65 @@ - type: Sprite sprite: ADT/Structures/Wallmounts/poster_syndicate.rsi state: gasattack + +#спонсорские контрабандные постеры с Умой + +- type: entity + parent: ADTPosterBase + id: ADTPosterContrabandUmaHot + name: Uma`s poster 1 + description: Uma`s poster 1 + suffix: Sponsor, Uma + components: + - type: Sprite + state: poster_umahot_contraband #Спрайт от Празата + +- type: entity + parent: ADTPosterBase + id: ADTPosterContrabandUmaPress + name: Uma`s poster 2 + description: Uma`s poster 2 + suffix: Sponsor, Uma + components: + - type: Sprite + state: poster_umapress_contraband #Спрайт от Празата + +- type: entity + parent: ADTPosterBase + id: ADTPosterContrabandUmaSport + name: Uma`s poster 3 + description: Uma`s poster 3 + suffix: Sponsor, Uma + components: + - type: Sprite + state: poster_umasport_contraband #Спрайт от Празата + +- type: entity + parent: ADTPosterBase + id: ADTPosterContrabandUmaAndAzalia + name: Uma`s poster 4 + description: Uma`s poster 4 + suffix: Sponsor, Uma + components: + - type: Sprite + state: poster_umaazalia_contraband #Спрайт от Празата + +- type: entity + parent: ADTPosterBase + id: ADTPosterContrabandUmaRabbit + name: Uma`s poster 5 + description: Uma`s poster 5 + suffix: Sponsor, Uma + components: + - type: Sprite + state: poster_umarabbit_contraband #Спрайт от Празата + +- type: entity + parent: ADTPosterBase + id: ADTPosterContrabandUmaOnBeach + name: Uma`s poster 6 + description: Uma`s poster 6 + suffix: Sponsor, Uma + components: + - type: Sprite + state: poster_umaonbeach_contraband #Спрайт от Празата diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml index a230ca9f37c..a62518d7cab 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/posters.yml @@ -106,6 +106,12 @@ - ADTPosterPanem - ADTPosterGasAttack - ADTPosterNoGood + - ADTPosterContrabandUmaHot + - ADTPosterContrabandUmaPress + - ADTPosterContrabandUmaSport + - ADTPosterContrabandUmaAndAzalia + - ADTPosterContrabandUmaRabbit + - ADTPosterContrabandUmaOnBeach #ADT tweak ^^^ chance: 1 diff --git a/Resources/Textures/ADT/Personalization/uma_armor.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/ADT/Personalization/uma_armor.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..fcadb7ab3694425213ba2b3cd8ae84f2479c6ec0 GIT binary patch literal 750 zcmVPx%s7XXYRCr$PT0Kw0Fc5V&$Qa53j8HZZ8;IYJU_-D`7=eY7F|Y-_imNQwN&S*I z%Ex7i6kmLI@1D7kH z`c?)oQL^V|dul8D&h#B3yK7~+tKFxAVt_1zvFw#akG(kZEr&xK3zd;|h-}EP_waoS z?GJJ^0KNr}y+De&A%dQ&{&%%EW&nfiP-H0v48)g-Xzf{l%J@9SURmW}(Y z0_E&~!k|x?+H@CZWz{Y%l<2_x*ihK%JU|U;xBXsRxo|(+39Fr_w0i zfQ_NE0R@0>s%bh6u}QFM8n)Y72Y@wnDDuG!7>YxzoeBVp*x2Ni0b`3O>rZ0_bX6N* zJJzPoS^&6r@+h2)T^nEn;MOUijok%Gf3*N`jq%kCuvBE^+pI@u3;<(zA7vGQK1QWW go0I`vqTNSbe|_a`U${;aJ^%m!07*qoM6N<$f*|)tO#lD@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_armor.rsi/icon.png b/Resources/Textures/ADT/Personalization/uma_armor.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8f44e9da324d1becf0516c8f2edde34fd574b631 GIT binary patch literal 352 zcmV-m0iXVfP)Px$8c9S!R9HvtmN5^)AP|M=ri_S-I@kaIbL^}xRz`HIc}=b%6?)g&rZItqp$GTf zyT@svR$j%*`BetU3SWK{VxJ>6r|W75D&qg83mUla;>!0000Px$ok>JNRCr$Pnn6y(Knz8vJIFGG4R8h!_di4hX8<;YECaiuAIYdxq?$06Wy`;t zs!?Nmo}be$yer9HyX5CD1V96l6W|CW7l02zjsQm>IRTD9asl`&z!BgGBqzWTNG z1yo0%>$<}{&%a{g8Z0}#e$KqLd;W^wYOopr6nA@bSEgwyAJe$R#kI?euJnChUf*7- zARNc}{F;C6x$1|*mN>Ow)B)h205J^LWgOp^gX8m70IhM%0Z7Ni0(1*D{HJTj7PQ2v zfuLr90C>26TskiX;Qi@&U!}hk3;-H&OaWj>ChE{%PJ zum))DBZLRgxhT002ovPDHLkV1nMg$;AKw literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_armor.rsi/inhand-right.png b/Resources/Textures/ADT/Personalization/uma_armor.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7f61fb4c3862b3c68e2d86300b87330353aaadf9 GIT binary patch literal 498 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z*Lb=(hE&A8 zo#p7?>>$v(-TZ0Cm!!YEQvd(=XM8c=vbRI#V)WSwYaA0&+e~I|zj@vJa%{vAM_4z7%)L4-ZOOzu2}U->)eaq z|IQai&R?f!nc*3~YWj+5Hivx$6*XM3*IU=W|0jOP`EJbXU3||^XR@&|9*X#$ex0xO z<>Wl`wm>R5KOecN9Nsp;omFs#`%S+GM-pz0CZlb7!7eX$F!&Sm-V>5r9< zot4AA`}g`Me3NJ1@M<38gf-sZg83%+9PLp|vCq1(%9>NbRYOiwqkgpX(rj%UN3kLpI9;PoDmSk3BEM&G> zp?q}-^Mqv&v1!=KTvVHuz`KphVcmJ2HKzK2gTxjM3B3qjv8_^D^gAT} zXdjuFdHm@6wC{V9?{DKZet))l|IJPD8~W@QK7MY_s=#D5uVJ0TamEYo0pSTk>mBl| z_4n@Idn+vex*Xf~ZCmyvHUE|lpSjNU=79|lUQ|zBcuZn>a?k#yCNYdDA6Koqbo%6; zwcqxyS(p9YZYkfRyT^0?JkPT|tCM%@_}8UtV{3PP|0t!uHBaa9`QO}`llbR5%V;+Q z=_-5=WH|9fa*Hd2Gq(r762nZp=4~7a8H_I-Srjg(Ul3#D(N(bRU`YAJb4#gVA?p%$ z!3LlCj?pXzTN=J7Fim)AoYBqDCN@FNg~6znEm!bCZeoSU!#{6!Y*h&M3RY~{|K|6H z7bcEuDsIlFH#1dwJx+RjJFR@46tD9CY4#O!Hrpr$CFw1kantM>>#PeJVh+m|^;R}s zl5%DKQ0G74wFtz}0~eSsHFG#DJHJ4eNg~RjN`Mioix+-o`NPckG0t(v%zJXcNMrDH L^>bP0l+XkKyf@0- literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_choker.rsi/icon.png b/Resources/Textures/ADT/Personalization/uma_choker.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..280429b82c3edccc2cf976ab66604faef0023dc7 GIT binary patch literal 497 zcmVPx$t4TybR9Hvtl+8-RKoG~L*MbK>C{lV7N+?oopP&};A_PQQ=@XRZB;-K?;vuDY z^HOXPq2Ntwo}jTsN-1~>L4qF#q1TlOYzf6?Hi=k-3UO zK7gbe3QIw@RBmj1_wXx0CH`nG6)D-ez{e1s|w~yE8Gk}8V1nz;!WK8LUB<0*a z;MX}XBIE$h0w(Zf)bBqmg(#N~=Sv8Ker*wX74b^&JiN%m-uVc+XGy5s%-j&l@Jko`FM;a?PT(*cfS>;y0EIb3SaGZo+5z7AV`GPfu|Ci% nAm3etfXEI+&~{T}fY^a=3w*I5Dg$|s00000NkvXXu0mjfSIgLT literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_choker.rsi/meta.json b/Resources/Textures/ADT/Personalization/uma_choker.rsi/meta.json new file mode 100644 index 00000000000..fce26e57672 --- /dev/null +++ b/Resources/Textures/ADT/Personalization/uma_choker.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/base.png b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/base.png new file mode 100644 index 0000000000000000000000000000000000000000..cb3cf190f7d0beaaa5249b80688865a5a06f0fb3 GIT binary patch literal 692 zcmV;l0!#ggP)Px%Zb?KzR9Hu2WEfz;IKcKZj5=U61V%%Es1WD~5dW{KDnU_>y?*-zL&b)d81|9m z03}076i0{|*)qI3cNi=NVuJvP4`ag=pP0Lffn)~=3JU(`<>dvNk!AD~OcM%)`F%GT zRM=PgU~m&XA-i$#CfD8wL?~F5*H!Utje4oK|t=g$mUT3SSQf;n>-o;!JmBcvv8VgQGh<1U7Hl$}l+vRXfQJz!e3c;76Bh zX{d(V1_}WX@ZdX-;Q>(M1*M^{U%$em0&h9M$;tU&NJt25(6?{j7=HZt!H}9;0*-%B zB7F4d5m^6%Wo!P&M+T!rO0?+V4N?QkQ6L(| zM^}e43P27(_x+bIUl>?eSisSM3~(8aH5H=?Vs!v6-~ajZhvE0{-$d0P#8?hegVO=H zeEJNWTBfL0a~oePLfM3kzdYJwuiF{2I` a4FLeHx(+abK`=!C0000Px%iAh93R9Hu2WEfz;IKcKZj5=U61V%%Es1WD~5dW{KDnU_>y?*-zL&b)d81|9m z03}076i0{|*)qI3cNi=NVuJvP4`ag=pP0Lffn)~=3JU(`<>dvNk!AD~OcM%)`F%GT zRM=PgU~m&XA-i$#CfD8wL?~F5DrYudo0A{rmR}pFe+w`|#JVUkq$)Y$!f1 zw}Lc%$i+QZz$fUmr@SgE?|?a{mPd1sNVadW6>jAW4|R z&>f(qrA1U4IePRcrUTG*=9Sg{H!{%2Y2djF7a11Mo&uNGH#BEZQB{LPlcp*|jK?Po zy`Xg9-+hs|LY5_*HGjZ%$dXR6V@<_qf><4Z%lCi&{9*Y0`!`Yb2Qij|)ZlagF5iFu{+&J! zKu`U&@IB5DU}a_f4~lCT09g(K)DC{U4ghDNlq`n3w{C$gS5{MFIIwpY!<}2#X&(iS z&Yu4tKYoBU9nr-B#HL_ssH19dlH;IJ2Ml-!001YKAuvZ~3B~{b002ovPDHLkV1f?R BH>Cgo literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/equipped-BELT.png b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/equipped-BELT.png new file mode 100644 index 0000000000000000000000000000000000000000..785f4037d7c4a49cb5c5c33b13090d2b3bbe912c GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAP_Wz6 z#WAE}&f8lXc@H@VupD5%*!5OO=d_|AXRPv*xIbcyKZOGs{!KsQZOpnx@5UQ5CZHaM zvYE>b&tIO=zwdGQ^h*uD-_BB2y7W4>&i8cNzU)nm&u1lO-^x0+HT}izXHp>LK=5aK zRCUX$`wx|CzH?TK@~iZ1S*9y@{%Odhi#g0Wf;oZ=45w-satdT0y^R(B0@C2=>gTe~ HDWM4f%I!}_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 0000000000000000000000000000000000000000..785f4037d7c4a49cb5c5c33b13090d2b3bbe912c GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAP_Wz6 z#WAE}&f8lXc@H@VupD5%*!5OO=d_|AXRPv*xIbcyKZOGs{!KsQZOpnx@5UQ5CZHaM zvYE>b&tIO=zwdGQ^h*uD-_BB2y7W4>&i8cNzU)nm&u1lO-^x0+HT}izXHp>LK=5aK zRCUX$`wx|CzH?TK@~iZ1S*9y@{%Odhi#g0Wf;oZ=45w-satdT0y^R(B0@C2=>gTe~ HDWM4f%I!}_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/icon.png b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..50c056a678844509c36b4c354af03b4f8c50948e GIT binary patch literal 726 zcmV;{0xA88P)Px%kV!;AR9Hu2WEfz;IKcKZj5=U61V%%Es1WD~5dW{KDnU_>y?*-zL&b)d81|9m z03}076i0{|*)qI3cNi=NVuJvP4`ag=pP0Lffn)~=3JU(`<>dvNk!AD~OcM%)`F%GT zRM=PgU~m&XA-i$#CfD8wL?~F5*H!Utje4oK|t=g$mUT3SSQf;n>-o;!JmBcvv8VgQGh<1U7Hl$}l+vRXfQJz!e3c;76Bh zX{d(V1_}WX@ZdX-;Q>(M1*M^{U%$em0&h9M$;tU&NJt25(6?{j7=HZt!H}9;0*-%B zB7F4d5m^6%Wo!P&M+T!rO0?+V4N?QkQ6L(| zM^}e43P27(_x+bIUl>?eSisSM3~(8aH5H=?Vs!v6-~ajZhvE0{-$d0P#8?hegVO=H zeEJNWTB0Gx$VvKa2(x&^jeSxt@Mz}{U9 zcWzy$eH1u4d;Wj?_yN{*L>C7Tn}VsKj;g^)j)O)WFyJ8o0Q>SAFg=rEI{*Lx07*qo IM6N<$g2Nv~$N&HU literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/inhand-left.png b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..e16031c9c38cf96ba8eac07bc10c79d963d873e8 GIT binary patch literal 855 zcmV-d1E~CoP)Px&5lKWrRCr$PnlWfoQ51$xa7i)EH_bVx8lgend~VjWDtAqfS!axPqXO;cX3x!2_KPR4NG zx#xW6Kj#ha_khcP9+%e-1b`Iaaso60E*AhTK^g%X0hbe?5pcNx=q*4apnC)?%VM=! z%`&*wFzPfA-CM z086jmu!-bFKnT@p6*e-b;cMYLoSFa77W})ZVRkq=2qVdL{!F=C*4iLcm(~kV0gIWJ zfDkOpg4D=w*j{5WJUO@vf+&7vxd7>neb{|yG#Xm-(+&XVzu9a8LbyJWgh(U;qX#y3 zL9iFU@^c7^#Ueaf%)t2hbAJIO5($>gW|ad`9uT{3?_4YvV^5#If{&#VScO@5@P0ps z5dPwW(vb$=ahK*&@M1a*Sp1Dszn~VKf#cyYoIDZc`7JCwWUH%dU<3e6xD`U`<_rsN zK7rA(DBl4Bf>?;S_(buz18@u~L)RdEf0hH#)qU+FV1I=P2m@n}VgBxIzT|Sb94{~) zk2747Q@8HG*7D?z;*EX{wkD4du&cpfkX0&`9pfkd6K8Z6F5)ZS0skv;Rre48RU}P~ zLkcjpbE@(t1*jrvY8+C4shv}mHz`0BNmJvH0!;0ks=P@7sz{m|hZJCH=TzlQ3Q$GT z)HtL7Q#+?BZ&H9NlBUK{u7H2>1IWS?UITHL?DO{X$^nEzAtvJokWJq1AMpGA{Ih#E zUy+pq5T=Mu`~b4WxB3V04*c?L|B5UdQ#k-(ig5A+$R^s(KOnpZeWw5?KR`Fd+x-J* zyzqLxU0G?AE5OMQ;N%f%g@ZG{mw({u7Vr#oG*fIooroKX9PinIU#002ovPDHLkV1h8vcz^%^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/inhand-right.png b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..262d49c068eaca666391c18a97817ccb16d75c0e GIT binary patch literal 852 zcmV-a1FQUrP)Px&4oO5oRCr$PnlWfoVGzeJ2$EzFUL0%_a1bpRFeMp^OXwyv9dwWmqEL+rr8GKN zEl4R+gwnbgkb)X5C=SIzhh}h-EK)Gh2ob6{2#Iwt4;+#p$S3!eFQmzP!M>NT$=7$8 zO6a@X|9Ahp1nykm@R!Ts`hftD0~}6(TEO83pdm;tKrP^K0@MNyHvoMLPzxBfz`~hB zZ06NZm!@e<*LCF~p^jU_`vEmI>uq@h#UDS`2jh>wgV*bYa=8rEYE@|n2w>&%Vfg%I zvjxI7VXvnL*^zKR48`Aq&*$Ufms8JR{M=ck0R#d8hFaEB!|*Nl15Ph}tm~=&A;hn( z<{-Jg4|HAU;wR!4ly`u~<6)YnL1O4H{CUG*aI(J+fdgn1zxHbY^7%a6UrurHZnqm@ zDCK}yEXLC5bUo*l7cbehi8zEpAs9Wlu?>O?d;a1=0-nw!0ma`q`5W}`ESv}i;mW1+ zkj-Z6fsmvM^8f*ijGTh0sp~xV_a6%EQ=tG_ZXWKvJHR0Xzj~l>w7T^>03itRI0LW^ zN&{CRxj3(!croQ0U68mr%lsP;VRS6aXMli!-wIq{G#ceYV*2(S*j$}#5x*CHEeZ&I zV-H~I?i?TTnM`I20KWWwKP#0=F8s&F%I^j7LW9sIwBq|p4L2FZAOJF`suYtPpi;GD z@R&Ydv;!6Z0000 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/mag-0.png b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/mag-0.png new file mode 100644 index 0000000000000000000000000000000000000000..aa5cf93eb12447b59c16c57d1b5dd24fe41ea3da GIT binary patch literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}X`U{QArbD$ zDG~_>EDn4#?y*WRVR3WDN))s^c%}XOzk7RL<8HoFSy?>n-`*wdD1L1fD%*S2z&-u^ z|9*M<1Gmx_b~C@Y8NDd0VAA6cf$TgL91INHo`Q<<2j*-7+Q{JP>gTe~DWM4fpRPFJ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_pistol.rsi/meta.json b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/meta.json new file mode 100644 index 00000000000..5491298d65b --- /dev/null +++ b/Resources/Textures/ADT/Personalization/uma_pistol.rsi/meta.json @@ -0,0 +1,39 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "base" + }, + { + "name": "bolt-open" + }, + { + "name": "mag-0" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..8764ada16735955960fced4e12fe85e52d47feb9 GIT binary patch literal 913 zcmV;C18)3@P)Px&OG!jQRCr$PTES`*K@jcLC9CVkgSz4_s0oM=VadUp7s(goEcpV#56CCv0|dVy zc=ij#i#HEpK|zE>1H0lT9?WLrhSiZbSW7dRVWzsfW@)D9GP^xJRj*%FR~J)NQx(5z z6<@y!1OyMLI0In|RNMhV5DZ%&Yyl<%cRKf?@565wJSS_MDL!{P^k9;XA#E&I(EkbS zEpUJ3Vf6Lj^M&`a#)|?eIuDC&G_I)W^!NM~`k!W)Jh^NF0AQomQm+Re=kH?i0AvCn z4`A{+bX{LwR;^Y`jmP8p{nyEfN;6EJd=>%3{_}c6?Ot6{Pzo@(@LQS$eeuvq1ki62 z5?BNffbB~Y^|E=}34lBc>CYEVz@j~X^k;1W6Axs00IWeV;Qi7pc7M1XE)(S(>(gAF z1RAs1ek=l>-du~ijhb3-URHOn&F1(IPwQ%L@<$D(k$QLhi6xUmf`ooCu$+Z0a&91i z!@j=%=m^yB(s4jSKg$E2bst41Tlj0HnZ_`XcwH>CYBn`$Qs8)l{t?!s zA0VmAiU7S{kD36!+4uV&tYqeq(d#{q^tym8307eBQq`h7z_uJ`O#m#0k{J30$_j=Q z{HRgNrZ>rofMmTMeFBn|A&`yY40;n>^(0skkhfobcpeDgSShPVk9ziOBXSWet}(DY zfTBJDeR5upgCAYC5xEEft}(C(06+ksayZU@>KE8Q*e|71lrXHWtj2s11}fQePXsmr zP^xEt)G=Dt5lCL*3WE^=dc!2r-!fc3xjkHAFd{&&(*u}ve_&c{aD~B$fFi-lmpOp| nUo0hsGkAa$v%bi!ya)UPRzyZ$3PbV+00000NkvXXu0mjfCRdZ$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/icon.png b/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c6a91d02e77037e2e3048402b90f965b79e937a4 GIT binary patch literal 466 zcmV;@0WJQCP)Px$j7da6R9Hvtlut^-P!Pr^S`uwj7ivTc{#l4pL3#x71g@ng5IjJS-~qfsaqS7j zjr$@fiVOch6{9X}8cnG@`2rI{5IQeVvw3foyv&>Ld%w(#MFlUbV0|(M3;{#H5XePf zacM<4&J;b|-zMi**EUoXebdYHqgGC>V4j*R1{1s>o;4+zvbhX^z^>)enF?F?TN5E2mlr4q0&-n9Hh^cCNY}=w-=J-va00jy z*T986jPc{vSi1OeMw`ISTwT>1iyGxgTCNNe!cYAYb;2L&MvBhguf=)AfvkkvZw@L1 z6WImv8@sPH3$zXF*S1u;{jw&|o+sTaab9sC3$+_{h3e<3M+c-k;V^uqW@n7Q;AnkY zoqDsesQ>22(+|bx&3kb>?)e|oy1Nu#OdQArU;qP%2M>ClX9M<{UxV=);4Xj|SNval zqXrOv*Cv325aa}Cx$L`CJl7o1NiK=aML?2R8eR07*qo IM6N<$f_7uW-Yauzis2*xj*L7cYlTkHWfbx?Fki(AJjWU4{*Ua zA_uq_jU5jSoj$IWBjg9cHeeAM*UA2pI*k_(01l_*)C->n>W7?{xUQ5b*`MJ ze^1{o{^g&d{-`7N?eu@kZY=otdB&!k-do?gtM1Cpy(VAsGi2l5B_$R! zZ!WY*IzGGh{z)0%DF5>J%G-a%c* zMRVDCFR106<>%dCCivDS(A?pXjnfqdm2=82ybh0K96?M$ICGu^gMy=B8n21MvzMMJ h?#wD0$JTu0UF*Nyan;#oZ(tlUc)I$ztaD0e0sut0(kuV~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/inhand-right.png b/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..568c4d7b7842f460f6f29dede5788d60a0dbc9f5 GIT binary patch literal 494 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zS9rQOhE&A8 zon`37>?qQ9KTLbm)I!(b4#wFW-L32b{t3Eq2bn8a_$O$0l=>;i9dHu!QFhT;v?FV4 zM|AHRfk4T-sRi=?4eDo2;F!_cq!)*Gop{A$T)vWZCc_qw#n%=x2dFPz+Rb-CsW+;f&tY!QG(9VaZj&roD~3{|s9i4@ zbT6$aeZg?$WX8)y%=k3Sy~g+9>&!;A4{I5J{5o@BKV!kp>U^!f4fk#_>XpCe;5Ez4 z;63p4-QJZJhpMs}IFfc>aA1fH_?qc&bzpgB>B6aeFPc{QSMOtPci7^1FE#!FFajAo MUHx3vIVCg!0GWu>DF6Tf literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/meta.json b/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/meta.json new file mode 100644 index 00000000000..b5a5358093d --- /dev/null +++ b/Resources/Textures/ADT/Personalization/uma_sport_clothing.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/meta.json b/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/meta.json index 42ea63754d7..55eab6a72b2 100644 --- a/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/meta.json +++ b/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/meta.json @@ -6,39 +6,57 @@ "x": 32, "y": 32 }, - "states": [ - { - "name": "poster_adtgreatfood_legit" - }, - { - "name": "poster_adtturnonsensors_legit" - }, - { - "name": "poster_adtoktoberfest_legit" - }, - { - "name": "poster_adtoktoberfest2_legit" - }, - { - "name": "poster_efficiencydiagram_legit" - }, - { - "name": "poster_adtlusttayaran_contraband" - }, - { - "name": "poster_adtfearthem_contraband" - }, - { - "name": "poster_adtsilence_contraband" - }, - { - "name": "poster_adtlustuma_contraband" - }, - { - "name": "poster_adtlustardeco_contraband" - }, - { - "name": "quadro_electronics" - } - ] + "states": [ + { + "name": "poster_adtgreatfood_legit" + }, + { + "name": "poster_adtturnonsensors_legit" + }, + { + "name": "poster_adtoktoberfest_legit" + }, + { + "name": "poster_adtoktoberfest2_legit" + }, + { + "name": "poster_efficiencydiagram_legit" + }, + { + "name": "poster_adtlusttayaran_contraband" + }, + { + "name": "poster_adtfearthem_contraband" + }, + { + "name": "poster_adtsilence_contraband" + }, + { + "name": "poster_adtlustuma_contraband" + }, + { + "name": "poster_adtlustardeco_contraband" + }, + { + "name": "quadro_electronics" + }, + { + "name": "poster_umahot_contraband" + }, + { + "name": "poster_umapress_contraband" + }, + { + "name": "poster_umasport_contraband" + }, + { + "name": "poster_umaazalia_contraband" + }, + { + "name": "poster_umarabbit_contraband" + }, + { + "name": "poster_umaonbeach_contraband" + } + ] } diff --git a/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umaazalia_contraband.png b/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umaazalia_contraband.png new file mode 100644 index 0000000000000000000000000000000000000000..2da4c2f4d8718bfcf4377842ad91ec7cbe3bb9f7 GIT binary patch literal 1503 zcmV<51t9u~P)Px)e@R3^R9HvFmw!xEWf;f5*A+0qI|K?40Swskt<|uSTkhM`Dfnr%QgJvYA z;oU^t$WVlGQ;b5>gdr58A0T45(bVt)F`Sb`7~E16`QhCKocB`R_B@yOa4y|@@eeni zf6jT&dEfW@dB4wd-gAxuGaQN;)&~P@{dkX&jv*0CC7uA^1&@@iv-_qrUt3cPpXV3u zR7e1RW$H&NINfAj$>Ea#rKf6*BbyJ~98>e;pNRYGDJ*qyMPNiIt~IryWq63kq{K#> zwMAcB6V5r9j+8aACI<*0L8IaRM-SB41QB9#2uo1bCfSe`$G0lIz0Cmvcb(!J&%7I9 z5rkItLqZnx9pikT91sxlqkYihc(d{VyCn}HeEC?DY5cA=lK{;v?Z(zP72lxMSOQUp z+{BTnGzq}k3a0{06&7g=t;t2$(qK~x2>)I0V*6u_o)#SBX! zRxE@CxJ`hQMm27Xj^fifQS8WDno4*%IbqabV2J60Qn2Im40w9FNL^3ARB1MBT7Y|Z z1~G49$Q@@Tob2ov;JJuJ)9GX5C#fv{TjK@p>*pWDZ8?NZfa3mI7JvKr*U;S?MPXJp zobBu$N<6196McQd=(^s4ys{MdR#%AhRYka`?nLlL2h84w_gBU+~>0c=P#Xrhll(00OY{> zqC#nj91~LbOnq?^l!OhI|X#Ns=pSUvmKC~ zq(o8GeS8q_z(+X*SubDxfL@P~B@2-FUKEQ5hQEkw>hpZ8FFT5k-dc?1^hwTItpR%O z-@o-E4(0kFL)FWw!?GDvv~Q{3KpmHbqTc$pdBBFm!qSU_q#Ijq62%m;0Pcr zawW7{EkmU3*kd}kUtt?Sya!reID;jj9=Otan}z6{9H8Bio`gZY9&Yyb2un)ls#o3>?(4hVqEq0=lTwqF`VmWylr_>GNWdwxDos8Xpg zpy}rGwhN66Ku%DQ8{%49c&2p##kvB%Nw4Fm{2Y_r27?44axPq;cJIgtR0Rb{Tbm^1 zoWvE8N7cV^Bf!`5MKF28VK&62M-Xi zYz6jh%P_NFIFXpXh365)xF+o*)WyUz#Qy+-&s}73KR;itauWAZDtQ9A^}RYB9-B3b z#bZ<7F{^MW5Z7@P93gRS22L4 z6cB)1{A|lbsqzUz4j`TiQ3C|P>1k_63Qw-49J_h%cqt#q04Q7Qn4j>Lojxk8bbmBo92*!9G90YKyA zdqH!L=`p116a+|6Vw@QO{TcZNxJfysL6!tWhpG4E5Z3z0=cIF`qo?_w5f{u%{hCQj zpMjGZ|2zH<9`b2U(sJSR0000EWmrjOO-%qQ00008000000002eQ9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umahot_contraband.png b/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umahot_contraband.png new file mode 100644 index 0000000000000000000000000000000000000000..70e694226c71db2fd9ff20a27191c1e4b57f29e3 GIT binary patch literal 1312 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 b00;m8000000Mb*F00000NkvXXu0mjf2AGSb literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umapress_contraband.png b/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umapress_contraband.png new file mode 100644 index 0000000000000000000000000000000000000000..6b586f85e244100d8bac0226ac32494fbd62cd78 GIT binary patch literal 1374 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 M07*qoM6N<$f`A8LUjP6A literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umasport_contraband.png b/Resources/Textures/ADT/Structures/Wallmounts/posters.rsi/poster_umasport_contraband.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8fc05fba03ea957a12ba87e0315d7cba06b845 GIT binary patch literal 1053 zcmV+&1mgRNP)Px&y-7qtR9HvFmt9DcQ5eUcS+2Pcb1EYCK~gj$LL@6I${Y2$Cw{TAlvH7o{QBIDE-Y&u=sb{ipRi4=isIP8HTxrK9;0C!IW28rlO|01zoU z=%kKU!Ek#Eo>6Dlk&ti@&93RC{>EGh5i^pj@W`(G+|VJ=0@$DP zh!#?kDZ}L!04(04TZGB;>oftdV>aa1vH;3*9*Z>~-cLjjzTey=e!E?HCgSeZ%#8^E z?uR(L9pW!rh>Uw|bf=?+?3N33$dN9RlPd&sVEi0d1}(UCeecT!1XqFj8Fda|H;8|>l5{24E>mV^hU!%s85yIi$A^SCssc7SKQACY zcpP#p5DXNPIY^v2--5*HlPuX24}ly#W5uzcRyYg2{kx9 zEgBANz`B;qW|Qy$jJ<&G5QQ;7&8@!&SX7N@hq*!QfEQtLJOhBcpEV_gCS5KuF3VsL zaYqFN0;oL#V Date: Thu, 10 Oct 2024 21:11:03 +0300 Subject: [PATCH 08/34] Auto CL update (#627) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 28 +++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index 328c6fce9fc..ff611367c36 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3519,3 +3519,31 @@ Entries: - {message: Инженеры НТ исправили часть своих косяков на станциях!, type: Fix} time: '2024-10-08T15:58:59Z' id: 434 + - author: Hyrmik + changes: + - {message: НаноТрейзен изменила экран загрузки. Слава НТ!, type: Tweak} + - {message: 'НаноТрейзен исправила критическую ошибку инженерного отдела. Атмосферным + техникам стали выдавать маски не только по бумагам, но и в реальности тоже. + Слава НТ!', type: Fix} + - {message: НаноТрейзен дала возможность брать робототехникам на станцию халат + роботехника. Слава НТ!, type: Fix} + - {message: НаноТрейзен изменила способ производства халатов паталогоанатома. + Была добавлена возможность расстёгивать их. Слава НТ!, type: Fix} + - {message: НаноТрейзен переименовала некоторые модули борга. Слава НТ!, type: Fix} + time: '2024-10-09T20:25:50Z' + id: 435 + - author: Filokini + changes: + - {message: Рептилоиды пробудили кровь предков., type: Add} + - {message: 'Добавлен Ня-кцент, мя!', type: Add} + - {message: Изменены сопротивления некоторых рас, type: Tweak} + - {message: 'И немного помаленьку, вульпы прожорливее, драски немного светятся, + жирные расы имеют больше крови и наоборот.', type: Tweak} + - {message: Кобольды вспомнили что нужно пить и есть..., type: Fix} + time: '2024-10-09T21:43:10Z' + id: 436 + - author: PyotrIgn + changes: + - {message: Добавлены спонсорские вещи одного из жертвователей., type: Add} + time: '2024-10-10T12:24:19Z' + id: 437 From b866b8433c2a9a0171dc455453b8a8a29e6d1d73 Mon Sep 17 00:00:00 2001 From: Inconnu <177014427+Inconnu1337@users.noreply.github.com> Date: Fri, 11 Oct 2024 23:06:36 +0300 Subject: [PATCH 09/34] =?UTF-8?q?=D0=A1=D0=9B=D0=98=D0=97=D0=9D=D0=95?= =?UTF-8?q?=D0=9A=D0=9E=D0=A2=D0=98=D0=9A=D0=98=20=D0=98=20=D0=A1=D0=9A?= =?UTF-8?q?=D0=90=D0=A4=D0=90=D0=9D=D0=94=D0=A0=D0=AB!!!!=20(#615)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Почти все скафандры теперь имеют размер 4х4, а скафандр НРа 2х2 ## Почему / Баланс После смены размеров никто так и не взялся за это хотя многие говорили что надо вернуть размерчики!!! Я вернул :3 ## Требования - [х] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [х] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре **Чейнджлог** :cl: Inconnu (Тянка Шрёди:3) - tweak: Слизнекотики занерфлены (Подробнее см. пр) - tweak: Великие разумы всея галактики сжали почти все скафандры вселенной до размеров 4х4 - tweak: Тараканов больше нельзя гибнуть --- .../ADT/Entities/Mobs/NPCs/slugcat.yml | 27 ++++++++++++++----- .../OuterClothing/base_clothingouter.yml | 3 ++- .../Prototypes/Entities/Mobs/NPCs/animals.yml | 17 ++++++------ 3 files changed, 31 insertions(+), 16 deletions(-) diff --git a/Resources/Prototypes/ADT/Entities/Mobs/NPCs/slugcat.yml b/Resources/Prototypes/ADT/Entities/Mobs/NPCs/slugcat.yml index dc08c18227c..33ceba41a8e 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/NPCs/slugcat.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/NPCs/slugcat.yml @@ -10,6 +10,7 @@ layers: - map: ["enum.DamageStateVisualLayers.Base"] state: creek + - map: [ "mask" ] - type: Fixtures fixtures: fix1: @@ -18,12 +19,14 @@ radius: 0.35 density: 15 mask: - - SmallMobMask + - MobMask layer: - SmallMobLayer - type: Tag tags: - DoorBumpOpener + - VimPilot + - CannotSuicide - type: Appearance - type: DamageStateVisuals states: @@ -50,7 +53,7 @@ attributes: gender: epicene - type: MobPrice - price: 10000 + price: 2000 - type: NpcFactionMember factions: - Passive @@ -62,11 +65,9 @@ - type: Inventory templateId: ADTSlugCat - type: Body - prototype: Human + prototype: Primate - type: Hands - showInHands: false - - type: Input - context: "human" + showInHands: true - type: Insulated - type: InventorySlots - type: Stripping @@ -90,7 +91,19 @@ Slash: 0 - type: Muted - type: NoSlip - + - type: FireVisuals + sprite: Mobs/Effects/onfire.rsi + normalState: Monkey_burning + - type: Clumsy + clumsyDamage: + types: + Blunt: 20 + Piercing: 15 + groups: + Burn: 15 + - type: SentienceTarget + flavorKind: station-event-random-sentience-flavor-organic + - type: entity name: Slug Cat parent: ADTMobSlugCatCreek diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml index 1ee9b765883..270a61f188a 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/base_clothingouter.yml @@ -116,7 +116,8 @@ sprintModifier: 0.6 - type: HeldSpeedModifier - type: Item - size: Ginormous +# size: Ginormous + size: Huge # ADT-Tweak - type: Armor modifiers: coefficients: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 84ecaab55c6..d2d34964da5 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -378,14 +378,15 @@ tags: - Trash - VimPilot - - type: Destructible - thresholds: - - trigger: - !type:DamageTypeTrigger - damageType: Blunt - damage: 10 - behaviors: - - !type:GibBehavior { } + # - type: Destructible + # thresholds: + # - trigger: + # !type:DamageTypeTrigger + # damageType: Blunt + # damage: 10 + # behaviors: + # - !type:GibBehavior { } + # ADT-Tweak - type: NonSpreaderZombie - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-organic From 80e58c347a543fcbaaf1ecb1e9f2200b0fb808f2 Mon Sep 17 00:00:00 2001 From: bananchiki <87230164+Darkiich@users.noreply.github.com> Date: Sun, 13 Oct 2024 10:22:07 +0300 Subject: [PATCH 10/34] =?UTF-8?q?=D0=BA=D0=B5=D0=B3=D0=B0-=D0=B3=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D0=B0=D1=82=D0=B0=20(#632)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR ## Почему / Баланс Чтобы было ## Медиа ![image](https://github.com/user-attachments/assets/bcff09b5-2c45-4a8f-a060-53df7a63c1fc) ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре **Чейнджлог** :cl: Дубик - add: Добавлена кега-граната --- Resources/Audio/ADT/Effects/kega.ogg | Bin 0 -> 25231 bytes .../Objects/Weapons/Grenades/grenades.ftl | 2 ++ .../Objects/Weapons/Throwable/grenades.yml | 19 ++++++++++++++++++ .../Weapons/Grenades/grenade.rsi/icon.png | Bin 0 -> 649 bytes .../Weapons/Grenades/grenade.rsi/meta.json | 19 ++++++++++++++++++ .../Weapons/Grenades/grenade.rsi/primed.png | Bin 0 -> 649 bytes .../Weapons/Grenades/grenade.rsi/icon.png | Bin 502 -> 496 bytes 7 files changed, 40 insertions(+) create mode 100644 Resources/Audio/ADT/Effects/kega.ogg create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Weapons/Grenades/grenades.ftl create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Weapons/Throwable/grenades.yml create mode 100644 Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/icon.png create mode 100644 Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/primed.png diff --git a/Resources/Audio/ADT/Effects/kega.ogg b/Resources/Audio/ADT/Effects/kega.ogg new file mode 100644 index 0000000000000000000000000000000000000000..085ecaa90a5303d69f9737bbc72aa641f6ccae77 GIT binary patch literal 25231 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/meta.json b/Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/meta.json new file mode 100644 index 00000000000..c06368e41a0 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/meta.json @@ -0,0 +1,19 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Discord: mskaktus", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "primed" + } + ] +} + + diff --git a/Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/primed.png b/Resources/Textures/ADT/Objects/Weapons/Grenades/grenade.rsi/primed.png new file mode 100644 index 0000000000000000000000000000000000000000..d9cfd00376f699442c101a9ffbf165a987aced0e GIT binary patch literal 649 zcmV;40(Sk0P)Px#1ZP1_K>z@;j|==^1poj78A(JzR9Hvtmd{H9K@`Ww)Dj9o=nzDQ$deLf;2+Vo zjvd6S_YU<3bgPqj6%QTj*deIs5CsN$@CSycK=9x}#7bRt+c*2hZP#6QW>LHJfnna; zm3?2{`_3TwYh1VslSm|F3`e9=DdF!q5&*?Rp%7*orBX>)gd+jbXjD$8)0k<*<8hMB zX6GY7S(s@+S2CH5kcb7`g@6Le!i?s00kK$&3Z%&_2?PQ%cmaw*TqqPqMU%-SeU9mD zfTC?Lf^&+(aUgLyRdP!p;-I0`88(^5a{vfvJw}yKnWP*3o^_ zPK1yEC_ebqx>|2Zq}3S^zt2r~ppvhXRP{^uT^NOx0Pa%&#WAEnaWl5U8{{as$ZbF_ z0Z%8}W5uO`z6NxGu@~Ot7GW#k^?b+lLtgjf>FoyBxkNa+h^EO@1^gZZFTw(>%*Q<8 z@tVK4LP!8Rf<^-ZMo%oR@SSij0p0!(Bb7-86dl7{OxSL>F&c+Uz>;VDXJ%sn*p0}G zPzT)0TI=oZfnMA83ZMv&V9oEvNDu2sUowAh#ne0i9T9Cm;8=i_2Sl+I@Ni$mNDuP> zJ9b7v!=ZL`%jL4AVQdAQ-u7M3`2uDt%m=I}?BA09t{_B~ud2PtPE~L`0uaHvU@YEf zRT@p{1GCB4DrB7PyX0C^R$2~c9a^vMfZ4Ol7ia%B|Cuv{`~b$_<=XG*ZHfQ@01jnX jNoGw=04e|g00;m8000000Mb*F00000NkvXXu0mjfY>FN( literal 0 HcmV?d00001 diff --git a/Resources/Textures/Objects/Weapons/Grenades/grenade.rsi/icon.png b/Resources/Textures/Objects/Weapons/Grenades/grenade.rsi/icon.png index 429c7231b3b0e58577c0dd867be190b92b1e9e0d..a2f085b572deb53a953dc0ff28b0a72bfc993e98 100644 GIT binary patch delta 470 zcmV;{0V)3W1MmZoB!2;OQb$4nuFf3k00051NkllL0ey z66(>-r4B+t+?*tIy?@4~WN|3L$x*>kC~oyEID~>Nv^b=jgR{dq)YPOE$qT56{UGG- zqq(*bs0!&8J zO#EQ~i1gMB!+%gz2e}oPjHWc2isO?*04~n2aJ>pU^-Ugb2YJ&hVJ**~MswG0ZI=Ns zy?*AK>Gj#!+vM@-j@OMCV@zqWF1|u;1zfMfco+kG`gXla-c)h|iSMpgLDg%(hXv{W zVtwR6E(;R*;d2WTBs)Zczh?n}s@Hzc0?5k#BNp6T-%poZubkOh>Ay`ZI6J)*pN8V= zIPG=P9uH$~u8lO6jKKR@KUX2Gz+^NfeHTcMVzFe4R;0+Su)^QO8-U`*^6YSk4FCWD M07*qoM6N<$f|PIKE&u=k delta 476 zcmV<20VDqK1NH-uB!3BTNLh0L01m_e01m_fl`9S#0004~Nkl?gXYUn0`ItT@EbCQs?1P4byfTJ!Ui&JqZjuko4N0C60L*|wcp1toxuttxA_KI9({C**k^@Bi!D zgpG&OVyB?l+JE8mKj;TZ>|%6I`+J9UdUA#>f37+asR3R_Q$qDe#|M0WbA1~tvPRpD zReHL6rmU6$6rJnZEU0Q)m7fT7~0wEza$WmUiM77Y3i6`X={Os-b6;Oeqh z>}?2>do6qb$R}hW0JF0`Q9)J!zI+#`T**obdYGkx!L@2 S53l(E0000 Date: Sun, 13 Oct 2024 13:27:05 +0300 Subject: [PATCH 11/34] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=BD=D0=BE?= =?UTF-8?q?=D1=81=20=D1=81=D0=B8=D0=B3=D0=B0=D1=80=D0=B5=D1=82=D0=BA=D0=B8?= =?UTF-8?q?=20(#465)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Коммит взят отсюда --> https://github.com/RMC-14/RMC-14/pull/3590 ## Почему / Баланс Для разнообразия табачной продукции и большей вариативности для развития раковых заболеваемости ## Медиа ![image](https://github.com/user-attachments/assets/da9c88ca-2329-4f6f-9765-601b2b123a60) ![image](https://github.com/user-attachments/assets/05152197-1654-4b18-b2f6-3e44c4f619b9) **Проверки** - [x] PR полностью завершён и мне не нужна помощь чтобы его закончить. - [x] Я внимательно просмотрел все свои изменения и багов в них не нашёл. - [x] Я запускал локальный сервер со своими изменениями и всё протестировал. - [x] Я добавил скриншот/видео демонстрации PR в игре, **или** этот PR этого не требует. **Изменения** :cl: - add: НТ установило сотрудничество с несколькими табачными корпорациями в галактике и теперь новые виды возможностей получения рака лёгких можно приобрести в ShadyCigs Делюкс! Слава НТ! - add: В связи с увеличением спроса на табачную продукцию, а также в рамках новой миссии ТСФ по целенаправленной борьбе с незаконными табачными плантациями, цены на табак были повышены. Слава ТСФ!! --------- Co-authored-by: Hyenh <108431937+Hyenh@users.noreply.github.com> Co-authored-by: Jungar <145219878+jungarikjan@users.noreply.github.com> --- .../Objects/Consumable/Smokeables/case.ftl | 4 + .../Objects/Consumable/Smokeables/cigar.ftl | 5 + .../Consumable/Smokeables/cigarettes.ftl | 6 + .../Objects/Consumable/Smokeables/packs.ftl | 8 + .../Entities/Objects/Tools/lighters.ftl | 5 + .../Entities/Objects/Tools/matchbooks.ftl | 10 + .../Smokeables/Cigarettes/cigarette.yml | 83 ++++++++ .../Consumable/Smokeables/Cigarettes/fill.txt | 1 - .../Smokeables/Cigarettes/packs.yml | 185 ++++++++++++++++++ .../Consumable/Smokeables/Cigars/case.yml | 107 ++++++++++ .../Consumable/Smokeables/Cigars/cigar.yml | 40 ++++ .../Consumable/Smokeables/Cigars/fill.txt | 1 - .../ADT/Entities/Objects/Tools/lighters.yml | 34 ++++ .../ADT/Entities/Objects/Tools/matchbooks.yml | 111 +++++++++++ .../ADT/Entities/Objects/Tools/matches.yml | 53 +++++ .../Catalog/Cargo/cargo_service.yml | 2 +- .../Catalog/Cargo/cargo_vending.yml | 2 +- .../VendingMachines/Inventories/cigs.yml | 23 ++- .../Smokeables/Cigarettes/packs.yml | 20 ++ .../Smokeables/Cigarettes/rolling_paper.yml | 4 + .../Consumable/Smokeables/Cigars/case.yml | 4 + .../Consumable/Smokeables/Pipes/pipe.yml | 4 + .../Consumable/Smokeables/Vapes/vape.yml | 4 + .../Entities/Objects/Tools/lighters.yml | 8 + .../burnt-icon.png | Bin 0 -> 140 bytes .../lit-equipped-MASK.png | Bin 0 -> 632 bytes .../lit-icon.png | Bin 0 -> 337 bytes .../lit-inhand-left.png | Bin 0 -> 639 bytes .../lit-inhand-right.png | Bin 0 -> 628 bytes .../executive_select_cigarette.rsi/meta.json | 182 +++++++++++++++++ .../unlit-equipped-MASK.png | Bin 0 -> 192 bytes .../unlit-icon.png | Bin 0 -> 138 bytes .../unlit-inhand-left.png | Bin 0 -> 177 bytes .../unlit-inhand-right.png | Bin 0 -> 180 bytes .../executive_select_packet.rsi/cig1.png | Bin 0 -> 504 bytes .../executive_select_packet.rsi/cig10.png | Bin 0 -> 550 bytes .../executive_select_packet.rsi/cig11.png | Bin 0 -> 559 bytes .../executive_select_packet.rsi/cig12.png | Bin 0 -> 576 bytes .../executive_select_packet.rsi/cig13.png | Bin 0 -> 585 bytes .../executive_select_packet.rsi/cig14.png | Bin 0 -> 581 bytes .../executive_select_packet.rsi/cig15.png | Bin 0 -> 569 bytes .../executive_select_packet.rsi/cig16.png | Bin 0 -> 575 bytes .../executive_select_packet.rsi/cig17.png | Bin 0 -> 595 bytes .../executive_select_packet.rsi/cig18.png | Bin 0 -> 596 bytes .../executive_select_packet.rsi/cig19.png | Bin 0 -> 582 bytes .../executive_select_packet.rsi/cig2.png | Bin 0 -> 527 bytes .../executive_select_packet.rsi/cig20.png | Bin 0 -> 566 bytes .../executive_select_packet.rsi/cig3.png | Bin 0 -> 542 bytes .../executive_select_packet.rsi/cig4.png | Bin 0 -> 544 bytes .../executive_select_packet.rsi/cig5.png | Bin 0 -> 533 bytes .../executive_select_packet.rsi/cig6.png | Bin 0 -> 550 bytes .../executive_select_packet.rsi/cig7.png | Bin 0 -> 571 bytes .../executive_select_packet.rsi/cig8.png | Bin 0 -> 569 bytes .../executive_select_packet.rsi/cig9.png | Bin 0 -> 562 bytes .../executive_select_packet.rsi/closed.png | Bin 0 -> 368 bytes .../inhand-left.png | Bin 0 -> 1496 bytes .../inhand-right.png | Bin 0 -> 1404 bytes .../executive_select_packet.rsi/meta.json | 85 ++++++++ .../executive_select_packet.rsi/open.png | Bin 0 -> 475 bytes .../lucky_sloths_cigarette.rsi/burnt-icon.png | Bin 0 -> 145 bytes .../lit-equipped-MASK.png | Bin 0 -> 441 bytes .../lucky_sloths_cigarette.rsi/lit-icon.png | Bin 0 -> 334 bytes .../lit-inhand-left.png | Bin 0 -> 530 bytes .../lit-inhand-right.png | Bin 0 -> 496 bytes .../lucky_sloths_cigarette.rsi/meta.json | 182 +++++++++++++++++ .../unlit-equipped-MASK.png | Bin 0 -> 147 bytes .../lucky_sloths_cigarette.rsi/unlit-icon.png | Bin 0 -> 147 bytes .../unlit-inhand-left.png | Bin 0 -> 178 bytes .../unlit-inhand-right.png | Bin 0 -> 179 bytes .../lucky_sloths_packet.rsi/cig1.png | Bin 0 -> 429 bytes .../lucky_sloths_packet.rsi/cig10.png | Bin 0 -> 452 bytes .../lucky_sloths_packet.rsi/cig11.png | Bin 0 -> 466 bytes .../lucky_sloths_packet.rsi/cig12.png | Bin 0 -> 485 bytes .../lucky_sloths_packet.rsi/cig13.png | Bin 0 -> 494 bytes .../lucky_sloths_packet.rsi/cig14.png | Bin 0 -> 487 bytes .../lucky_sloths_packet.rsi/cig15.png | Bin 0 -> 477 bytes .../lucky_sloths_packet.rsi/cig16.png | Bin 0 -> 478 bytes .../lucky_sloths_packet.rsi/cig17.png | Bin 0 -> 500 bytes .../lucky_sloths_packet.rsi/cig18.png | Bin 0 -> 499 bytes .../lucky_sloths_packet.rsi/cig19.png | Bin 0 -> 491 bytes .../lucky_sloths_packet.rsi/cig2.png | Bin 0 -> 450 bytes .../lucky_sloths_packet.rsi/cig20.png | Bin 0 -> 476 bytes .../lucky_sloths_packet.rsi/cig3.png | Bin 0 -> 447 bytes .../lucky_sloths_packet.rsi/cig4.png | Bin 0 -> 447 bytes .../lucky_sloths_packet.rsi/cig5.png | Bin 0 -> 449 bytes .../lucky_sloths_packet.rsi/cig6.png | Bin 0 -> 447 bytes .../lucky_sloths_packet.rsi/cig7.png | Bin 0 -> 461 bytes .../lucky_sloths_packet.rsi/cig8.png | Bin 0 -> 461 bytes .../lucky_sloths_packet.rsi/cig9.png | Bin 0 -> 464 bytes .../lucky_sloths_packet.rsi/closed.png | Bin 0 -> 390 bytes .../lucky_sloths_packet.rsi/inhand-left.png | Bin 0 -> 433 bytes .../lucky_sloths_packet.rsi/inhand-right.png | Bin 0 -> 443 bytes .../lucky_sloths_packet.rsi/meta.json | 85 ++++++++ .../lucky_sloths_packet.rsi/open.png | Bin 0 -> 429 bytes .../lucky_sloths_packet_4.rsi/cig1.png | Bin 0 -> 352 bytes .../lucky_sloths_packet_4.rsi/cig2.png | Bin 0 -> 358 bytes .../lucky_sloths_packet_4.rsi/cig3.png | Bin 0 -> 354 bytes .../lucky_sloths_packet_4.rsi/cig4.png | Bin 0 -> 360 bytes .../lucky_sloths_packet_4.rsi/closed.png | Bin 0 -> 287 bytes .../lucky_sloths_packet_4.rsi/inhand-left.png | Bin 0 -> 433 bytes .../inhand-right.png | Bin 0 -> 443 bytes .../lucky_sloths_packet_4.rsi/meta.json | 37 ++++ .../lucky_sloths_packet_4.rsi/open.png | Bin 0 -> 310 bytes .../we_ya_gold_cigarette.rsi/burnt-icon.png | Bin 0 -> 137 bytes .../lit-equipped-MASK.png | Bin 0 -> 438 bytes .../we_ya_gold_cigarette.rsi/lit-icon.png | Bin 0 -> 323 bytes .../lit-inhand-left.png | Bin 0 -> 530 bytes .../lit-inhand-right.png | Bin 0 -> 496 bytes .../we_ya_gold_cigarette.rsi/meta.json | 182 +++++++++++++++++ .../unlit-equipped-MASK.png | Bin 0 -> 143 bytes .../we_ya_gold_cigarette.rsi/unlit-icon.png | Bin 0 -> 139 bytes .../unlit-inhand-left.png | Bin 0 -> 178 bytes .../unlit-inhand-right.png | Bin 0 -> 179 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig1.png | Bin 0 -> 474 bytes .../we_ya_gold_packet.rsi/cig10.png | Bin 0 -> 482 bytes .../we_ya_gold_packet.rsi/cig11.png | Bin 0 -> 491 bytes .../we_ya_gold_packet.rsi/cig12.png | Bin 0 -> 500 bytes .../we_ya_gold_packet.rsi/cig13.png | Bin 0 -> 508 bytes .../we_ya_gold_packet.rsi/cig14.png | Bin 0 -> 513 bytes .../we_ya_gold_packet.rsi/cig15.png | Bin 0 -> 507 bytes .../we_ya_gold_packet.rsi/cig16.png | Bin 0 -> 489 bytes .../we_ya_gold_packet.rsi/cig17.png | Bin 0 -> 506 bytes .../we_ya_gold_packet.rsi/cig18.png | Bin 0 -> 511 bytes .../we_ya_gold_packet.rsi/cig19.png | Bin 0 -> 510 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig2.png | Bin 0 -> 496 bytes .../we_ya_gold_packet.rsi/cig20.png | Bin 0 -> 488 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig3.png | Bin 0 -> 507 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig4.png | Bin 0 -> 504 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig5.png | Bin 0 -> 489 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig6.png | Bin 0 -> 483 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig7.png | Bin 0 -> 522 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig8.png | Bin 0 -> 517 bytes .../Cigarettes/we_ya_gold_packet.rsi/cig9.png | Bin 0 -> 509 bytes .../we_ya_gold_packet.rsi/closed.png | Bin 0 -> 1803 bytes .../we_ya_gold_packet.rsi/inhand-left.png | Bin 0 -> 1736 bytes .../we_ya_gold_packet.rsi/inhand-right.png | Bin 0 -> 1676 bytes .../we_ya_gold_packet.rsi/meta.json | 85 ++++++++ .../Cigarettes/we_ya_gold_packet.rsi/open.png | Bin 0 -> 2067 bytes .../Smokeables/Cigars/cigar_case.rsi/cig1.png | Bin 0 -> 332 bytes .../Smokeables/Cigars/cigar_case.rsi/cig2.png | Bin 0 -> 341 bytes .../Smokeables/Cigars/cigar_case.rsi/cig3.png | Bin 0 -> 341 bytes .../Smokeables/Cigars/cigar_case.rsi/cig4.png | Bin 0 -> 340 bytes .../Smokeables/Cigars/cigar_case.rsi/cig5.png | Bin 0 -> 339 bytes .../Smokeables/Cigars/cigar_case.rsi/cig6.png | Bin 0 -> 339 bytes .../Smokeables/Cigars/cigar_case.rsi/cig7.png | Bin 0 -> 334 bytes .../Cigars/cigar_case.rsi/closed.png | Bin 0 -> 279 bytes .../Cigars/cigar_case.rsi/inhand-left.png | Bin 0 -> 1618 bytes .../Cigars/cigar_case.rsi/inhand-right.png | Bin 0 -> 1492 bytes .../Cigars/cigar_case.rsi/meta.json | 46 +++++ .../Smokeables/Cigars/cigar_case.rsi/open.png | Bin 0 -> 262 bytes .../Cigars/tarback.rsi/burnt-icon.png | Bin 0 -> 329 bytes .../Cigars/tarback.rsi/lit-equipped-MASK.png | Bin 0 -> 3027 bytes .../Cigars/tarback.rsi/lit-icon.png | Bin 0 -> 579 bytes .../Smokeables/Cigars/tarback.rsi/meta.json | 125 ++++++++++++ .../tarback.rsi/unlit-equipped-MASK.png | Bin 0 -> 244 bytes .../Cigars/tarback.rsi/unlit-icon.png | Bin 0 -> 323 bytes .../Cigars/tarback_box.rsi/cig1.png | Bin 0 -> 496 bytes .../Cigars/tarback_box.rsi/cig2.png | Bin 0 -> 510 bytes .../Cigars/tarback_box.rsi/cig3.png | Bin 0 -> 509 bytes .../Cigars/tarback_box.rsi/cig4.png | Bin 0 -> 510 bytes .../Cigars/tarback_box.rsi/cig5.png | Bin 0 -> 477 bytes .../Cigars/tarback_box.rsi/closed.png | Bin 0 -> 347 bytes .../Cigars/tarback_box.rsi/inhand-left.png | Bin 0 -> 1569 bytes .../Cigars/tarback_box.rsi/inhand-right.png | Bin 0 -> 1573 bytes .../Cigars/tarback_box.rsi/meta.json | 40 ++++ .../Cigars/tarback_box.rsi/open.png | Bin 0 -> 439 bytes .../brown_matchbook.rsi/inhand-left.png | Bin 0 -> 331 bytes .../brown_matchbook.rsi/inhand-right.png | Bin 0 -> 337 bytes .../Matchboxes/brown_matchbook.rsi/meta.json | 43 ++++ .../brown_matchbook.rsi/mpacket.png | Bin 0 -> 222 bytes .../brown_matchbook.rsi/mpacket0.png | Bin 0 -> 252 bytes .../brown_matchbook.rsi/mpacket1.png | Bin 0 -> 272 bytes .../brown_matchbook.rsi/mpacket2.png | Bin 0 -> 281 bytes .../brown_matchbook.rsi/mpacket3.png | Bin 0 -> 290 bytes .../brown_matchbook.rsi/mpacket4.png | Bin 0 -> 295 bytes .../brown_matchbook.rsi/mpacket5.png | Bin 0 -> 293 bytes .../brown_matchbook.rsi/mpacket6.png | Bin 0 -> 293 bytes .../electro_matchbook.rsi/inhand-left.png | Bin 0 -> 331 bytes .../electro_matchbook.rsi/inhand-right.png | Bin 0 -> 337 bytes .../electro_matchbook.rsi/meta.json | 43 ++++ .../electro_matchbook.rsi/mpacket.png | Bin 0 -> 180 bytes .../electro_matchbook.rsi/mpacket0.png | Bin 0 -> 218 bytes .../electro_matchbook.rsi/mpacket1.png | Bin 0 -> 233 bytes .../electro_matchbook.rsi/mpacket2.png | Bin 0 -> 243 bytes .../electro_matchbook.rsi/mpacket3.png | Bin 0 -> 255 bytes .../electro_matchbook.rsi/mpacket4.png | Bin 0 -> 259 bytes .../electro_matchbook.rsi/mpacket5.png | Bin 0 -> 256 bytes .../electro_matchbook.rsi/mpacket6.png | Bin 0 -> 253 bytes .../inhand-left.png | Bin 0 -> 331 bytes .../inhand-right.png | Bin 0 -> 337 bytes .../executive_select_matchbook.rsi/meta.json | 43 ++++ .../mpacket.png | Bin 0 -> 277 bytes .../mpacket0.png | Bin 0 -> 230 bytes .../mpacket1.png | Bin 0 -> 257 bytes .../mpacket2.png | Bin 0 -> 267 bytes .../mpacket3.png | Bin 0 -> 277 bytes .../mpacket4.png | Bin 0 -> 279 bytes .../mpacket5.png | Bin 0 -> 280 bytes .../mpacket6.png | Bin 0 -> 277 bytes .../Matchboxes/matchbook.rsi/inhand-left.png | Bin 0 -> 331 bytes .../Matchboxes/matchbook.rsi/inhand-right.png | Bin 0 -> 337 bytes .../Matchboxes/matchbook.rsi/meta.json | 43 ++++ .../Matchboxes/matchbook.rsi/mpacket.png | Bin 0 -> 206 bytes .../Matchboxes/matchbook.rsi/mpacket0.png | Bin 0 -> 239 bytes .../Matchboxes/matchbook.rsi/mpacket1.png | Bin 0 -> 255 bytes .../Matchboxes/matchbook.rsi/mpacket2.png | Bin 0 -> 269 bytes .../Matchboxes/matchbook.rsi/mpacket3.png | Bin 0 -> 278 bytes .../Matchboxes/matchbook.rsi/mpacket4.png | Bin 0 -> 279 bytes .../Matchboxes/matchbook.rsi/mpacket5.png | Bin 0 -> 278 bytes .../Matchboxes/matchbook.rsi/mpacket6.png | Bin 0 -> 277 bytes .../Matchboxes/matchbox.rsi/matchbox-open.png | Bin 0 -> 320 bytes .../Matchboxes/matchbox.rsi/matchbox.png | Bin 0 -> 294 bytes .../Matchboxes/matchbox.rsi/matchbox1.png | Bin 0 -> 353 bytes .../Matchboxes/matchbox.rsi/matchbox2.png | Bin 0 -> 1589 bytes .../Matchboxes/matchbox.rsi/matchbox3.png | Bin 0 -> 381 bytes .../Matchboxes/matchbox.rsi/matchbox4.png | Bin 0 -> 1628 bytes .../Matchboxes/matchbox.rsi/matchbox5.png | Bin 0 -> 1647 bytes .../Matchboxes/matchbox.rsi/matchbox6.png | Bin 0 -> 379 bytes .../Matchboxes/matchbox.rsi/meta.json | 35 ++++ .../we_ya_matchbook.rsi/inhand-left.png | Bin 0 -> 331 bytes .../we_ya_matchbook.rsi/inhand-right.png | Bin 0 -> 337 bytes .../Matchboxes/we_ya_matchbook.rsi/meta.json | 43 ++++ .../we_ya_matchbook.rsi/mpacket.png | Bin 0 -> 249 bytes .../we_ya_matchbook.rsi/mpacket0.png | Bin 0 -> 285 bytes .../we_ya_matchbook.rsi/mpacket1.png | Bin 0 -> 303 bytes .../we_ya_matchbook.rsi/mpacket2.png | Bin 0 -> 317 bytes .../we_ya_matchbook.rsi/mpacket3.png | Bin 0 -> 326 bytes .../we_ya_matchbook.rsi/mpacket4.png | Bin 0 -> 327 bytes .../we_ya_matchbook.rsi/mpacket5.png | Bin 0 -> 326 bytes .../we_ya_matchbook.rsi/mpacket6.png | Bin 0 -> 326 bytes .../Tools/Lighters/execzippo.rsi/closed.png | Bin 0 -> 309 bytes .../Lighters/execzippo.rsi/lighter_flame.png | Bin 0 -> 2011 bytes .../Tools/Lighters/execzippo.rsi/meta.json | 26 +++ .../Tools/Lighters/execzippo.rsi/open.png | Bin 0 -> 1594 bytes .../Tools/Lighters/zippo.rsi/closed.png | Bin 0 -> 245 bytes .../Lighters/zippo.rsi/lighter_flame.png | Bin 0 -> 2011 bytes .../Tools/Lighters/zippo.rsi/meta.json | 26 +++ .../Objects/Tools/Lighters/zippo.rsi/open.png | Bin 0 -> 1492 bytes 238 files changed, 2069 insertions(+), 6 deletions(-) create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/case.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigar.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/packs.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/lighters.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/matchbooks.ftl create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml delete mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/fill.txt create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/case.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml delete mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/fill.txt create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Tools/lighters.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Tools/matchbooks.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Tools/matches.yml create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/burnt-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig10.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig11.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig12.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig13.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig14.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig15.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig16.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig17.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig18.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig19.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig20.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig7.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig8.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig9.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/open.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/burnt-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/unlit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/unlit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/unlit-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/unlit-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig10.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig11.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig12.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig13.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig14.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig15.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig16.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig17.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig18.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig19.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig20.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig7.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig8.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig9.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/open.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/cig1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/cig2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/cig3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/cig4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/open.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/burnt-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/unlit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/unlit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/unlit-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/unlit-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig10.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig11.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig12.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig13.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig14.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig15.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig16.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig17.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig18.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig19.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig20.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig7.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig8.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig9.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/open.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig7.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/open.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/burnt-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/lit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/lit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/unlit-equipped-MASK.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/unlit-icon.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/open.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket0.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket0.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket0.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket0.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox-open.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox6.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket0.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket1.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket2.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket3.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket4.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket5.png create mode 100644 Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket6.png create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/lighter_flame.png create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/open.png create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/zippo.rsi/closed.png create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/zippo.rsi/lighter_flame.png create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/zippo.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Tools/Lighters/zippo.rsi/open.png diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/case.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/case.ftl new file mode 100644 index 00000000000..103c074dd98 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/case.ftl @@ -0,0 +1,4 @@ +ent-ADTCigarCase = футляр для сигар + .desc = Футляр для хранения сигар, когда вы их не курите. +ent-ADTTarbackCase = футляр для сигар Tarback + .desc = Красивый футляр для хранения сигар Tarback производства Reisland Tobacco. Сделано в Колумбии diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigar.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigar.ftl new file mode 100644 index 00000000000..aebffda6005 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigar.ftl @@ -0,0 +1,5 @@ +ent-ADTTarbackCigar = сигара Tarback + .desc = Сигара от Reisland Tobacco. Генеральный хирург предупреждает, что курение может быть опасным для здоровья. Компания Reisland Tobacco заявляет, что это всё пиздеж, а генеральный хирург - сука. Произведен и выпущен в Колумбии. +ent-ADTTarbackCigarSpent = { ent-ADTTarbackCigar } + .desc = { ent-ADTTarbackCigar.desc } + diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl new file mode 100644 index 00000000000..34919170b72 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl @@ -0,0 +1,6 @@ +ent-ADTLuckySlothsCigarette = сигарета Lucky Sloths + .desc = От этой сигареты прямо веет потом грязных морпехов... +ent-ADTWeYaGoldCigarette = сигарета We-Ya Gold + .desc = Для тех, кто ценит здоровье, но предпочитает делать это с искажённым вкусом! +ent-ADTExecutiveSelectCigarette = сигарета Executive Select + .desc = Эти сигареты - вершина роскоши. Они мягкие, прохладные, пахнут победой... и сигаретным дымом. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/packs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/packs.ftl new file mode 100644 index 00000000000..ca4a84d1ffa --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/packs.ftl @@ -0,0 +1,8 @@ +ent-ADTCigarettePackLuckySlothsMini = мини пачка сигарет Lucky Sloths + .desc = Эта небольшая пачка сигарет идёт в боевой набор каждого морпеха Транс-Солнечной Федерации. Они совершенно бесплатны для морпехов, но не для вас. +ent-ADTCigarettePackLuckySloths = пачка сигарет Lucky Sloths + .desc = Lucky Sloths — это отличный табак! 9 из 10 врачей согласны, что Lucky Sloth... являются главной причиной рака легких у пилотов галактики. +ent-ADTCigarettePackWeYaGold = пачка сигарет We-Ya Gold + .desc = Компания We-Ya Gold производит самые лучшие сигареты в мире! А также имеет лучших юристов галактики на случай, если вы собираетесь это отрицать. +ent-ADTCigarettePackExecutiveSelect = пачка сигарет Executive Select + .desc = Сигареты Executive Select — для тех, кто хочет стремительно подняться по лестнице карьерных заболеваний! diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/lighters.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/lighters.ftl new file mode 100644 index 00000000000..4d5c9546ad1 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/lighters.ftl @@ -0,0 +1,5 @@ +ent-ADTZippo = Зажигалка Zippo + .desc = Необычная стальная зажигалка Zippo. Зажигайте со вкусом. +ent-ADTZippoExec = Зажигалка We-Ya Gold + .desc = Замечательная зажигалка Zippo, выполненная в фирменных черно-золотых тонах. + diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/matchbooks.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/matchbooks.ftl new file mode 100644 index 00000000000..b6118121bde --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/matchbooks.ftl @@ -0,0 +1,10 @@ +ent-ADTLuckySlothsMatchBook = спичечный коробок Lucky Sloths + .desc = Небольшая коробочка с дешевыми бумажными спичками. Изготовлено Lucky Sloths, так что не удивляйтесь, если вы обожжете руку, пытаясь зажечь спичку об это. +ent-ADTBrownMatchBook = коричневый спичечный коробок + .desc = Небольшая коробочка с дешевыми бумажными спичками. Изготовлена из обычной коричневой бумаги. Их вроде как можно зажечь... +ent-ADTExecutiveSelectMatchbook = спичечный коробок Executive Select + .desc = Небольшая коробочка спичек из дорогой бумаги для настоящих ценителей. Они однозначно зажигаются каждый раз! +ent-ADTElectroMatchbook = спичечный коробок Electro + .desc = Небольшая коробочка дешевых бумажных спичек. Удачи вам в том, чтобы зажечь их. +ent-ADTExecutiveWEYAMatchbook = спичечный коробок We-Ya Gold + .desc = Небольшая коробочка спичек из дорогой бумаги. Эти зажигаются почти каждый раз. По крайней мере, так написано на упаковке. diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml new file mode 100644 index 00000000000..9ced12cbd97 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/cigarette.yml @@ -0,0 +1,83 @@ +- type: entity + id: ADTLuckySlothsCigarette + parent: BaseCigar + name: lucky sloths cigarette + description: We shorten the path to chronic diseases with pleasure and laziness! + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi + state: unlit-icon + - type: Tag + tags: + - Cigarette + - Trash + - type: SpaceGarbage + - type: Clothing + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi + slots: [ mask ] + equippedPrefix: unlit + - type: Item + size: Tiny + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi + heldPrefix: unlit + - type: Construction + graph: smokeableCigarette + node: cigarette + - type: StaticPrice + price: 12 + +- type: entity + id: ADTWeYaGoldCigarette + parent: BaseCigar + name: We Ya Gold cigarette + description: For those who value health, but prefer to do it with a distorted taste! + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi + state: unlit-icon + - type: Tag + tags: + - Cigarette + - Trash + - type: SpaceGarbage + - type: Clothing + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi + slots: [ mask ] + equippedPrefix: unlit + - type: Item + size: Tiny + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi + heldPrefix: unlit + - type: Construction + graph: smokeableCigarette + node: cigarette + - type: StaticPrice + price: 24 + +- type: entity + id: ADTExecutiveSelectCigarette + parent: BaseCigar + name: Executive select cigarette + description: Executive Select cigarettes are for those who want to rapidly climb the ladder of career diseases! + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi + state: unlit-icon + - type: Tag + tags: + - Cigarette + - Trash + - type: SpaceGarbage + - type: Clothing + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi + slots: [ mask ] + equippedPrefix: unlit + - type: Item + size: Tiny + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi + heldPrefix: unlit + - type: Construction + graph: smokeableCigarette + node: cigarette + - type: StaticPrice + price: 40 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml new file mode 100644 index 00000000000..ffa69a1c16e --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml @@ -0,0 +1,185 @@ +- type: entity + parent: CigPackBase + id: ADTCigarettePackLuckySlothsMini + name: lucky sloths mini packet + description: These four-packs of Luckies come in every MRE. They're not as good as the Habana Reals that come in the LACN MREs, but at least they're free. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi + layers: + - state: closed + - state: open + map: ["openLayer"] + visible: false + - state: cig1 + map: ["cig1"] + visible: false + - state: cig2 + map: ["cig2"] + visible: false + - state: cig3 + map: ["cig3"] + visible: false + - state: cig4 + map: ["cig4"] + visible: false + - type: Storage + grid: + - 0,0,3,0 + whitelist: + tags: + - Cigarette + - type: StorageFill + contents: + - id: ADTLuckySlothsCigarette + amount: 4 + - type: ItemCounter + count: + tags: [Cigarette] + composite: true + layerStates: + - cig1 + - cig2 + - cig3 + - cig4 + - type: StaticPrice + price: 40 + +- type: entity + parent: CigPackBase + id: ADTCigarettePackLuckySloths + name: lucky sloths packet + description: Lucky Sloths Means Fine Tobacco! 9/10 doctors agree on Lucky Sloths...as the leading cause of marine lung cancer. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi + layers: + - state: closed + - state: open + map: ["openLayer"] + visible: false + - state: cig1 + map: ["cig1"] + visible: false + - state: cig2 + map: ["cig2"] + visible: false + - state: cig3 + map: ["cig3"] + visible: false + - state: cig4 + map: ["cig4"] + visible: false + - state: cig5 + map: ["cig5"] + visible: false + - state: cig6 + map: ["cig6"] + visible: false + - state: cig7 + map: ["cig7"] + visible: false + - state: cig8 + map: ["cig8"] + visible: false + - state: cig9 + map: ["cig9"] + visible: false + - state: cig10 + map: ["cig10"] + visible: false + - state: cig11 + map: ["cig11"] + visible: false + - state: cig12 + map: ["cig12"] + visible: false + - state: cig13 + map: ["cig13"] + visible: false + - state: cig14 + map: ["cig14"] + visible: false + - state: cig15 + map: ["cig15"] + visible: false + - state: cig16 + map: ["cig16"] + visible: false + - state: cig17 + map: ["cig17"] + visible: false + - state: cig18 + map: ["cig18"] + visible: false + - state: cig19 + map: ["cig19"] + visible: false + - state: cig20 + map: ["cig20"] + visible: false + - type: Storage + grid: + - 0,0,9,1 + whitelist: + - type: StorageFill + contents: + - id: ADTLuckySlothsCigarette + amount: 20 + - type: ItemCounter + count: + tags: [Cigarette] + composite: true + layerStates: + - cig1 + - cig2 + - cig3 + - cig4 + - cig5 + - cig6 + - cig7 + - cig8 + - cig9 + - cig10 + - cig11 + - cig12 + - cig13 + - cig14 + - cig15 + - cig16 + - cig17 + - cig18 + - cig19 + - cig20 + - type: StaticPrice + price: 120 + +- type: entity + parent: ADTCigarettePackLuckySloths + id: ADTCigarettePackWeYaGold + name: We-Ya gold packet + description: Paving Better Worlds, and rolling better cigarettes. These fancy cigarettes are Weston-Yamada's entry into the market. Comes backed by a fierce legal team. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi + - type: StorageFill + contents: + - id: ADTWeYaGoldCigarette + amount: 20 + - type: StaticPrice + price: 240 + +- type: entity + parent: ADTCigarettePackLuckySloths + id: ADTCigarettePackExecutiveSelect + name: executive select packet + description: These cigarettes are the height of luxury. They're smooth, they're cool, and they smell like victory...and cigarette smoke. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi + - type: StorageFill + contents: + - id: ADTExecutiveSelectCigarette + amount: 20 + - type: StaticPrice + price: 400 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/case.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/case.yml new file mode 100644 index 00000000000..5de030f6093 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/case.yml @@ -0,0 +1,107 @@ +- type: entity + parent: CigarCase + id: ADTCigarCase + name: cigar case + description: A case for holding your cigars when you are not smoking them. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi + layers: + - state: closed + - state: open + map: ["openLayer"] + visible: false + - state: cig1 + map: ["cig1"] + visible: false + - state: cig2 + map: ["cig2"] + visible: false + - state: cig3 + map: ["cig3"] + visible: false + - state: cig4 + map: ["cig4"] + visible: false + - state: cig5 + map: ["cig5"] + visible: false + - state: cig6 + map: ["cig6"] + visible: false + - state: cig7 + map: ["cig7"] + visible: false + - type: Storage + grid: + - 0,0,6,0 + whitelist: + tags: + - Cigar + - type: StorageFill + contents: + - id: Cigar + amount: 7 + - type: ItemCounter + count: + tags: [Cigar] + composite: true + layerStates: + - cig1 + - cig2 + - cig3 + - cig4 + - cig5 + - cig6 + - cig7 + - type: StaticPrice + price: 200 + +- type: entity + parent: CigarCase + id: ADTTarbackCase + name: tarbacks case + description: Beautiful Tarback cigar case by Reisland Tobacco. Made in Colombia + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi + layers: + - state: closed + - state: open + map: ["openLayer"] + visible: false + - state: cig1 + map: ["cig1"] + visible: false + - state: cig2 + map: ["cig2"] + visible: false + - state: cig3 + map: ["cig3"] + visible: false + - state: cig4 + map: ["cig4"] + visible: false + - state: cig5 + map: ["cig5"] + visible: false + - type: Storage + grid: + - 0,0,4,0 + whitelist: + tags: + - Cigar + - type: StorageFill + contents: + - id: ADTTarbackCigar + amount: 5 + - type: ItemCounter + count: + tags: [Cigar] + composite: true + layerStates: + - cig1 + - cig2 + - cig3 + - cig4 + - cig5 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml new file mode 100644 index 00000000000..ee344833ed7 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/cigar.yml @@ -0,0 +1,40 @@ +- type: entity + id: ADTTarbackCigar + parent: Cigar + name: tarback cigar + description: "Tarbacks by Reisland Tobacco. The Surgeon General has declared that smoking Tarbacks can be hazardous to one’s health. Reisland Tobacco has declared that the Surgeon General is a bitch. Rolled in Columbia." + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi + state: unlit-icon + - type: Tag + tags: + - Cigar + - Trash + - type: Clothing + sprite: ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi + slots: [ mask ] + equippedPrefix: unlit + - type: Item + size: Tiny + sprite: Objects/Consumable/Smokeables/Cigars/cigar.rsi + heldPrefix: unlit + +- type: entity + id: ADTTarbackCigarSpent + parent: ADTTarbackCigar + suffix: spent + components: + - type: Sprite + state: burnt-icon + - type: Smokable + state: Burnt + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 20 + - type: Tag + tags: + - Cigar + - Trash + - Burnt diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigars/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Tools/lighters.yml b/Resources/Prototypes/ADT/Entities/Objects/Tools/lighters.yml new file mode 100644 index 00000000000..db9da334815 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Tools/lighters.yml @@ -0,0 +1,34 @@ +- type: entity + name: zippo lighter + description: A fancy steel Zippo lighter. Ignite in style. + parent: FlippoLighter + id: ADTZippo + components: + - type: Sprite + sprite: ADT/Objects/Tools/Lighters/zippo.rsi + layers: + - state: closed + map: ["base"] + - state: open + map: ["top"] + visible: false + - state: open + map: ["open"] + visible: false + - state: lighter_flame + map: ["flame"] + visible: false + shader: unshaded + - type: StaticPrice + price: 120 + +- type: entity + name: We-Ya executive zippo lighter + description: A remarkable Zippo lighter embellished in the Company's black and gold shade. + parent: ADTZippo + id: ADTZippoExec + components: + - type: Sprite + sprite: ADT/Objects/Tools/Lighters/execzippo.rsi + - type: StaticPrice + price: 300 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Tools/matchbooks.yml b/Resources/Prototypes/ADT/Entities/Objects/Tools/matchbooks.yml new file mode 100644 index 00000000000..c12fd3b92c0 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Tools/matchbooks.yml @@ -0,0 +1,111 @@ +# TODO RMC14 different light/burn chances per matchbook +- type: entity + parent: Matchbox + id: ADTLuckySlothsMatchBook + name: lucky sloths matchbook + description: A small book of cheap paper matches. Good luck getting them to light. Made by Lucky Sloths, but you'll be anything but lucky when you burn your hand trying to light a match on this. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi + layers: + - state: mpacket + - state: mpacket0 + map: ["openLayer"] + - state: mpacket1 + map: ["mpacket1"] + visible: false + - state: mpacket2 + map: ["mpacket2"] + visible: false + - state: mpacket3 + map: ["mpacket3"] + visible: false + - state: mpacket4 + map: ["mpacket4"] + visible: false + - state: mpacket5 + map: ["mpacket5"] + visible: false + - state: mpacket6 + map: ["mpacket6"] + visible: false + - type: Item + size: Tiny + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi + heldPrefix: null + - type: Storage + grid: + - 0,0,5,0 + whitelist: + tags: + - Matchstick + - type: StorageFill + contents: + - id: Matchstick + amount: 6 + - type: ItemCounter + count: + tags: [Matchstick] + composite: true + layerStates: + - mpacket1 + - mpacket2 + - mpacket3 + - mpacket4 + - mpacket5 + - mpacket6 + - type: StaticPrice + price: 30 + +- type: entity + parent: ADTLuckySlothsMatchBook + id: ADTBrownMatchBook + name: brown matchbook + description: A small book of cheap paper matches. Good luck getting them to light. Made with generic brown paper. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi + - type: Item + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi + - type: StaticPrice + price: 20 + +- type: entity + parent: ADTLuckySlothsMatchBook + id: ADTExecutiveSelectMatchbook + name: executive select matchbook + description: A small book of expensive paper matches. These ones light almost every time! + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi + - type: Item + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi + - type: StaticPrice + price: 60 + + +- type: entity + parent: ADTLuckySlothsMatchBook + id: ADTElectroMatchbook + name: Electro matchbook + description: A small book of cheap paper matches. Good luck getting them to light. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi + - type: Item + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi + - type: StaticPrice + price: 20 + +- type: entity + parent: ADTLuckySlothsMatchBook + id: ADTExecutiveWEYAMatchbook + name: We-Ya gold matchbook + description: A small book of expensive paper matches. These ones light almost every time, or so the packaging claims. + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi + - type: Item + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi + - type: StaticPrice + price: 30 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Tools/matches.yml b/Resources/Prototypes/ADT/Entities/Objects/Tools/matches.yml new file mode 100644 index 00000000000..6079851a332 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Tools/matches.yml @@ -0,0 +1,53 @@ +- type: entity + name: match box + description: matchbox + parent: Matchbox + id: ADTMatchbox + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi + layers: + - state: matchbox + - state: matchbox-open + map: ["openLayer"] + - state: matchbox1 + map: ["matchbox1"] + visible: false + - state: matchbox2 + map: ["matchbox2"] + visible: false + - state: matchbox3 + map: ["matchbox3"] + visible: false + - state: matchbox4 + map: ["matchbox4"] + visible: false + - state: matchbox5 + map: ["matchbox5"] + visible: false + - state: matchbox6 + map: ["matchbox6"] + visible: false + - type: Item + sprite: Objects/Tools/matches.rsi + heldPrefix: matchbox + size: Small + - type: Storage + grid: + - 0,0,5,1 + whitelist: + tags: + - Matchstick + - type: ItemCounter + count: + tags: [Matchstick] + composite: true + layerStates: + - matchbox1 + - matchbox2 + - matchbox3 + - matchbox4 + - matchbox5 + - matchbox6 + - type: StaticPrice + price: 20 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml index 4701d50c013..17390966d1c 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_service.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_service.yml @@ -44,7 +44,7 @@ sprite: Objects/Consumable/Smokeables/Cigarettes/Cartons/green.rsi state: closed product: CrateServiceSmokeables - cost: 1500 + cost: 2015 # ADT TWEAK category: cargoproduct-category-name-service group: market diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index f8e708b85d9..9528eb40a42 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -184,7 +184,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSmokesFilled - cost: 1200 + cost: 9460 # ADT TWEAK category: cargoproduct-category-name-service group: market diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml index 4b21e05235b..c29f698e590 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/cigs.yml @@ -6,13 +6,32 @@ CigPackBlue: 2 CigPackBlack: 2 CigPackMixed: 2 + # ADT Tweak Start + ADTCigarettePackLuckySlothsMini: 2 + ADTCigarettePackLuckySloths: 2 + ADTCigarettePackWeYaGold: 2 + ADTCigarettePackExecutiveSelect: 2 + # ADT Tweak End CigarCase: 1 + ADTCigarCase: 1 #ADT Tweak SmokingPipeFilledTobacco: 1 Vape: 1 - Matchbox: 5 + # ADT Tweak Start + # Matchbox: 5 + ADTMatchbox: 5 + ADTBrownMatchBook: 5 + ADTElectroMatchbook: 2 + ADTLuckySlothsMatchBook: 2 + ADTExecutiveWEYAMatchbook: 2 + ADTExecutiveSelectMatchbook: 2 + # ADT Tweak End PackPaperRollingFilters: 3 CheapLighter: 4 Lighter: 2 - FlippoLighter: 2 + # ADT Tweak Start + ADTZippo: 2 + ADTZippoExec: 1 + # FlippoLighter: 2 + # ADT Tweak End emaggedInventory: CigPackSyndicate: 1 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml index 654aa29b008..e193eebed97 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/packs.yml @@ -135,6 +135,10 @@ - cig5 - cig6 - type: Appearance + # ADT Tweak Start + - type: StaticPrice + price: 40 + # ADT Tweak END - type: entity id: CigPackGreen @@ -146,6 +150,10 @@ sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/green.rsi + # ADT Tweak Start + - type: StaticPrice + price: 120 + # ADT Tweak END - type: entity id: CigPackRed @@ -157,6 +165,10 @@ sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/red.rsi + # ADT Tweak Start + - type: StaticPrice + price: 120 + # ADT Tweak END - type: entity id: CigPackBlue @@ -168,6 +180,10 @@ sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/blue.rsi + # ADT Tweak Start + - type: StaticPrice + price: 120 + # ADT Tweak END - type: entity id: CigPackBlack @@ -179,6 +195,10 @@ sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi - type: Item sprite: Objects/Consumable/Smokeables/Cigarettes/Packs/black.rsi + # ADT Tweak Start + - type: StaticPrice + price: 120 + # ADT Tweak END - type: entity id: CigPackSyndicate diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml index 44edce5e070..b2e781859b0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigarettes/rolling_paper.yml @@ -38,6 +38,10 @@ amount: 2 - id: CigaretteFilter amount: 2 + # ADT Tweak Start + - type: StaticPrice + price: 40 + # ADT Tweak END - type: entity id: PaperRolling diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml index 5e91d53847f..bd9ea121895 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Cigars/case.yml @@ -62,6 +62,10 @@ - cigar7 - cigar8 - type: Appearance + # ADT Tweak Start + - type: StaticPrice + price: 180 + # ADT Tweak END - type: entity id: CigarGoldCase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml index 79c568802c5..fb19c9730bc 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Pipes/pipe.yml @@ -40,6 +40,10 @@ path: /Audio/Weapons/Guns/Empty/empty.ogg ejectSound: path: /Audio/Weapons/Guns/Empty/empty.ogg + # ADT Tweak Start + - type: StaticPrice + price: 100 + # ADT Tweak END - type: entity id: SmokingPipeFilledCannabis diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml index 1aeef4f0668..3d86538e5f5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Smokeables/Vapes/vape.yml @@ -7,3 +7,7 @@ - type: Sprite sprite: Objects/Consumable/Smokeables/Vapes/vape-standard.rsi state: icon + # ADT Tweak Start + - type: StaticPrice + price: 100 + # ADT Tweak END diff --git a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml index c35d67e7eb4..5162ebfec24 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/lighters.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/lighters.yml @@ -88,6 +88,10 @@ radius: 1.1 #smallest possible color: orange - type: ItemTogglePointLight + # ADT Tweak Start + - type: StaticPrice + price: 80 + # ADT Tweak END - type: entity name: cheap lighter @@ -117,6 +121,10 @@ - ReagentId: WeldingFuel Quantity: 4 maxVol: 4 #uses less fuel than a welder, so this isnt as bad as it looks + # ADT Tweak Start + - type: StaticPrice + price: 40 + # ADT Tweak END - type: entity name: flippo lighter diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/burnt-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/burnt-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1d573c700e21b65afa487a15cc5369ff26886be0 GIT binary patch literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Zk{fVArY;~ z2@AQ*JZv~vX6hw?Y+>+p^>bP0l+XkKwU#D} literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-equipped-MASK.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-equipped-MASK.png new file mode 100644 index 0000000000000000000000000000000000000000..2be0bd034aaec3552a365204686cbac9c617dc1a GIT binary patch literal 632 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-HD>U^4P_aSW-L z^Y*TxcXXfx+k?v|&6bvkD>|=Wsc*Qjb#-&~(sB)pF1<1ht5BIYmo9C5P_Xo!tW|7* z=r8835F?hZ-5r6;FZ&uv&3d-`WbHi5hkNJji8=9U-V~s1UYenyQ)f@%{=RC}sV)y) z4dty1I$DCAoHP{<^i-OhYPXI~&5NI&nYnJZUiaIQEqCNz{{Ej;xA@H6+dKXo-FkP= z1uNdu@i*_BH*cQ2;m_A*qwnV)pQ|r@ZxR2M|L`Y9phwVvM5}JJlZIU4l>PuN4u;D~ zOKQKqsQvfiHz%4p28OhbqdVAEAMSrI$&qX<%)rp_|Kxu^pu2n+fB)(^JA3}$KYRYn zsJlCN>A%ZLU+qMN-(D~Hck{7QY|YFZI}F1PgseOqlOQ{)${6_Hq8!`^(;2ua~a=C-@!c z40K?iHj(+zv2M;(N9lx!E72Ek&!|4-pux&ABar`=|NES&J8NT?E!~;7OK02Vi$&Fo zcEA2Co%-(Hv8Vd$-ac!+mKpKy)U&#Ml5<*~u9u&(vs|wH-|Fh)KUdXDOyftl3CO=P yPcZe6hWtVi0fuE~o6D{({{D0Edvy$jYA^M**@~x4lE3x~B^ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c6976eb12cdbabe2f18126aeda1fda5231a2024f GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D%zxjkJRLn`LH zy=&;j>?p$az}{?SE~}uRi%o;Oz!9enqHlCurOl_#iE|AT=QP|s2vfHGy z)m!DA-jm;_9&UVp*1-Dep1UkSvl$pNE-zT+b=$P0&owh*y4W7?trys=6aH0|GB&T$ zI(%`(bQS66=Bl3G?Btgv$=T1_boc(L-ydD`%CBY3{~4~m{PCamr8ECbF7}^vcJb*+ zD!WhT7oXlAB5n|QVA0DvcVr#8&#^UZtK?<`TLmN@m>b9Lzh}Q&&vVniuSTZ#Lh28k z%(x?ep+0Z9{lf>Z)~TF)_4@CfPuIV(!*l>?hrKi3Z8HD+_uu?m|LPCcUyujMnY@se Wb;=EUQYN?y#PxLbb6Mw<&;$S?hlu$A literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..efad7fe01a400e3de8e96cd56f4d66693d1da64d GIT binary patch literal 639 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-HD>V6yadaSW-L z^Y-q-KH)$K)(1CP{R@^bT~3itWL+Pyaaq^09i^9ZM4L8rrMU*ObY=;MO;Rwhaq@MQ zZ8K4cFv$`~IU{6tHt&}4+nW2#U+&ziR-0+~Ul(LO3_LJ9{dAMp`iILNe_=|PKI@0T zrc}PU8muaAKRbdPX1#g1t*&B6M0o$R{O*4_Ti15)N#w_$Uq8=%&J42%PUoCCVwE(7pW(-JbCyLS z6D(9!yclmMW>0^@EB<_vm(k3a(=~sTex&q!3W<6X6t7cI)fY- z7O1}Z`9{6@^oiI0bMNoo(e-S;zwzgnum5a5S!!Z$I)DGU_kDNyF%4vp+2kx;RWm1! zA?MWvIlFg`lEBb?G-ZMYYs&q*ua$S$M~kLLh8;d?^+}<`?X%X*dZQgZ&%W!eTlDk! ztF36T?u4?in`j$r{Q)35V#VU~knx6)nj8$6y(lD7a?1(mdKI;Vst E0E;>XDgXcg literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/lit-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..995e2484a8d33832e351adc0064a0e62eaeab83e GIT binary patch literal 628 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-HD>VAAt+aSW-L z^Y-q-KB+(vwg|1$sjlx60Z?aM>p3TZ@4)ZbwUuFqyN(jBIo-oVx+SM=dtu&`(3HAz3;wh3eWx${`8f2=pWofS z8Fnzk;PeDV^$UzHpH2~*H;^!6z zYA(GpbL!RE_Ju$FO>fDq3V#|awdVW6pYiMRE}i$^o<9G+;s4v~ufP2Lw|&DOdHq{2 zUmyS8`G*b2V3-R3@bq4>Onk%F7;(8={?I^?s}-Sb zJTGS4kI!-Xe0%bZ_xESo`v3d*YvOzRjyd`;lMwWu>C5KFT-Rv(3pcbNEzfG9hycTh zBOhzNy(^Hb`d6F3i|6e3f6b?B{xc$U!dMQrPYPZXYF9CS(6`L7lk=41SlZAM?Bt}W zF#W~F`X=_*wOU<^q;mNcr56GN=ENVMk+bg4)^q-ReD#f=-^FKNsDYUTrxld_<}Egx qA_x>v2*3FJb9vgvpHN8$;XkauzbEdE3N{x833E%9>z literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/meta.json new file mode 100644 index 00000000000..696f82731bd --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/meta.json @@ -0,0 +1,182 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 modified by Hyrmik", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "unlit-equipped-MASK", + "directions": 4 + }, + { + "name": "lit-equipped-MASK", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "burnt-icon" + }, + { + "name": "unlit-icon" + }, + { + "name": "lit-icon", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "unlit-inhand-left", + "directions": 4 + }, + { + "name": "unlit-inhand-right", + "directions": 4 + }, + { + "name": "lit-inhand-left", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "lit-inhand-right", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-equipped-MASK.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-equipped-MASK.png new file mode 100644 index 0000000000000000000000000000000000000000..db32687d3e4a6d7fe5a2008cb04f982235bceecf GIT binary patch literal 192 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|sytmBLn`LH zy|s|{PyhqV1!qOih=vCo%m$9`2M&q(1pZcMIL%Sd#HL_zh)KmGWaAAp-nQ?5?lP5g zG8~vc>kDtr>}Az@lfRZs4f1+#12hi=J`^v0_j~v0#j|B^$K2n3=KaZ?*8+d-x942{ jS8@5-L;8#$H4Th*J1a$*_qVRd25~)I{an^LB{Ts5_^U-R literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..fc4b50c96f9a2af3f033ed09ab23075b9dad8ccd GIT binary patch literal 138 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}E}kxqArY;~ z2@V1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_cigarette.rsi/unlit-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..2d0363d668bd3bc53fc9ff25476a830bebeb4036 GIT binary patch literal 177 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|vOQfKLn`LH zz2(i@;vm3sL9O}#lhBDYo`NW6<#e9HLkx-@2bkCoWj!c=WXl*@`@RdPhk>DD;;WSp z=6tqWTby%P=&yy`yPr$9)bCQ;S1P@9%JFwBU^NU4;yb>+uPYTUn8M4*!0`MpW1?uw#wxz+DJ?y`Rr_PXRRBUll`gKoQfXWehyPye6D!0=%D Yy|n*D#dmA(xs$jYmy*DFEBHQ^PPS zJ#id^@B1C)02rP;=n%oW#;Jo1b}9-X43Knn7_R!X?|I%%kK;JB9d)MwzSy|J0NVT$ zym=OU?cDD4Ffa|oB~=6ag3Irh-lQ3TCL{$QGPAqqSK@nA4}ixnI$ziNu3ny??x-FF zV45aG%lBH}_-{hJ$^lUS@d{3ii^_Izb`OiMg?fN63~R%&WnSd~c*SZl>5vPl3c__= zkdf3DSe6Ar5YUU}7mDF{QE8k$st1!w_|4zK}D8_3sXyomPz00000@?kEP)fW&k{1IKGgMxdg!y@W-TriVBA`08c_8WJ%b#ZkjX7S=HGPCZ>ywA*hyJHv@ ztR(;wfFwzycsxGSGZ+j&Rn-u801P*FW6+16InEeJAdP4tr~!;*42mCF(pMB^sz;V( z($1^^$w z{%x5Q<2)rkSNH>@QYonS8n7DPgu-D38rKKDEqb{Fpmw4eNSs_j|F{f=(~56vTpsZU z&~+UIL4dWJbGRRNAU&gfG`-vb@D+>SudQ#g63t<2YFn*VfkjMPAc`Vrb&d2(=@LAd zpL{e&+L!wCpGVX917P(x-+PcZ15ox%b!)jr>v!}3J}JCk#Y7o1pkqP^8&05GB;52s zhki(=v%oMN3AXRCiW$J!XIHR$ zMOY!20K7%!)PQS6uph|(0dfdg;oezJfS4Xqth^t?_FXNMh2jV++^@)R<`|A%+Hsk- ofNEgMng0tQ2rU7Y01F5B1%v|94P^}^(EtDd07*qoM6N<$f|#u1H2?qr literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig11.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig11.png new file mode 100644 index 0000000000000000000000000000000000000000..9341d0e3954157b8ff435a1e7b98677a2511c447 GIT binary patch literal 559 zcmV+~0?_@5P)oF zG2@s62mwfv)b;!QV>QiY6QxqgWjg?ww>N!gpff?~g9NF|3&9Q04*HP(iD_+FmPcxm z$)uJG!75PV>z5nAQ~!iq?-{Qo<0CaXmj75}N6>NB;mN}o#LnMTjAQFi{ zDJoh!6VBj~T?ubo%kRb4e~qHp4?st8`TGqCW|!(9D?zHU2Jzz6EXerPCoO2*fb%1ClvuZ3oZ|HS=iiUI)?d$(%F_90C}EFd6Ib zL_-+BSmy!b!5I;S5CSk4nNb4+GeT`g{s(9q>gMKA4uLR@R;+e!!|H9p6+^m96>e2z xG;%U0EpNXAxcLC?0YT^J;ITtT z58XNh9ioqW$0G1r=PuGgp}lmFP&Wu{=}Q8sC_>2Qo!o7;)@EYFi?4@w)_t7k_s+bt z>i~KjeE=x{P172|V6da6R;!^MBfGR%zPzInuYluP!1JpwSBwnZZSl9Jm zHL+NX=Uk`+6vXBg2JqfKLBIVn9*Ir=sA15c1xMZJM-!#t;`MYn8VW7sEX;2oQQtDk$XKy+Sf`UM7<0c@PlU6x^WysB= zU)L6hbxr1^G0-J|7Kk=u>z-^#1K9iQFm|qpEQAz5dz0Bc;8+nFcjf;89Yf2!y~-94 zrs2)1`WTi@a-Jz98r0!#O-7ZIIcY`bmD&QKi3KbF7eF_n56}nbIlw3Qn%-%d7S7)Q O0000vj^v!uyQac6f==6o}A zXLh^M=I8)O0ce_54g>kp+L8nm(~gfM^^^ke#Cl(%(V zchtmUF`mzZSs*3WuP}h;@eTT8#kfB<=BTm2JP;458gMcW&+p>yWVPY>tDbQOz$r>` zX72m{|D^z&Mpl~a!-xLvJ^*dMLeI|~5H^Q!9elvlN&=Vr3q0TMEUE_xg+dsf+rs4` zGg(U5xpcf*$?;kyt#Sa0LVOuhn+X)wYk6Sf;72z1*3<*!^LgBR9x!sWjkC|(ulb5; zl>^Wb>q9TnpBapMqb+kXnS@M8EkPs_fpKB*_Uy6>r#n);PZ}_-@}rnXlo{k0MBkuoSRdS+X^<1|QtDk`vNxRtK|vt4aTSov zNvj;dGUVpb%C!YzU6VO!47dc)0MTS@J(CS-0DGP5jO%Aa7D5W3xybAqsGAXLyYf9i z+t4y^9%Tav)9_+dy$!Rc=UtnfKDl!^5nUhwuU#TS!>R52({{nC$IshGjwgY?v X!ja?1&r64a00000NkvXXu0mjfTf6%y literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig14.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig14.png new file mode 100644 index 0000000000000000000000000000000000000000..a7bb9045090540e3d525f122db36c7be39c5ad72 GIT binary patch literal 581 zcmV-L0=oT)P)FH@&?_006_&9vuyL)(_&-?4n ze*Cj~073wYqEuWi*O#6`p@38>)h8W*!u2^P@_7Ho>4XBM!VAF-pu3%zeVZ`as;aj2 zghC;sCfsQt#n&%4fbHQG>O(bnI5gSTV}jYhFQGkP4fZbX;_f8U_W6r?-5mg{N>LW> zz^^3)U>#X$dI)c7@$UfW_~i#0C%~(Z;nJPM%xVnh`%6vrc4t{WfXCy(_`(*>4_U}c z45i~pwMIWz@=6CF<)dNDY{rmZ4`XEGpkvkd*5m_Zvsv8Ra_}8(x4f_S{lSX|`J~lj>CLe%a#aG2A1X%#d z9BH;T-TvBr@_>1zzlse7SU`qB42{+Utun%y2O0h@g}wzk`_h>ZBm$`i*8nM;ywU;8 zKqEX*y*5G2YYHcihAsg#L9_&$&qO5*P+w;^B9{|_AyMKCi*5YTcI7^X_L{&DV)5#{R%AsSI3+q{}Dhp)C1@N{5!x0tMTUG TS7Iem00000NkvXXu0mjfqu~Q+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig15.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig15.png new file mode 100644 index 0000000000000000000000000000000000000000..f68d351a393202699f6e6bc91ebac2029a7961ae GIT binary patch literal 569 zcmV-90>=G`P)q$gGRCt{2ma$6$Q5?s=LJ~%a5E6j|ftty!I=Ivy5Hv?aV?(1u zTSHrvZ4Ip~jDhHrf>`JZXatE6CNdu-; z{wn4XWCnQ#F+JBZY!7bEG{}ojDfKO=vM-$tK|vrb<0c@PlU6x^ZOF}ojcXgkz9w_h zm>3d32Sk^#{Y*Bb0b2XqX579avJg@L-A&f&fwmQ)@lgH`&@r^lyQ}N~VH)17s*mB_ zWyZ0DSe-h&Uz1VgWKLSqd8M{MXkx+2{{=9N7z2y}Mh@@;eiG-gs?L=100000NkvXX Hu0mjf=Dz=* literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig16.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig16.png new file mode 100644 index 0000000000000000000000000000000000000000..124f14abab895c14424329f960f521efe60c4ace GIT binary patch literal 575 zcmV-F0>J%=P)(Dg<|AQ`Fq=RC6DUd$gASlU70;woe$mShgGx1|4X6fSV;ho)moaZ+) z@62uw{yDk;QUIE!m7Pv!TTMQnM=F)FDF-0)(zF9Pe05Mdpg}8(LI?wtTn>aje7vpe zdQ(j>800zbx&~5W{R#uvv#-#z72~0xzp2IqvqLn>yUVcD zf2069jqL4w9>rqO8UWgUxxOznB$px2w9llHQ_TK02 zzPqFr{~T2SApk{D3LcNAq9&WoB9TbcNCzPE+^`!NH~%7Axo6`ht9bR4RoV*Dbmt zE7*HaR?NptD;z0>U(UvC7_t7rXm4-54rRh1(SwjhxI$%iFKe5^#0QIr2XN hI1yEVD!{)3d;*q&>^InjjhP1raF}L9z8OAP#kK(Onlu5p;BL z)4|O_T*RNv!L!*@wu?tSj= zyGzRO&rt%90?;%q>-BnzYSQU6VzHP@IRKewdOb+t^#`Q~8nmn^gfKwH=Rwb73vcVX zUQiPXg?Qffod7YheuV+t$$RL@cjMYnYe9_(=7xAk)qvf&p=}Z8N0VRP-|5HB0NCST zeGoOBO@HY^4!}OLWYsNv`U|>7Hn11&x3VJuwEa?*ujn3M!|w7B&*d|N=$MV*faR{) z4J)55466t5`~7Gfn8VZRB)Uh}cb7pBuJwPInz=it~ z&Ea`$J;#gYeWq0oKu2s1s&M#xjJAs4w>cV(LMEh^AP@+^*fDs!uelGW>}s!Q<@sjk z>O*4~>H+8|K76=FJ2Rj#N1Dh@cOdtiG+UzsCKe##5ATHje)VCnR zzH}x81%X(`IY2Tet#SaoV23-N-cp<$ATmO i6@U{_0w@9eJHQ()6Yp80r(JCT0000$9bhMsITi&!kyq8xz2^HUCF@bQb&0S#I~6hasv?{Z-Bb;xY%y8ffb z@AsSa$aMk4#QGHmu%(}&r@w-`{lhI+3`>ea@adH}cE zjsDp+yzK@twiIqy$*UZIl-XTC&+0ZZD~)S@Ygs)&DwV>G?G}SO>p09M8`e|iRSrO} zSUWnA$em-P-CMUtqfy96Y6(0Z4~%2OY)=nPR07*qoM6N<$g4sR}Q~&?~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig2.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig2.png new file mode 100644 index 0000000000000000000000000000000000000000..a010ae7792c0a13203adbd0bc9113397fc95759c GIT binary patch literal 527 zcmV+q0`UEbP)JYcIni?fH;KGHk(9>ghD8#Rf5KQmtIIhqIYtkOW*P?&6oRr?(W@7w_wGw1`q-; zO*7Io?N?0@1mHMMO*#OYhi5AI@coBU1ryAO7lIogtgFzOH|f~6?Lv)ZSv2?RLjZ?w zUTy$oJOz6k8y{M&LJb2`fIoz4pv*Y`eqs-*0jMH`07OGGV8 zj}{y90d!plfAU)T{^0I9qm>ST@fFNrQ`;-d{m%i-r?(Ff-dxBB@I0^79CLfS1#j9j z-H8{Xl@5R{Rtd;}G^8R349wkb7eqqn2n@pj*L7*5`G7108td+7TRA@_zuYAv4df zG6O<1v{+?d!{KAE)`U)k6<$_kxN7lIq0Htj_CV@_|Ys@hW% z3WfBXoX!I&zJ9p@?2m6y9~;IKA%9Pe0cHn(2-Sd@argUIHD?XLOyB@_*)7NnA%OI0 z1l4L43+r)Q$5u?UB>=SjvehD%cdn3*MzF9OH_f;EYw`iyZZ~FEPw;uXh5601zL~Vr z0VvAH8<>n9p}f;S*ABPk1C&Z7+}j`EiS6OytI#*!Fs*a|I%3B$ip*CI0f)~tClU#W zgwPUryPLji$*5prbhR{)`|qpfE;SYEHMe`J6OhTIolz z9zJGJU=U+dEyMQE&6x%T{w{^S1vU1iGax7kq-ER$By-YA2QUnEb6?}$05R^#oHQCN z0_cF~GB)0chA=>Do!gAtXG9c22%x*jS~bu%Bh@~07*qoM6N<$ Eg4S95HUIzs literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig3.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig3.png new file mode 100644 index 0000000000000000000000000000000000000000..ed82ecb232d2180ccff76c89dafabdff177412b5 GIT binary patch literal 542 zcmV+(0^$9MP)MG@4TwmgYg#Fpga~%=BRKmR`~VKl zPJ)|Xz{T0wC4;nJ7Kc#UW-EoLr4Wj=O0f0bx4n?2t=`FnE`65wE_t};cgfu)Yp`G~ z0i*y7!x(Cs_N&MDeQ+Enr5pgmgOd!jVep4D0|ppFQ3zpxAe(_wuRv|vwr6@w)1+F? z)&U%`afJcWUKea{6ufI5%=B=uG>A)T4a^IU-|yJ9WB`(o6oAaklmp=QYi|xfM0@=e z^#HkC4%(gO)b*pQdw9M)oAN3LKz;i?Sk<;B>dxIY)#KX-sGOft4Q?*f1GHMLsc@{- zuNqYZ;q`@il>^`roAz0Q9Y|4#;`$*p{U-v!zGYb;BdJ%Q>pHluO9#y-j37{0-z%@M z5%DMoz@xbO@diZ}fTECo7c9>rAbortJ@}NAAH}3R3urKi?foz?Dhg*FXowFf^(_e4 zmyScA5F`v917bLOl>_iV3eS)F9EA5V96c^11TX;+3+DG^B@Gb1=SXn$iO51o0mK(s zxCSCm1lx)H58yWB;qh5cfG`g&R@K|E{#Z^Gpfto4K5voX%rP9jqT@=v0-=EgXZ|mM gB(wxr0xTTh2fX0M+yuNM7XSbN07*qoM6N<$f}POkg8%>k literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig4.png new file mode 100644 index 0000000000000000000000000000000000000000..e7c1d7c4921d27853478dda9a307c0bc43e85a44 GIT binary patch literal 544 zcmV+*0^j|KP)6KY)X? zli=nTaB+5a$sjEl5Qk9OW-FCcOCg9YZHZ(zm=^^XLA*clYknHCS*g z0i*y-(;RD>_Nyic0&rb7qZ|Ou!=pU(Vf2SG49AvLGH(JuuHW`F`Lu(*Z~$qyS_pQx1T~ufH(@k=XrQ zQ4dfo7NI}r@bSULEj*r|%+)Ff!1xY^u&Qm+ynS;?^WpU!)K8D6a(H#79-!Opa&yd$ zuO`h1lFZLUs~iBY*la)^$c2OuMs6QE!2<=sG0V1XgG@+mfv)S|c^ZxS4sI*Ort~$+5}>2j~m8=niCDQ#ix|| z7KG$W#~?5egd0x)(HynP0hl2*FGXVp!p3Nh8V^zen1VzoY literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig5.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig5.png new file mode 100644 index 0000000000000000000000000000000000000000..7c73c082a48611fa2a0165ca5af08fb8cd672e20 GIT binary patch literal 533 zcmV+w0_y#VP)7kVgmsh|Ekn03N^5<`fPtZsFnl zWTAHNYehalwOWPI_!)L?F1fVQ0Wf~N33R@@G#_5yLHqPLGy7L(@&N{e0j#Q9&{(g- zi~2}c0{dC{iD;z*;1yf;NJCGqL^@lR1tKA|1)8Q&gALMVE5Y)6`;|UNjqAGd0q`pB ze7-@07+@d>-gwq9%-ZZZYJg~^U&SroB$FKDP#6dG=u@7eU2H&S40#-2q0Z#Q4Pda1lzg% z58yFm=IL1`K!}DGtL$UgyKj|rXa-o}^NI{-j^?Q49am@zxCZ8&`M&`2hytJhSUSKj XvX06%HA0$p00000NkvXXu0mjfLF?%T literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig6.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig6.png new file mode 100644 index 0000000000000000000000000000000000000000..5faa3cf113e0122637167b007dae91d3c90cfe04 GIT binary patch literal 550 zcmV+>0@?kEP)DzU^Y6&i+ZlFhJnR_KZJTNPsj&Ir_RFtAd*@r*_%tKHvG14JwRDyESk1~mdPzw8?ZgPIc! z)cB_q`WATPOUEEE5X3j`0-`x;r2{ZSYM$vlGZ6NS=BTkDB7h!07*qoM6N<$f)0`CaR2}S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig7.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig7.png new file mode 100644 index 0000000000000000000000000000000000000000..5cffcda65544e19086327b08d7042696e53d869b GIT binary patch literal 571 zcmV-B0>u4^P)RtcXY9cwh^zHB_NCD`&Ueh$~SB>L1$mMbY8t7)+KK^7D`~mPIqyS`ArW}B-pFP_7 z24vQbae1)n^{3tj)B{ALQP@wn9mnjW^%fA)DhHtWa9%OLe}e4BN=rW9T*l(g8SJff zWVVk{-P=?TP%f7-sEuLbaQ8=^3&nXpe=lK{Z00Ag30`ZK$0m+=S$^l$MZXU1qT@bfV z=A^OU6F>_@o3T448`1#YIX4+M?}#jf6hM2Cc{R|qBh>cg{{US>*Svj|Eg($8i&gbC zES_Ej5?H8Fg?B45S~;1MR&-veBM_QcaOM93@FV&FeSn?=d;yc{$^fMgy1oDa002ov JPDHLkV1m8@`{V!s literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig8.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig8.png new file mode 100644 index 0000000000000000000000000000000000000000..f58195774d994b3a3c4a208a549dad2d85ae0af9 GIT binary patch literal 569 zcmV-90>=G`P)q$gGRCt{2mOo3wKp4iKsBxSzFLS@e?>ZIXd_O z+}s>QaPtEwg0r)O#leDE97?H;lN723A&4jvwBCF6Vp9Lz$px3b9o|dw^q$|{y?03; z{yDk;N&u#5wo<9oj~dr?QK?j7+5yPin@_^Q>o3YAOqeZM2x$OsB8l0@EN@$u^`)jz zDDZqbaRF51`jrNVH}7FJ-;GBLxi2*WEDrfls)6r}JD=ZKwP*mM2qgfOk!c5@?dJ@J zcR+FZ0B5^PpR{97J^BIC=`@_XtI$1Xez|Y?Hntp&rqk-Pk5JvX4{5+k=@O<)I$5bGnGp%+2I%4B4P@SytnW#S3(9ix( znLtD?l}b2cV<4`f!6hGoTP7ZM3J`Xx}Fd zm{$8y%p=1L>I`Cd+&2scH)k5u<-1gR7kKPVCm<*Y#5ZmOk~wL$0|-NIo_W6(AmWO)VyCS2JlR0T+`&C*3sg5N_{wIJaq6^Rk_;-LeS>erRT4TNb00000NkvXX Hu0mjfWwQ5$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig9.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/cig9.png new file mode 100644 index 0000000000000000000000000000000000000000..a0eac2ef7f8524ec270936b8d2361a8224db086c GIT binary patch literal 562 zcmV-20?qx2P)l*RfL28iCjz`So7&ls7W8XqhQ@sO&4e#XJ)&t^3ofG|P|KxSmh0ciU<6U`m4 zyp_k*@n&D`?E8p%fMhZW=lPDeozv|ukYFaQasY}C_YEsYXDIG$V0Hfj&h9pr_wqlo zcetY-z_x9SYLl2gIlxjZ&2zC{!$OaI&9uq^=!lKFKxMv)arU=Ly~;s?xlkxTCZv`i zl}f=XS-iczu#Q{y%f>Q1Kb0Q7HI}6wfR5tI>m#zvfWjZC-J0%H>pp3~w91cS9%*J! zV-QnwZNtvs=1hZ{c$ZS|0*}4vd`0cMTa;PT}O`o-1kr>tJT(e*vhF2G9Vb1H1rECvHA%U)c2k O0000 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 KMNUMnLSTZb*pgNN literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/meta.json new file mode 100644 index 00000000000..cda17f74b0a --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/meta.json @@ -0,0 +1,85 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/cigarettes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "cig1" + }, + { + "name": "cig2" + }, + { + "name": "cig3" + }, + { + "name": "cig4" + }, + { + "name": "cig5" + }, + { + "name": "cig6" + }, + { + "name": "cig7" + }, + { + "name": "cig8" + }, + { + "name": "cig9" + }, + { + "name": "cig10" + }, + { + "name": "cig11" + }, + { + "name": "cig12" + }, + { + "name": "cig13" + }, + { + "name": "cig14" + }, + { + "name": "cig15" + }, + { + "name": "cig16" + }, + { + "name": "cig17" + }, + { + "name": "cig18" + }, + { + "name": "cig19" + }, + { + "name": "cig20" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/open.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/executive_select_packet.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..ea85b11f0accdf01976a097510d9f788df452ddd GIT binary patch literal 475 zcmV<10VMv3P)R#ODVBnn{;Q*ic0>xEi1WXE~|0a`R)4lnJYT6&HzRLK@e;_&pYT5LQovXJ?j7n zFJ4^AXnn-#Qb56m3&92``Yw%EBXu1`(N0eohH9MjXGAe?UN(TU_@ro22H%HIJ3SiA zA-;@iU|(?i`7(Oz2A~TW0hp}JIslGecC#jq9`XzO0E5ARvgJG5YaIak6)U>*ZjX*8 zVgsaU$_mGr=Ba%Ev{*;T3)zqkg480 z&oTf~A$b{!(ck_K4|d6VD^?oHfVqUYd#nQMQsL4=bN-Y@--1GZ=`;ickScf!h;VqV z1L!~%J}mDwh`vWSJPCCK(12(K>u07i2B_Y1Ex5iTrVvH|?INpcptd8p?&SXfj-d{3 zud)FmJ*rr3AH&(}q&K4R1{J=q$gpyR!^@r5=oPRgX0H5S0A1(|a0WOzz#mz`#KKw{ RFirpf002ovPDHLkV1kb?#`*vN literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/burnt-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/burnt-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f58d48b5aa0a9343e70c0b312de67feccb2a58c7 GIT binary patch literal 145 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}-kvUwArY-_ z&n*-@pdi3{QCddmRHvKLWeKxcVwc1O)hEoCGCG(V&uE4>O=b22WQ%mvv4FO#n)KFG&CZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-equipped-MASK.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-equipped-MASK.png new file mode 100644 index 0000000000000000000000000000000000000000..0dec468d30667f3b97edd864e1790188308942fa GIT binary patch literal 441 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-D%yJzX3_D(1Ys zyRopL}l#XM$zsk|kMmQ$G+0=zVrUaR_Q zBA&PPnzuk^lffkxM-@MgP9cYed9uzs_vOC+@*}sP=iyK9ihuLw*3T`z{u^X18hD^z za#KjL;s}R)AQK0}dXe|X`Se`{>+u4#z(wKn!`G3lVR2vvdSW(m!9_n8p^=XFzH$7)hTj^uWi&&zP*g~{<4h$O|ly*C$DR&3^kqJeN@Hs zRkMlbrvD%QEPVFvmCELqM*i!oEp2zduX*NwwLSOWTZ^Boi~T44+H-dQjhKIa;Rjza z?E55VH(T#_O8%LEpRdolsy+G)78&qol`;+09=QQ7ytkO literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6bc0b0f2f147351cf4f8a4ba63adc2b0c74929 GIT binary patch literal 530 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4a+@U978JN-rhZ!+w35~8t^15##5@mIIp9s zW+7+zM!}OeEM2;k7JZobd@uL4xMLgSJ1^ho1R4edKQ6v4lm7bIz^}AbtnY`=r}H^h zflMAf9|Tn!wwRnMnx~}i&?|pBy5gUyP5rrZ^54Br{{}e}75p&mEj_{^&+uWcKFcDO z2^NYfUJO4cuS!4v{c*mHe1h%u2Mec_U9I~!XD&agMj-D(AKNbGm%AjLPPC^8vbNz2ePMa7X{@xqF-C?dq`T8c;)-9`N$?gCD z%sW;%ucc9gQN@p=Q^+AI`ds|fA3&|&K0kl+=c`OhJJ1!s{xPDP(BNirzEI*22gpmI kyXM>8JrDD%%xROo%)9IMCCyL@mFVdQ&MBb@0A3QeYXATM literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_cigarette.rsi/lit-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7f00423dc37521ebbfdf067e821300e85d573173 GIT binary patch literal 496 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4XvIojv*CsZ|`pGJ>($38ql4!PCjdioceW^ zP#py}qo&KAzptOE?!3q*x94Ak%YA8}IWQn|XW#q9cH0V9DZ7;Z`S`KXKtQ$O2&ZBo zlSlS```Z;Om#(~Zet*jI{?|K~ecw|D(*>s&DDsvtWX?On5P#zETn$DQw;vrs2b#UU zZ(jcU=l|9FepSS{>-vU1KD+<wzeU7j(+mBSflE-w7?Bg8$T>saBvmPVkP{WyRcqpH7b*nj0x$lK@fn?4`^ z8gsci&K|A>#<bh+s7OB0S#vGboFyt=akR{02o&G+x3>;*GAQscAK<$pd#7H@bp>-o z&5s?`Y(|bkKt&7;HU_6p%n^;fxp%P=n9soQfZ6oG+x3_lkG8k|$JFuPNyIH@=Mo3aY z)M=M??893uKt&7;$7PajCAUsmzW%ndGFX6t;X&}Z_e+0Qf0qZ^|H>sNE?Ui!_40BT OkgTVxpUXO@geCxhV=?9c literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig1.png new file mode 100644 index 0000000000000000000000000000000000000000..655377a479c38ad545c7c4f3293f1595d7d73dd0 GIT binary patch literal 429 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T<>7Fi*ArY;~ z2@~xbhWCMb>=8YQ3pmVa>;UW=t0d6)M!9J^o7bYK4P8YJVWz^1p zC3DhXHevB|-IJoxt#C N@O1TaS?83{1ONwUrC0y} literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig10.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig10.png new file mode 100644 index 0000000000000000000000000000000000000000..83fce798067572d2cb13426f42884f68abb5c485 GIT binary patch literal 452 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T~xbhWCMb>=n4bJN-#P7&x3HIXiX{VE zRfDAhZ4&NCysvIpLv+c!oHF@%hST#fmttHe8PbZ|8JWw zI-|By;nJSZ^E9?z4`s;=7SIe&J$Q5T_eE@_tBO?)F|O|DXWR6u>1OqGV~e>iyuCMh zP6x_3>PUQ;RB(mSWqG4|bf2+-!|UH6&pq01^6U_PxH8qcv+Tfyvuzc!4o+q&I|IFX ltb(MLE=~~XX<}q&5T8{mE#ma|1Tb0{JYD@<);T3K0RUXJt{eaW literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig11.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig11.png new file mode 100644 index 0000000000000000000000000000000000000000..4ff55620ffc366453f9dba8b79ae23c074994ebd GIT binary patch literal 466 zcmV;@0WJQCP)Px$j7da6R9J=Wma$7hQ5431MMDS;E)i{EJ`7rfaB3-smIj3oq=rBxh@d5qf{faP z{(&%|sRs`s2bTtkAd*~ymZEI1T54%~>uV^@C#dI2BEkEXdoSm3?sva)?ztBn^ce#x z&dGS#(!3r3_O3o`w*A>r03M&7Ngtny;|@t3v*|5M^9Sl{SM`DDQUm}!XQ26g0BHUI zn%85+l7}J^VgijQ7&_+r2zt%{zJ5R*yJ|Px$pGibPR9J=WmOV=YK@f%?#UcbOY*Z`+i8&N(0uqSWsD+J%0TF^0f+vDl3PB-? zb^-rDhyg1P4#5;@EJPGhv=M9+KMFq@ZS1Z+3zIXa=9~=?5$u zQyHApFfVQCta zB2Z~zfYzpC2={#v@)Pwc0=#ICWvcp4DFR-97X86r69ESo_Z5AUMSn^UaCp`to>QCx zEgWKgq7A^)w#PD_d!=dt03E%Hr1ZeI_TgmKu_`EU!k%G6WTlAfz(6o)ujMzL{&e15 z33H=ej&FH%ihaux&8<|3x^G`aV=p_Key0$HmgbyxcF!H^nW4mo08^fZs_ug9p26U$ zI~rLGmk22}tAy3!3lQ&tr@{#o@B5jd1X(I?!n3Viv4H=33_S%X97E+tsbrkWqtwU8 b=g)ZqfH;eADG6nM00000NkvXXu0mjfod(Cx literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig13.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig13.png new file mode 100644 index 0000000000000000000000000000000000000000..ab652fbce57f40d9065010241a0195812a50063a GIT binary patch literal 494 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^TJu!mN9J*bzE7UO-va5E`sapMw!18Eyu9vHTX zzh4{h#FLXzEl8$;_eA8mB_8&kiVbJe(=3i;K5A&5E|=7C)Zu7$u!Y2|=YJAb_&!Xq zDDj$;VcglrWEz^93LXWsJN0uIZv-h;*9KS_v$8y@9YV;|H1;hviakJu!mN9J*bzE7UO-va5E`sapMvJhiwr~A0!TU ze-Ddz>dDEd79`Wa^F$|o(rQuG2_j4|q(3tptd%nv|-yp{&mCtPhv(~TXxU@_mXx*u% z&FSx5d0&M*_h?}b6O`voxyrivyIy*MRi~8HX31%bEt(=6$~--E4PG%Ux_n@=?r}+p z1z&4d6{{T1VY}1$;mW4DF4hSz(wz73DJV)$x}%}$Cac+dDbRq+?O+2lL(+^nyW3sv R2moV_!PC{xWt~$(69DM0y!ZeB literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig15.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig15.png new file mode 100644 index 0000000000000000000000000000000000000000..df5a4eff59d509f31b003219f0a6839b6d3baa7c GIT binary patch literal 477 zcmV<30V4j1P)Px$mq|oHR9J=WmOn^BK^(_FMU&9b65$Yp`7me^;z1BWHMBGoL?AAKN)SRzAT=1Z z1uczYK~oPNLJckr5k(}m1TBSs2CK!EHrLlszI=lAyGSH>pXGPQ-Mjnpz2E)rflG(! zQkk5HE?Ao12f)_#n`3Nyq91^Kp~UXNiFn-}>BPg`bxRBCcHdKeBDA;!fRQoLf&l=u zppNGES&_t^NQ78GJz3MBTIt2em;h8?ie$}u=9WUhrwdZVRwbefR;^t-hDPc)mL7wW z1I;#W99MCmTSWlCK;Mn(CoNHOAYUkXkD?pqBuh|@Yz4x)15NVnx;ob3>Sit|ihAjmsTtnrbQpr4(pHdeWmyYuRxEq@R T>5y1$00000NkvXXu0mjf6ED?m literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig16.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig16.png new file mode 100644 index 0000000000000000000000000000000000000000..039d21c64ac860d4605f375b9d24b646fbcd1b0c GIT binary patch literal 478 zcmV<40U`d0P)Px$m`OxIR9J=WRxwD!P!N5JQ^CPSXorHth6*ACq)-q+JGeNsAcf!}v{evCq3EFK zR&aHwvEXDN6ztH&p@^L-rc|d0S|q~ z04F$`P8ecH008V>zgc{HGot{2+S4;~$7keqhp2&t+@>K)5p(WqJVIVd0sz#a22lzF z07NMQF(eqN>;Z`cnLsDXnhL!&47I2M0Q6=ZW$g}&Ng2SG3RIA#%BB-Wd)!V#H##?_ zrh%n^-NxO1jsk-m0#5Mzo9u5`3OM~)U}_b$t0NWxmI9ae4a`PbwibYCdrm+M3D{T; zAQ;Wt+V|Qag3-KVt+*lp0Atfzc&V;AS`OGnIJuybEEVKFFz53b`=t|eo+?>8VIdwi zeLL|LT*iRgSf$RyG|?0@Xr- zik@~tH}D9MYv8q91-|e5OiYFX`y#wOJtq_RzsK-b0*qtGew0$;IFC{f9z66NpLPx$u1Q2eR9J=WRzFArQ5gRj(I7N57$_9P+Ss07g%NDW18 zLTf`@f>Q^Fkb_Hugb_$BK}+GE!3@M8+HPpMhVt@~tM92H!Tpx+eSF`&_q*Tw-uE70 zq0g|fB*&vcjdybZfW50{Lu`M36aY{xRggG2BhNcXO-v@XG~O%dzP5#w^#{@06tWpf-F@$8q}KO<~Dps z>%!D+U{b(rVW+c(dVNffvnVjYLck0*N4Vo}nG`VlGuMnC#ZmPS42%{_ipT qkpROnWPX%V@>m|F7A#okJKh08A)#lVT;J6I0000Px$tw}^dR9J=WmQN@|Q5431BUwyYSd5}5jd@X0Q<_p5F$)`unUb1prjU}QnphA! zWox0Kth{t6q2BlH5n}yA@z~ha7=Ng*S`!?Ub-Sh7K-gnPE_kx28 z!=(}&AB&ip&kMl(-mPtHp{E{z+}Q<7Yg^)ZtEGYKOVg(24_JM7{*>s@FaUbeK=Zc& zp!ox6KCd|%UlxfF3wVpPp;Ii>q9+XiidW~PjUxt!qrj63Qi!dJk44Ov_RBVu;_brH zZBTNcbm4}ED{gL@-i@m`P^BWE6fRG!oX-J82TK2}u`@*O?1J844cXlXi&dcHK=wFK zFi@}0^KG;in1!{C&VlRnK0M#|;&IF(1K0|yQ&jzPx$rAb6VR9J=WmN7^IQ5eVnMw8IcU~oY}Tpk83LL3AkltYVyLI_8Tpb|u5AT<=V z39Sur2~8awLJlqs5gBi#L(RS-K)LmYveNPh!?zepJ@xFWSf8YDw_a5Lf zWIQa+nN-Xa{5$|)|K`;(cCa)70MIHmWKS>1^Nvy-bJ=ZE2#R*!TYrMI76$+*c@;u1 z000nzA_PBgCNoDQ5o7_a6jcR=J_aSP0sxFg6-D(Pk+=llGYVA5p~|FUrq#B#;U}#N zQ@4RB0@lJD*Fdv5)p4990wXK}EIhtMFQ4@n2QGNvAt*lSB62Fo2d}ZRo_XzkF(>0DMbA4rrnlH&QPbr(zgJWz70Ly z1#(Hj%B?dRG8BghDm_)gzr+9X1uz^#=0_>T hkL6M7;^H!NJ^&wWs#`_nK?eW;002ovPDHLkV1n^(#>D^t literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig2.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig2.png new file mode 100644 index 0000000000000000000000000000000000000000..27ffc5a3a9fd33d996ec75e589eb9b83bc059cbb GIT binary patch literal 450 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T~xbhWCMb>=W1w<$MO zL|tZ;-xFT?ZC95>~D;65gPPFV& z?qFq(6Y8^ScwzD(<#Zt%TSo2tS28CJW;2#6*=)^GzsM)C>!!eZW{(qXD&}6Df$m<5 hOGJ8_0u3H8Fr4ZxiA-Hya1t0P44$rjF6*2UngD@euZ;iz literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig20.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig20.png new file mode 100644 index 0000000000000000000000000000000000000000..5323aa6ed486f7ff060f5c1ff3643612d5845cd1 GIT binary patch literal 476 zcmV<20VDp2P)Px$mPtfGR9J=WmN7`fP!NW{ic`VC!Gen-F+stlAO%4Lb#QTLK?>Olwg}Eb(LvEo zaCMLPXrlqG_mm<^zvc3{G&?-TON)8P%M>M-P{xJ+bRv*TAlNZXv|-SuP-sDk^tDd4o0*O03#a1 z&^2#5yCxDL7Vw_DW8+rauy-8*+{zVs=bXu;3A|)MidaCgRHn1D!r{>qhOV)!13bPs zyCXn^ykm=hT%$!LIMk7%Rs$bl=vrO>j|DUWWdXILsAn50U?f&0)RC%d8zR8aHSUY+ zbPa8MX;tb#DFZ!&^W2=wd}&osK7xS>TV$n(Tjppu?5*Us{q=M%*a^4deZFrop5nlD zMSF_{WYY<+|LQ>$d(qo2o(D>;SX-F&zpX+r)tPbgO@Km2{MIb63N~Y>!E9LA0TELE zUMKu_0>m|Nn?Hfqd7l|KvG}|Q&vy330{-qbtSdm_8Y(|ZC2=Z`(k4xs{5sFou%@z6 S9=E^%0000~xbhWCMb>=#fA7lsD&)CG3v-yDJa5WX*3IAb(hICQrKC1XPFrlz z6k+f{_2CNU4nJo9Z8GTz4cES}JU5YNvt)t#q2SYHLT?)u&gT7S)zFgTQM7o9MClR} gFZY8Qz_8|HkXJ2>@hIPE1B?*{Pgg&ebxsLQ00h{wu>b%7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig4.png new file mode 100644 index 0000000000000000000000000000000000000000..7bd86a278e10411e77d38fe50c62056aef441bdd GIT binary patch literal 447 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T~xbhWCMb>=(oZ3*^jp;@m)V{rA_86YMOTC7 zuw?~XY`9cX+|c*CXpPCnh8IN#CU(EBzud-JQ1^-L%A|t42DX@WdJ2t+|F`G6%=8U% zTvGYmHZW`bYK}|G6oS^BYTBIs-j(-N$a9Yt<}g8d-ju7Xo4@O&7g%*lNo|&#w%DR6 z!r+1G!xhXOe$4*cWYQBFu6(@(j_Kd g?gur1Va>~xbhWCMb>=gs&TVUMedRe@%=B^9=IfKyZ}}`*+z{|*^6F`C zOaf*fYMj1oCv(Z2>5rFovbs!X?u&`}Kif>F;qzqk1=CuJnN1!Pl`?Yj{N7)yd@5%W zm(p45_nkr2v91%$SSJ>Rip{aD*3Sx9Zso2dv!UxphQeyS8GFkun=gA_xiI7G2AQLR zN17P*Io)L)N~9__J+)wF-m=fXv@d1G*#>LDc~RRYXR!0!&FQ$#sFLD5NqXs#70OEk ht+?C{YDg3?F#Kq)N^)v4hy%t6gQu&X%Q~loCIIc9vJC(L literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig6.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig6.png new file mode 100644 index 0000000000000000000000000000000000000000..cf6491b9e9a8418468305c2c29dcc92ab6cc5a73 GIT binary patch literal 447 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T~xbhWCMb>=gs&U-%9bp}g36MbfMVLaUxv3)R zGOPTa@X~L)x)gG`l%B5Av8etQcV&TJX`hQlg6PMK4q>qd)$fbgmQP->&~SF5WtVaX zD|4JspH;&PlMgAU3)$E*YUjU_IcYGPv0TY!YmWLwK8am71=cfroM=-q_v#FE_gY*c g($f@Z@PL6~>Fyf2_a<69fHA`0>FVdQ&MBb@0BG^8nE(I) literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig7.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig7.png new file mode 100644 index 0000000000000000000000000000000000000000..84f49462d5deba4b4d7ee22f7c3e27fe3ddb4f63 GIT binary patch literal 461 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T~xbhWCMb>=P<$2fZ2x{CtoX@#q|908Ahvjr#lyQvbs!X?u&`}Kif>F;qzqk1=CuJnN1!P zl`?Yj{N7)yd@5%Wm(p45_nkr2v91%$SSJ>Rip{aD*3Sx9Zso2dv!UxphQeyS8GFku zn=gA_xiI7G2AQLRN17P*Io)L)N~9__J+)wF-m=fXv@d1G*#>LDc~RRYXR!0!&FQ$# usFLD5NqXs#70OEkt+?C{YDg3?Fg*9FJ6rMnivTcw7(8A5T-G@yGywpNMYZ4n literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig8.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig8.png new file mode 100644 index 0000000000000000000000000000000000000000..3ca19919e353731067d0fe2d65e03d2db1901582 GIT binary patch literal 461 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T~xbhWCMb>=4z^s+I`C8emCa1|v9%T)Ezl#=SBr#rm+Mq0c{r@sv?gxLK@UBpOc!z;^ zM@*~()8T*l_dAScFKP1le6D)YmAG)hCBBYJVy3dDpTE~Fb!Fwbi5%=}lu1Kx)M*#+jZ&C9VocYtB-`{23Cl4-^d{92Yzd#iGb(b-)3 vQ7HrG%?VH3G!0*QWKQX83N+wilVM=6OK7aAF*o1<#t(z1tDnm{r-UW|@Jh8j literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig9.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/cig9.png new file mode 100644 index 0000000000000000000000000000000000000000..59e485a2e391e58c8cd8c8d5035ea9a24836ad99 GIT binary patch literal 464 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^T~xbhWCMb>=N1_VFDB;yY%`sP&y&p;Olv7- zHhEA~%E-y{dw;F+shmk%N@uO#cLr6*x=t`-omdnqHpjMFKPzClmAjJ6hOQqO3aj;I z>@Bx!zU+DB!i=*UWR40RX=2ppbeDA~k*e7A)Pk9L%Rc|ozLXhf8>|KAMQxj$!On9x xr{g-KN{aI&>7_?jC@&4P;&MBvAyL4?qmw}b!y literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/closed.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..d23acccdf5e8addc5dda058ea1862370a72c33e5 GIT binary patch literal 390 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv(mfq~J& z)5S5QVoq|RM1sMqhCucntAs0zDwYduR6p#WwaO^YbbH?Y)E9F$&zty)k0DZS?&Q-7 z8Y*nhtjpIVf7r5}ee-sCn-d$hD{-7LtNqU9@>l(uph_#liBI1JxDPlugvgw0>pU#u zp`&n;QNg<)l0n$LOyR0*LDh3Ji{G~&hx44izNTr@dxJMo`x+W$9JVm~>E1s1U^8PP z=k>$VJQEcY6U{RW&yy88>W{vW;-MJjis~ub}+gbd6x3yLy>-+gg|5)~h zhN4ihIkwgBi$r#YJom8p{Yxvva+M{+&7$R#-v=I*n6}uWX&K)FHHlJ&i+mNEo?0+F zOQ`fY7V>r#r!>g?U!db%%6{TU#G({ub(5dF)dh=6PPYAE@ZF@irR=wVQ`9S~hLGmW iM+{Mr5IP{sz_4BGI+ZBxvX literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..67125e59d05761f45e3419d2bba0b8fa7ef8bbfb GIT binary patch literal 433 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|R5S zr;B4q#hkad4852gWm-R~S1_%8)3Tr}PEm2ISf+@yU{b!aPDL}T^u`cJCLy2Xg=>X2 z3R!zUcG6R*W}2C@h;ifH?MFY{TkkdN=9}%-&RzeNj#x6_Ldg?X|FPJ!KJRhP_MHv0 zWbfLwpZ#dN>!#+@s4eCTc7NIW=&!En3=LzX^Xx0mw@@- zvO8z5FMcw8&xtR_4|ZMUVn3|-SGVK!BDO6Iud{h=bj3HH*H>@;VDKV%UP##u&S>lE z9TjiR?=zn+mGEdTg^>0jz#-Zc0QbQ{|cXH{{NG_lKWC81T)}5uNl?L&*xQ__2(6B zYw?I#zWiNnt@!ibzMp6LF!D|Ad!1MNFt_c+kJ6|1uU{`$4rU2%_?F#w`#krO@WmPH z_C0@pEM?NpZzk^dD{=}NW`~_#$o9vo|JdUP+#wPQmhX1V-OC(f$M@|1Y;E2n8O4hm zmtW2K_j9Rv3IAco3v;6+5(8~k>VNjBdVTkp z9sC#xqE+)0j#V;tdod=>6XyukbXfD5No*0V!QkoY=d#Wzp$Pz)YqJ3W literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/meta.json new file mode 100644 index 00000000000..2c6a2b912d2 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/meta.json @@ -0,0 +1,85 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/cigarettes.dmi modified by Hyrmik" , + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "cig1" + }, + { + "name": "cig2" + }, + { + "name": "cig3" + }, + { + "name": "cig4" + }, + { + "name": "cig5" + }, + { + "name": "cig6" + }, + { + "name": "cig7" + }, + { + "name": "cig8" + }, + { + "name": "cig9" + }, + { + "name": "cig10" + }, + { + "name": "cig11" + }, + { + "name": "cig12" + }, + { + "name": "cig13" + }, + { + "name": "cig14" + }, + { + "name": "cig15" + }, + { + "name": "cig16" + }, + { + "name": "cig17" + }, + { + "name": "cig18" + }, + { + "name": "cig19" + }, + { + "name": "cig20" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/open.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..3609ae356ba8ca0173b09b288253a00770f079fe GIT binary patch literal 429 zcmV;e0aE^nP)Hv})P@WR_UrkjR%&tH33PrBbMhr~fx_y_S zbIy83sykqAXUTsxLo+y^>){QC$dE8Fd-%X^4&1X)qAWz}+q zZ!dYl7K6aI$9I5Y=NWv$BEfu6C=d&Xb^ypwn8BcEXjBEUK0zeqLBTHub{MIEq!56` zKOuRVgaEAoNe&>zXEbrZ!AlQ`QfIFxPkje~;+I$l5K1d#Ie=DR=r~|W<1~iu4GZA> zN)@fl&iAf?Ad!! zOTAR*NI3gC2_+&~X#ixo)5-U!Vhqbs96?hDP!o(gfM^Fi*>aqL0b1XK;u;j^$N)M1 zPc7R?eFw<+SfXS@Cp7uHClPXV$%gmPx$8c9S!R9J;$U>F6XV59>^ax|5v1pdb+-Z^JI$>y<;;{Y{PWd=1vGZe8~=TDJi z6nP=w$i?+P-VD_N3s0S5*#GSteL}!2%AMh_sxqpWiXg-OIqOL_i-{ZuP!o_90t^fc z47YCIWnf@nV9?e5&2afLE7=YpI|L41ddP6_(nAJClS+nzmmbpB0cvRRk4ubZ4!Cvu zE<<-q1)SgAQUQ+=x;OyY;(uSCQewow=K_ixFnjNEhS__UQ{(`$v*GN$%Nd+bzK5_G zmNQ6_Y0l7%f>h^7hJEIO4ExLl8B(1i$#wwQQ2=uUrGP94oLaV%LG#XgRIyX!RmWu4 yhRR{6zBgM%UTsKr6l_^VS@s(RqhJ&a8UO%9m`URDvAB-_0000Px$AW1|)R9J;$U>F6XV59>^ax|5v1pdb+-Z^JI$>y<;;{Y{PWd=1vGZe8~=TDJi z6nP=w$i?+P-VD_N3s0S5*#GSteL}!2%AMh_sxqpWiXg-OIqOL_i-{ZuP!o_90t^fc z47YCIg|qFe4BaS5b&h1%XD-OF&s>lp)j5)E2ap{FFh@`d$a27`Wjh%(@4QD9 zJ4Ie~Om=Ok9ER$9vsL8PhGa*M!}!~04=ggDDdGwcK`qY07*qoM6N<$ Ef;`-mZvX%Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/cig3.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/cig3.png new file mode 100644 index 0000000000000000000000000000000000000000..c46c54cdd19cf2a9cc1c6e5da225feb3041332f9 GIT binary patch literal 354 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^TTE2sG5Wdx#AK05#Rn&jezm{H zbCr?Xe{Rx^|8J#hoet=nn)`75Dx+01x)cuovwZDo*4-(?9w0nHl!*rjw&&eX-C$gO zvf#xO3s*h`YZkt^suK$y@0;To{@uKJ?oIDsRt~(H|3rPYBunm0U)*u=4kJj*i@cQ$ zpXKk`oGf_#Eq0TPLzz@Vq>rY=hZu*6%xUjq&lyy|FX{pci=4T)d(Od^PpUa)Ct5bE z%zVakSHq*UFXcwM-iZz8VPx$B1uF+R9J;$U>F6XV59>^ax|5v1pdb+-Z^JI$>y<;;{Y{PWd=1vGZe8~=TDJi z6nP=w$i?+P-VD_N3s0S5*#GSteL}!2%AMh_sxqpWiXg-OIqOL_i-{ZuP!o_90t^fc z4D1{?7%pFC9XJOlnp83fa+Wf@|1QKJ$oY=p&?#~HIY12>|2po=8J;|O!XP6f!|>w$ zWU?GURvNf<`!2)3uTSCpM>kJ0+`4_2EC-Ms1u%;#1p}T7D00B;y~`P9?_Exj1IUho z*?X5WIGubCVKXdekR;Qbp&JFM&XElJ%mo?tnF}(cI!BW20E%(}B^FcUfK$tMGHBj; zk1BSGyy}?j+E6(R)%Rwr$g2&>j)E<#D9e7MU=)mkK?4B2=SxS42h6De0000G%k;E}w$`%Yi5Ot)2zm0@67_AV}i zZ-&n_%M|MeU(V(7TwzGDd~jvcTpl}Vu>~EvnRDFi*=M-!G`^ENyG?Oh{kf`N77Q#? zR&NUUaXnmD{j^NiriX9#3U~+4RX%CfoWtIrQ*QNB?oe99IR(#r_5kh)Zy5qMG}rJY z=Sy~&IC$O(e!>u7xuEj7?W!9qgTE9rXq?w>U-;`@&Qyik(~L!r=VX2 z3R!zUcG6R*W}2C@h;ifH?MFY{TkkdN=9}%-&RzeNj#x6_Ldg?X|FPJ!KJRhP_MHv0 zWbfLwpZ#dN>!#+@s4eCTc7NIW=&!En3=LzX^Xx0mw@@- zvO8z5FMcw8&xtR_4|ZMUVn3|-SGVK!BDO6Iud{h=bj3HH*H>@;VDKV%UP##u&S>lE z9TjiR?=zn+mGEdTg^>0jz#-Zc0QbQ{|cXH{{NG_lKWC81T)}5uNl?L&*xQ__2(6B zYw?I#zWiNnt@!ibzMp6LF!D|Ad!1MNFt_c+kJ6|1uU{`$4rU2%_?F#w`#krO@WmPH z_C0@pEM?NpZzk^dD{=}NW`~_#$o9vo|JdUP+#wPQmhX1V-OC(f$M@|1Y;E2n8O4hm zmtW2K_j9Rv3IAco3v;6+5(8~k>VNjBdVTkp z9sC#xqE+)0j#V;tdod=>6XyukbXfD5No*0V!QkoY=d#Wzp$Pz)YqJ3W literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/meta.json new file mode 100644 index 00000000000..2426d9c2f12 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/meta.json @@ -0,0 +1,37 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6710c72c8a67d4cd21b9fa10b5c52ffa0747b8dc/icons/obj/items/cigarettes.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_righthand_0.dmi, modified by Hyrmik", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "cig1" + }, + { + "name": "cig2" + }, + { + "name": "cig3" + }, + { + "name": "cig4" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/open.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/lucky_sloths_packet_4.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..3448be07f95423760e09ea39c6e0e54b3867f9d3 GIT binary patch literal 310 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEPwD z#WAE}PI96|g2AhXKz1Hq_9@F*{vB7lXPIuR94oV6*{U-O(lXkV%3lA`Eb37@&*&|+ z-0;ZkxsIaNuI}tJTz4A(VQpjTn$e|j_@CwLmya2;m^R54y#98#vGl+}Z~nj^->N=+ zDQ3_RUtsOPtLuB=3gdzY@AFnBXsmt7@Y(T=?&@im&ode@Y?={dP*TjuapoR3=eLmO z9>1&^Qg&WG`CY*5a1onlm32c@Lk@dGlkAgXiE4);M%6<9iOhbww@)spd~Ul+VsEzd zQ-hHEv)3*v&h^Nf6MU5MiOJp-uNbnL0@-`45)Q~RFq~cO^l4*WtuD~d44$rjF6*2U FngH?gd5!=8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/burnt-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/burnt-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e6c82978391242ed8dde931c21ae606e36bf294b GIT binary patch literal 137 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}&YmugArY-_ z&js=xFyJ|IVMPF+w_?w^M9$30UNFiSmR!I!hTCrUZFquKham z*`c*tudz;4qlNGG!q@zg>7<(s5A_e+QL}pHMh$zIq#6e6b7af}-5r-*`^T)~{Qbk9```Sj t%ME@nkFFiUf1vrX?oX(_4Z7@^$J|$(Zr|SYtmzj>%G1@)Wt~$(695f(lx_e3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..8c64861860cfe097b2f83f28ed6e755f89ab12a5 GIT binary patch literal 323 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGojKx9jP7LeL$-D$|{(8DNhE&XX zd)LtKh=Bm>g-9>G#wT5q11=Rz*AYt9s^OCI@^hMPWo!CnA?Kxa0x8Wx)(5J;YTV!U zCS;xp6VLz#h83CjO`P8v=JdI0=6G}OTe>lzS$4yoyCDbnWw!mEQ!XfYHyf9-6NAzhB(;_K9)*s@+nb=bw5af6i8E(Qet#@28!%pRHvfb0FOAP_S3=Ch^T- z|1^u^jsFX;Ur>LJt>M-jC$M!O;>Wo)yWiY>Tw(ujmtXyX4@Jf$Mhn$R0{x|tA z5Sg^11FQayieSKKn!~g747TANNG+xNo&gyDAIZf>#i0kR<=d#Wz Gp$PysuYcqK literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..dd6bc0b0f2f147351cf4f8a4ba63adc2b0c74929 GIT binary patch literal 530 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4a+@U978JN-rhZ!+w35~8t^15##5@mIIp9s zW+7+zM!}OeEM2;k7JZobd@uL4xMLgSJ1^ho1R4edKQ6v4lm7bIz^}AbtnY`=r}H^h zflMAf9|Tn!wwRnMnx~}i&?|pBy5gUyP5rrZ^54Br{{}e}75p&mEj_{^&+uWcKFcDO z2^NYfUJO4cuS!4v{c*mHe1h%u2Mec_U9I~!XD&agMj-D(AKNbGm%AjLPPC^8vbNz2ePMa7X{@xqF-C?dq`T8c;)-9`N$?gCD z%sW;%ucc9gQN@p=Q^+AI`ds|fA3&|&K0kl+=c`OhJJ1!s{xPDP(BNirzEI*22gpmI kyXM>8JrDD%%xROo%)9IMCCyL@mFVdQ&MBb@0A3QeYXATM literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/lit-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7f00423dc37521ebbfdf067e821300e85d573173 GIT binary patch literal 496 zcmeAS@N?(olHy`uVBq!ia0vp^2SAvE4M+yv$zcaljKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4XvIojv*CsZ|`pGJ>($38ql4!PCjdioceW^ zP#py}qo&KAzptOE?!3q*x94Ak%YA8}IWQn|XW#q9cH0V9DZ7;Z`S`KXKtQ$O2&ZBo zlSlS```Z;Om#(~Zet*jI{?|K~ecw|D(*>s&DDsvtWX?On5P#zETn$DQw;vrs2b#UU zZ(jcU=l|9FepSS{>-vU1KD+<wzeU7j(+mBSflE-w7?Bg8$T>saBvmPVkP{WyRcqpH7b*nj0x$lK@fn?4`^ z8gsci&K|A>#<@& hP%kv;hY(ooM+U>0I%OmI+`r8rzNf37%Q~loCIB?4EQ$aC literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/unlit-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_cigarette.rsi/unlit-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..21219dfa485ea98f2e56d8aa4350bad2ba5fb55a GIT binary patch literal 139 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}uAVNAArY-_ z&u-*xaNuzclwVwNwM5d$JB4Azx@IMzyMM!@rs*;=Fgz&94tn?Qx9)kLn_;1vN^Y~S lFZq)?|MtIRJ_f$e3~%4^WG+x3>;*GAQscAK<$pd#7H@bp>-o z&5s?`Y(|bkKt&7;HU_6p%n^;fxp%P=n9soQfZ6oG+x3_lkG8k|$JFuPNyIH@=Mo3aY z)M=M??893uKt&7;$7PajCAUsmzW%ndGFX6t;X&}Z_e+0Qf0qZ^|H>sNE?Ui!_40BT OkgTVxpUXO@geCxhV=?9c literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig1.png new file mode 100644 index 0000000000000000000000000000000000000000..31fe2f47e46fda4dd5e9525f881acd420bad44a7 GIT binary patch literal 474 zcmV<00VV#4P)Px$lu1NER9J=Wma$92Kop068WVA7p^#9b5~wJ+NQf@A=~SpVh>qe?2SreHbFa|< zKyY>FA}$57gDB`CA|ftvYoQ?0(l&!sv}B4?q@a!OG_gy*<-*;|y^nj3ZZ7X#P2m3iJ zudI77AWAZ-)o0h3-Qpy6luM>EkV`N=F-6{#C6=iNtaghuvOpFnmkbOJg<-W@u45{d zLb+s+1;{;MHfs=g4uHD^O9KLoB~UdT0?#27j(kZj@Eor4!%#KdKLJNV)pUfykxvPx$oJmAMR9J=WmQPCpK^TXBMb~aCqKQxxbP3Tere2LXM9~+pLr@fT>JM~M@CyW; zmW84Y8$lG2hat&RghT|f-4ui_qV6Gx3JcjzD@(P*47z#Q=Q6{*@6J5z`!WpR(qsBW zlB2PtA$feZ@%{7*X4gJYyv=j(JHVSbGnX1zGjbP4ToT*@R<7vT zpX-^`Bmh8fRJr%!{#DUf(lFXwUa{v&_+&+cg1`^V0)RN|~bw z+ydp220{o5g#rLD$8t&QzJT7SG8@oDR#c%z6e>X|9EYr^$X^!$0ECeCC@U(~=N}OY z$3?ajzlzNRWJUe8{&sf=AmXgRPmxaHE`jJ3+jRk_=(&J!4`de~AO#c9pKkyFQZRv) z^!xt_JYC*n*sGyZYXSgW&i*H07*qoM6N<$f)ei1bN~PV literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig11.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig11.png new file mode 100644 index 0000000000000000000000000000000000000000..28476f3da3178647b5e6ca1a6591d8ace0b61e9d GIT binary patch literal 491 zcmVPx$rAb6VR9J=Wmd{H9K@`Wo{kR4lW|5^33WY8r+QrnXv4<%72kejpMcwMGVbC?` zv@8^L*hr#?JS<6cDY1w^>{0|m7f}~nhzg6?PKs2nGpI?hUs&EU^PM*z<_(VlOm$dY zEM|{4pc9U-JHHjyFuC}KR5C%Gx0lv9F%{I^qhp31VtvNA&kU8qxAp)pePEC4z>+rC=_Bz zi5^-b;rIw|>4&CiD3wZv@iKXZhx_y@OVSv&QcA1q9ijlBBl~JT|S7CTm=yX zp&CU=#?o{ePM41*C3`EbY#>VVkMWo59RTk30(=K)R!n`M9cp!k%<}ffgjQzqKP^g(G)LlX)=0_=w hkL6Kn%9N>&>kCEmvXm7aCmjF)002ovPDHLkV1jwQ&WZp4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig12.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig12.png new file mode 100644 index 0000000000000000000000000000000000000000..12a0aa7368dfec781ac08096c9181d08041fac9d GIT binary patch literal 500 zcmVPx$u1Q2eR9J=WRzXVwQ4szruR(`hWGMtgp^J!iG4;~H*h3Wk0Xrl?QMWp47<7xE z)3Q+1VWTCA$itF!E3t?`>{0|l7fBafhzg6?PKuOn@1-Weez45)=6f?AGsExz6KzHZ z4cX@p=?u%&^>0KqjLp3wok|kNwU81=$HTgJaLACu*q$)LcY|R$J#n~AB!XB#HI9}2 zn&+|E5CA|eE-`=ZKzI6+J;V20p-L-Gq4lBGxRqszz8eLi@&-@H3LSy zm1P;jmJ(I}0g4JREQh!EkGdZKEF=aX3aeCYAQs?oy0E?$2LMAW%Q75JSMvn`fTAck z*xRgWBaukO(x8i!$go_Dv-UvKG!%VtJVBJG29c@- zZchM$C{={;JYTVbC}Dmg1GgtY6Ow)vmlFu0^zHolVhez`wF15hX%tj@pcQD^D*m?u zsAnKPbp^&2g!*s_0AOrE%tT-QPQdliCG6HL?jK740J}8{V6ycB)Ituuef`+YPXqZX qN51YAB2Yg{Nq97mQWGXjv>l)QxwEPx$wn;=mR9J=WR?kZUQ4s$6aSb}G$WjP~LKhM3V(Qh{Llpf3c1VJvZgti$=q5p@ zWud5p(Go@EVM)4`SVSOpDFUI3_yb&s3Kg-FV!3Ybv6%$>!7|It_hvq3hQ|YR^ca0K zWS84lXAEq|_-;_f%*qFni8yiIK~m!MtiSG@m{jF3rdLdHLtqSSJ$80LB!XB#D=wrH zMSp172LLD*vc$QFTjg^5>W%+SV`wc*I);8y0gb|HJ8GpoFc>bxr4~c0g&i zq9``~nOvD_{s2V>7z2w+wbu3lK&4uPz(=qa8;8J0sK!7nz+$ywXFCi4idGcGrnOjY zzb^m)BuT>Q@!l632n5Z)}GE0000Px$yGcYrR9J=Wmd{H9Q4q(!{kR4lR%9szL!pa^b}{v8>>-N&0Xrl?QMWp47<7}M z)3Q+1!Dxvh@~|Y`N-QD}yA*-YMbrfsqC!RNq^z0to@PSq2bNjhn>X`iW_Ub6qsR2o zI6Iu43ZrA2?(g~)%&dGM9*Yvk9VB&}p7mDj6O%1{7{e>3xFIk)wh}ozAQC|=K+T18 z^6h$H*#iKOb7|sO#HDgLJ(cQzvo@#`leVFsR6sRxs~I@-KDXTOSb&Jp2h*wE`#ra;wyfT9A7jzzIlu6+PdER`Yfp_*Nbj6>iQ@g5{eg3sq`YH1iCb!2pGfYlE}Q559!`Ih!Nc7vzK#0E)R;tI&Q zG@_UBAN_bCOf`s9EwI{L;DvBa2*+_X%L`$w&Lv>AxoAStU&Yk~ybx|!f4kiWVDGMg zuR=P7>K^C@ZC}OzMga8;1Q+hX7~GIwt^fdx!Hp&V``-z8IKP8YpF}EC000>ENdWWR z7a-@-7#SVIQFal?sy4Dsj}SrqC?)Zud6a5sX!M*<$FaBjq#0}a00000NkvXXu0mjf D>>=Ry literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig15.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig15.png new file mode 100644 index 0000000000000000000000000000000000000000..ee1a173b63040c3eaf4653f1a2d5f3dc9bd0e557 GIT binary patch literal 507 zcmVPx$wMj%lR9J=WRzFArVHE%MXDu2|t535tRSoiz#?3TZtK zf*LMz2qK3gX)CdaKx`=jq2>Q8xh6%jJHHPzA^a`x<9qLW@5lQ+9v?73pD{!e z>~wiG#>DFSkHbYQZkCZsCW!Nnk_Ij;`8CJvoM8-ODPf))17l*f_~j`P31R}RxRx${ zypL>n0RXBZ6XzmsmDAPx$qe(Ow`J6p-nSeRFaZe9Yl!gezdUth8Hw@jcJ3WWms4QU2=w58|| z5IP`;65ifFpvXx}3jm6oB+0-%gv+a2=2SEYP1C>_v$d6KKX$g)+CPMvrXd!KHMJD< z@CFK^l#pBlFbo6ba@p2iq%U!Qm)+pW%iRIJlt=0;(=<+2RMH@lB=Gt|kQKE~gfUjP zvZ7)snuXUFqNJp+;#vV&QNP_kU+n?#cb33cBCUe72RebauHt`5fII`6vo{djVd#(N z006-q#(ezc_Xyk`U&G_d;o<2O0N`=u0L*lrfL_XDaA+6@#W|qZ;3!%?;R5+n$`eQV flsa(W;Lq_1Hs!UFd-H#!00000NkvXXu0mjfXb9LY literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig17.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig17.png new file mode 100644 index 0000000000000000000000000000000000000000..9975784c8107c88ea92fb36f6c9a5445c3e8e71c GIT binary patch literal 506 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 ZegLuYrN2*OO6ULp002ovPDHLkV1n2G)AIlT literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig7.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig7.png new file mode 100644 index 0000000000000000000000000000000000000000..83865d586a446a5f3925934180cabeff953fba4c GIT binary patch literal 522 zcmV+l0`>igP)Px$#7RU!R9J=Wmd`80aTv#6e&?{2`p#OkBFaU=h0S%^LF6CcpcHX)H#tfvr?nyu zlM;!;H?9aFiwmih%i53HBIdib=Af+&o6m=4m%Z!T^ZkCF_xE|;J9ZLRdg14%F>$ z&mEIC075~Za4g|c^;m4l)O)TrWF{7EL%FDcRN{OyurczG*Z*e$g@Duy{M1{oUz6%T zNK`;En25y_-#&{A4r1{HGy84C;t8oX2n%RwZO`dbRTY5crTHJZzZL+XMW5K&TK!@H zcD7bgRWLM5z{ZbXsw`-01Xm0Myj#vl34ad+6x2%7m0(#i;~Nmz(OU3Y;!? z`uyd54d^PYfX_ny3aLF%2o!x47hQn#49t&Rp_uy!Jsts|nERNRef>WHw|f^f8E^3V zH2|87H^6A&1%!e=8XB9~42(k{!x6~&ix8wQr6N3;OKAxulu&fM1DyM;nJO0;GXMYp M07*qoM6N<$g0NcX>i_@% literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig8.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig8.png new file mode 100644 index 0000000000000000000000000000000000000000..25a7900d71bc983214534d424cc650f52957680e GIT binary patch literal 517 zcmV+g0{Z=lP)Px$zez+vR9J=Wmd`80aTv#6e%`FqXS8TVl#7ImU)Sk-5cvn@pcHX)H#tfvr?nyu zlM;!;H?9aFYc8ae%d)Mui1|*MgQk7W=JRRIE_>Iv=lgv=@9*=xd!DDK4-`>gl&Fxq zdK?L1wPieCo{2Iz8RO*mKss)@EOB7Snds>3&dL$?XZp1&gw>YV+gXzmAuS*k`})?e ze%FKpfN&@v9ZR}YT|JIO@;y@XR^O>a~1$##GcsRT=}*D z+nX!sx^A*6D3c`$tIZXAGpG?3F0O8<5f&nm2+?RX%^n?}a(m;Om5D1|fp925WyP0X zBlZMa!B*!u`S90DNheT>h%{-1#B-E$gh{oFqq05sJ4 zfsy%J5V!r9~7`M8WY1d1kC+{F9{{00000NkvXX Hu0mjfha&8~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig9.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/cig9.png new file mode 100644 index 0000000000000000000000000000000000000000..36b5a59510464eddc3d031325c61366fec04c636 GIT binary patch literal 509 zcmVPx$w@E}nR9J=Wmd`80VI0R_e%?5JM~hYyiK+ndZ4Tlt3t-y z+i%M#CbQxC=2DE2**IsXN5XllMUBIwg~5>vawMa^c#zop;8neyK%lA*cpGwyIwFrF(lOkztz?sOi0xq zBu+pvnMtP7BvWbDR_&j${#)?1lT4+h${-BT+Sc(IYnleY#`;RmQSbdT0DwgN39rWm zfY;+f)3ltUjH*P9ipgw`za?l;>WN09#9}eS@#OTJ`@8F9k-Wku5D5pUt@+?pRn^ev zaJr=$QK|%;T?06rZsr&5UqDn<#o=@_H+D^D*MLk)`Kvg)fy3$kG5>P01#}k|;5$g6 zlDY?qp^{(4B?pl1ftATC6w4ry$728#%OKNBum1;ddvJ-h@dke|0f4pf2AC*5KqMTX zskw#S&=iDp3n9Z_ge3ha74gYDO3Ny%tdi>;kh`yOP1*4f00000NkvXXu0mjfF&g#K literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/closed.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..810f5b5376c99f6dbba3e74dc6ba99805157b770 GIT binary patch literal 1803 zcmV+m2lV)fP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ck{dS+{O2ih1Ogxk;y8R()@x4haYrt^M0biXOQ>|jWN zl&jIw-79zdV|;!}EcBv-^xXt`Zo}VhZ1ryE$p1JI%RiL5)VaTFjk4Cfw5ut@4Ea*( z+9Eub!N3M9$(fc>3|~dvPH~hHYwVQbh&?uxPEJe`7bO~jDlM8cAUk!OG4W)BWbQ1d zt%$L6mnbA@7g}uMGNcGg=P4p72tUt4XJ0@2bt>3-5QZ{gF~XD|mhjPl&y=-#gpG)x zJ>9m#xtO=zX`4~@8^Ztyts6Hz27Z+16TSgffS?{T7bsX`yOwB5Z@wkR0R-a|^71dT zu~FmWB?)^g4nqP6VkS|_6ph)4l5hb)6(?s&+<*Y7^1vZEiDY0?;78aSbBxYdR=(O1 zD!@l2ivbb0aA_>ZLmAF3*vR5hzDp(76) zW%#I*CR{1ZG6oNbPa3ZMs8ykoe>qvIHYcD2E`gE1Hv?kbMH{?EzTY#-U z!i_(JT-eb40^~SMd57Bz)W&AQeh|B&aN9Hrq7VJER4x_9=Bx5wdA-+E^U{K*(=~ zpq-iA^I4PnBpZEhAJ{oYzz5WEL)q7=nlR#>`aaU7NrRgC>{1|g`g|;4|&f9o_)4aW}DgT9J7Ih z=Cll@0M&?dc2Wk_fPor$+e+m+@=+3;EhYFNB>@b`yv4-CH~Q69yg+EMUl?L3-a1Vb!@;%x&b2waq4dOt9X_P#LMd zf=cqC$~S+8Zx&lqL6u>znFQ9TYi{ZU2bET*)CRxV0#|}$p30$Ve5P@K!RO&inPZdu z=+EtN*NLIS2*dYbkpz5tPGnc?`NFX~K`V71Z8M~-bN?SZEcOARMdxER3-@r$&Sf_t zc5f5fPCPnJMt~U*)rcLCDu`^0DM>^@R9M4fU>F6XU=)mk z0S1huD7LV2{VyUaiBrDFXb(fxPHl!0$95BKE(uMkb!}Lp*i^+ zgNU3B!<$D(;Dt|S{WtnK;L7GR42t5H8ScOQ3C;VL85kJiY43nHub(qW%P29de3iz) t@Cr%d6`iYNV$_jR9gl)hFbW17006NHPS$~ELFWJf002ovPDHLkV1m1HKU)9* literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigarettes/we_ya_gold_packet.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..ec83a9ab8e1b45a5d4e3d710198b303c53cd58a1 GIT binary patch literal 1736 zcmV;(1~>VMP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ck|Z|>{MRXbgaU*R$B~4H@C|%?r>c8;$LoFC z`(wwHqFWVuARtjfmHo%>S$@OA!d$9aZ{FI4r+RfBcoW6)We`pf602ezrkg$ME}uZ9K>M;=gF*^cSNZ<~)Cy(KGkMx=|b4 z&>luTjwo+puyDdla&K#BhM(fy?&fIy8rPzF#kH=9w#bP|uB1v)Xi(CoK)+}~$I6=x zJ@aC@$GR9hFS&%Io<_+gE+Ji57H<)$Mfjx)-RJs!-lC3^gRqnd!U$Ww*~<48{7B1O z7kos=#q{(Q^kP0Z&~c-je=Gwaluz9BcJNz!J>?y+0tEGTbBBTBnhz0E=~HaU9RPxL zivAH_WN}dAJ4!0fRwzRP2(Ct=)aWv1BdWq301ar)Qh5RaQssb>TtynN>4+nojXg&9 zT2_9HdpBhHW7BnfzUr7kC1K{~mb2oL!%UL4BRmsSA$#u7 z6@3li0eoDg@4X`($WVhN;5CpF@GE(W80+f|;Hx_-AxM;jkZc||-tbCm2TCY21SrKp znp5{A&fc@ESU{f}fX0T3{W${s6a!?b*hO1`>RdA%#UWdt+esTFWj(_(bUk=LT)Ww(B&Rs7#dmDh$R}f)W*h)F8;Z z<0K6nc|lD^C{1LZ9!(NC0dWVfBI2~|+ya0RvC$2=ziFV(P53aL=J$U<0p*u)$cLa0 zK_7w!PY`Eyw>47cRxsSD#ZbOEibXCHg|4B1JEh`uRxw=Sl@!=%D34>)gN3TeUZ4cG zY)DU#fzdSui52NfN>R^N#Ui>QCSJ}KWXV1BIsuL+`4 zEaIc?Pe`GQAzZkHBLDyZ24YJ`L;wH)0002_L%V+f000SaNLh0L01m_e01m_fl`9S# z00007bV*G`2j~b03IQv7HyySB008t!L_t(|+U?q*Zo*I$#__K=lgLdVd4Pt@HB8qv zsleBgrZ3UQz%oCv1c#=XTlxf*CE4ELP7sz^;9SzO|L+0L>G^V9KM4Q;00000I9rw% zzA0mWi(O3_`z$Zab~&p-8@E*G5SlXf8@C+hD@Ycp@7A-R0d(t`PZp`^4j1AhLmeMt z?t|5!$ET_K_8>`GRkd$F_xfmdk;TiJKfkDN-+uR4iY$j^dEvjmdPy=l{%;7UW_u#vH;eIthbj(MfRk5X3bhj5>g0Ct;$#ooH3n7qv%5|F1n% eCjkHe+`k{@^Hfyne6sEU0000 zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cvSlX-{dW`@f{1_)2Om^r1{r>q?sIRalUw~r z`m591I$O)F2rO85(*EQ3NWbAJTxzOfO}lEwQ+w^jF=+YIvtRu)N4ehj+e5E6r4K(8 z^o*XLNvp4~{F;ATukSqseei+gZyWginDWp?KjY*THY?{YifTmVuyLH#ZpQc|0P9(5Kkq8vu-T zg8qpwvUN}^H%cnb7AQju2(l6jDP=3gh$@!`fE=0^u4MoL5-AHxmddQarXh}SHuf0Z zwMEJ^k5mCZ!pa70Iy=CsRS-W`8)C?XrHY7(Ns}&~l(nj;s_Dr&H@0eGYG%#4dE-`_ zG;P*e>&<)VjFgnF-FoZ2yW>o+$;GkTvBG_n!J`ftI&8GjhfjphtW%~=n{D>#t1Mo1 z$wf`mP=Mgk4 zCiA8qh!sS2>?N_gg<2HGYYtv92Eu<$WtUphMt)W6E`zLYgss=nl}AUKiVaf4arCh( zHn*vJM^v!Qa&LiphlCPHYmz|DpjXd(kI@91sZMan)h~ZXpWX%oCuBRO%&||Q;xktD zJ;$stb3bMxC+32g$RUlvN5if*BAM=q?3}h%EFJ8Fu>`s8Vdi5mWTkd+4>G;E?XW6v zPv3PM?FEccj~%#Zf#mMg2fb|E3vj;g_WJdW_-Ks#2QT#iC3}r(ux*R3x#uLQ z&KZ;@^}x;+y>F9U?qR8$Ml?F0&f=geWjS%9xVnVV7V9zwm(69dZ3uQkhFvYl@R;4msreZb1mYQ;e(KLSExRCxD_<-v;B7*K|0tes+&fl?9DI)E^c zH^)MK!_Cw6=GyT+>q0>&*p;J)-nc~yMPuE4$(P{Yaziac%>!jgF^8W~LOo^u{$Vl2E&Er zAaXDRC%b6Ep8(fEK7rV<4htG&;4Zxa1UfE_=2NSNN2Lwy{IR~H5?+TteR>=G*ZzMl z2pF%P{sf{}hh4b-&%^)#00v@9M??Ss00000`9r&Z00009a7bBm000ie000ie0hKEb z8vpp36Ld$I}8d7yCuLj`9Htinb~oD5&!@I0002+QZesYn&lQ! zO=*@}G4Iu?DfVrC9Z!RNm~}i=-61%;tP&fJCKloVhNFpHR*8LW1L}PIAAIX!(?6_gf`NPR#=V z00000000009zx6u_=rDkKGeLxPlTKo`1%GkB`@$!%lAN2@&c}E{X=g`UH||9;FSj_ W98P`g@_R`D0000 zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cb|fbZ{bv-c6kgi@8=3jrV@CSa0V-8ugmR3r{FSp#1;i1Nt-+a((jAB0b=Z_wD3hz!N zPzL2|Q1fG!ALGyU<)&ct&IHMu4Sb79uLY|;##2oHIFYV@D0Qjx_+QKGTJzG*a)BAj zrPL)NJlSAjhn4tjE4UQ@f@eKf!&RfjK{M<&kuqLq{zJ6BFT(q!fwINfKVBexxSgDNCDVQC^TBW(HU6@IngGuK)p z!bU{Uo*uTsxl-CV&^9CQJC*?uS`Xah82EYJzwioJ_$QWaGgl~Rv0p5@(2H;JaRA0T z0loZ-)HiDBcu9tA!C{C2K`g{Vg`%dUM43|sK!%ei&Zz?d5=o9jrp#P`O@$vpHufl; zwMo)7j!*$U!i5#sG&X>hv%r5eSNM<#OBRtLDpi_TC|q)pQi_%xbEd3WMT@FdZEBTk zu2M_YT5GG;Qe%Xqw9>TI)|we)S`H?L-G&urJ$3H6OD|n}?XBB@`;0tfl%b=JHq4W= zXBRK7UcI?ZnsB8s^ORYp&N|z)1z%gd@{(1SuDaT?8?^_jKU`lxjUK3_gVbK9H)E`@1W*86OMz}6@}ZTkr92EpVd+|7&~1Lzf1pPM!k0{ zO-2No)s{qr!D>;IN1u;@I&rs^Dz!s066Vo%_-tKEWKUaN zR)|$(xVrM54w$dTt)`)dV|H>K)?|se!q*0Ol#H>~E)S-0d0sSZGVI8Q-6}KdPX09? zrFt9vQV-Se8#KHgV1R`u7xUUU8H~5>R-bCu8`*v)4>$)Hj$xT;S{?D=%X|k$<2h9( zY4qt6gEq9fkYH~UnH52T(z{tB_T?cZd>f`49d|G0p$KGkN_Zv+#GFRnDh-5m?Uk%U zu{i_BIY@X<9EpwrGP?5I;~tw1~00ng+5;9|=nT=|9rUjA{Mgs%nGKF<)F zYj*S|vlc@#J~{?LEzr%SzN&u)$XCG*FCimGD zK{(yK;1O<#c-oZ*J~|Rc=e!Jwb`;$lJc)LnU06Ddnev1;!M+n=f%YZ+TthH{77o=q z$Dsj;a8q|Aw1ujG@-Z-5JuTE4ggW8@FpbhH3PWzz2_cdW;!<0_5e^?g|4F*jBPxLKPfkHQhe7wA)E~bgZXQHHsjH!g)dITVNMM+0C^S&)^d(qHiyiJ@& zT`2rdjmAWcejCBzn<2jwGDKJ1caOD(%L}aL9|PpI0)8oQpWok}KYUGrk7@Xt0^50A zQ-?|MZBVqIvar%z0nOgp-!Uo(ZtuV;_U*BNOWImC&U~Kxjz{Egh35@aRNhSI=7{87 z0th2C_>KtlN2sMbTG^?+XS6JH6YQ*2*F;vqF*3sxwkBRqF6;p%%6g|m5X4zquBYOE zkas?!;WIhW$1M&WTO6=}w|!D%<2GB#q_7dXw}m4Qf=1Gs_c_+&Z4#_Mi5i(6F%Nq^ zS7Kkm=cMX7R@2?M1o52>6sk8pK?(!n&(Yp>S;H4T@jBuYrFj($BJ!svG=+zZF%y_! zYe1vt5qapf;l5+H@U13oH)4l#X`)_1yiC2w? z+-C+i4_*clQOW;XHZEeMssoV0t{v;JiZ^7rGB7YOFuZyFocd8Tt6~5E002ovPDHLkV1i!Zvq1m= literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig1.png new file mode 100644 index 0000000000000000000000000000000000000000..a2ff7dbf3a8b37aa8a86099a035e7d586368a596 GIT binary patch literal 332 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQCQ z#WAE}PI96|g2AhXgKrs_Qy>1nvf;_0yW4wItQk^v_OuxIIsf&MH^{MC+i>t0fnA9kJibpHMt=1J2}Xm>bFdv8Zld zzdv+Z@jXaj)%@+ciP>SHyD0mM%(^s-(it;T*aLJ~^kSd0PP*?=#&A@T;nd+}Y*7i@ z)*3NKG6eBWc-i3YKkw01o-EEr245+aBO*sHn|*eQ%>NkW6c*^?p}h6LgSEWwKvy$V aF)|c*1;{4Os7L{Z1cRrmpUXO@geCy6!hrDr literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig2.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig2.png new file mode 100644 index 0000000000000000000000000000000000000000..6d1134dca1388fc78a1df6f02e1a76190dcebd8b GIT binary patch literal 341 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv(mfq{|T z)5S5QVoq|RM1sMqhJ$Yzm{TAAzp~-Up}X6ARIC|NcJ{Ow_&NXekvGV(THA2&7~{Xk zMJzW18*&sGPk(GWIG4>$7O0Q0l)>aaUyfr+>Z0QZP9Jui_;mjM8sTJQ84d zni$NiYj8VkCL>Ul5_b>qBGXmxRBE)kR1 jv-RN$W;a;}eFlbiTVpj61S|r8;l$wS>gTe~DWM4f3g3b$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig3.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig3.png new file mode 100644 index 0000000000000000000000000000000000000000..1a43b838c47523dfc5a01c1a11b3451aa80003ce GIT binary patch literal 341 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv(mfq{|T z)5S5QVoq|RM1sMqhJ$Yzm{TAAzp~-Up}X6ARIC|NcJ{Ow_&NXekvGV(THA2&7~{Xk zMJzW18*&sGPk(GWIG4>$7O0Q0l)>aaUyfr+>Z0QZP9Jui_;mjM8sR)HNQbHzRC4lm$j>~dz9 z((cQ<n!DjQHQgC_flk^_s?{Xb^0ZEbOAP~#O!>UxwpyK>>0?G?I;t2NY?OpHqS jaII}IpF}CcUIqr1>siKkG@@mJ;l$wS>gTe~DWM4fQFDNn literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/cig4.png new file mode 100644 index 0000000000000000000000000000000000000000..685a596c696b787eac828826e0cdafa92c23f245 GIT binary patch literal 340 zcmV-a0jvIrP)VU!R00U*=|J1PL!rixwBs&0Pxr~G`PDA}n zA24h>t$@MC0siB11ldu5Y#{;5@q)pf21Xq)>VN@t05snYY(ZpYqQ}6?!$pzhpTB$q zl9$LUh(MO_JaB>{2e>;};FTvT4OmF3B zP8t`WI0Qg>*wjD^%(hi#z)RyZgKP&pdh!&nW>8BA1ZdJAA*LvvwwV{odW+W*vWj9t m8mR>aZ*4g0fKdm~3jhGJgLgi)_XfHE0000VU!R00U*=|J1PL!rixwBs&0Pxr~G`PDA}n zA24h>t$@MC0siB11ldu5Y#{;5@q)pf21Xq)>VN@t05snYY(ZpYqQ}6?!$pzhpTB$q zl9$LUh(MO_JaB>{2e>;};FTvT4OmFr(&zvbdQ@?Mp5|wUQ-_%e(&&I{A#mwBFOd93 zkVXd-hX5!Kn;K|=*|y3IMA6vHAlm_to;<~?8PpO20h%;Oh$)JvZRUlt-r}`{tfH8Z lMrwhVU!R00U*=|J1PL!rixwBs&0Pxr~G`PDA}n zA24h>t$@MC0siB11ldu5Y#{;5@q)pf21Xq)>VN@t05snYY(ZpYqQ}6?!$pzhpTB$q zl9$LUh(MO_JaB>{2e>;};FTvT4OmF zoq7%cfgivBkVM14yAPkJ;{cG)7#MyLO~U{v^r+$hJVU!R00U*=|J1PL!rixwBs&0Pxr~G`PDA}n zA24h>t$@MC0siB11ldu5Y#{;5@q)pf21Xq)>VN@t05snYY(ZpYqQ}6?!$pzhpTB$q zl9$LUh(MO_JaB>{2e>;};FTvT4OmFnX5$fDnU_(UBCfPBQj@QY*`6na!~fS%@OhEs=`Nv5e50++7y0?BVA(-emQ zC=Z(&Xo1N7s`5z*AlXdVnQ0J1qN?z gIO>2=2ha-u07-YAUs+Y_ssI2007*qoM6N<$f?>LYmjD0& literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/closed.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..0e6ffa06b089b5a4cd47ebaecf9ee88ca5abbcc3 GIT binary patch literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tG- z#WAE}PI96|g2AhXK=vN1ge#1T`3}5hU`~Db|H_6Zhwg6gQL$!7**UdSj=A)}(*HYT z91XbSY%5PGs4Mq6H8Uuh8TIlD%w^kP$uwUoi7}AR;hU_PR4mVQ=96U%n^;?T*jFka z6;w%g4r-dN#@Eo;$vIu(llY6o4J+R<#MrS#a%_?~rWPje$)_OF|GB(Q%}e$sU&W_K zx`Ay1tNT*ePk3-VzPjh-7K0GkI`0pb0?U~fxIRB{m9@nrh@0o#s|t{7B?S2x7z}U3 VR2{Rt)(P|!gQu&X%Q~loCIDLjUoQXv literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..1a6bdb1146b15c6ee73eae1f23649fe03f955024 GIT binary patch literal 1618 zcmV-Y2CeytP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ck{me*{MRY=2n7fsjw1;Xu{YS`Z>qXy?6GIp zwypn30?L-e`om%4>Mn-s`cirU3jWj=Yf}geR=k?e~i&p@9&p~p5Ij7 zonZ8WULJ#1pR@8De_7vNdkA`Gg7ljW@_Gz^eXxz^IA8omBVKPV^|;RSlNmj8KW;Z_ zgBjZ6Qja6bix@1Nu#(){8k*swc(=PbTEE7%s9tfcYoaZ3Vv;MVQWP4Lv?DAE&tofj~0BS zWv&Z0BEs$IX)EXj?}FXwm{HC*mH`mTCvJKh_@%u*vOnW$3`}ffZv+o-*sy*{01teU1h9S#{}Z%T`~$ zMsP^f&}d=N!((jPaHX>A*4?)4zI~5`ucc&7&6buuJ;y6*PgK8aKYo z!>HL2bc>+FGkP!sVq6J`+d%*h%?GoqQ>}cEJD6S0hzeyWsRx^&YZPjLux?^add2Pw zav#R6z}7#)jX#21InezEJ`CI=v(C zqdzV-xqj4C<-3U)W?;`YBEt=8YR;ZwYb8%aU)w_SR1`3klUhZ@Bjn4>g&hmCJvSpn zry7HUu04^6G{m4j!c)Wssf4d|CzEBgVR+1Rq@=wH5-E5wXR{cIQ_~xP4Hm9^)H!C_ zc}znv3`c5*Vb0KMzzK&#WY)0@ijRHFshF;3w?vAMxu8l#KBWOJ@wAvohi!}=J3+88 z{D`X1*(y1fmGk4e&d8hI<^n(35@djDfV4t#yB;0ERFImya=}%m9L#)`oiLw+*$!1t z+X}7%StYI%(EB#pxem+`r|tm58N`e@WC(7{n>`hItxdS;mV8N5tkB%{&Nfs2KJ zUN77np50IV0UtqXdP)>my+d#3m6}28sUlQQr1h0yK4(A#fY3>_EU3Qd*3)v!L zkB<7kfdmKsD3ta%%6tE{R9k*x11iGmhuXXaI?6r4N{5_yXW0w%1hxiUQzW5|bcU`= zk#G-3GKyfZC<@7w4w0{MY1FBKzm-Vf$S?w0&4qL{PM*S@L5E$!+Tr9=9ge1VvOy`C z3JTp5`5t*-S4fky>0~*SogiJ?SCPZIauOIwciG^nBPMK#^0e;rH|wO45kLeva_hJ+ znze6z17!IPF7yWoLJbgJ{sqp)VzYbC?ePEr00v@9M??Ss00000`9r&Z00009a7bBm z000ie000ie0hKEb8vpZ34h_dI(Er5~9#MVChUk^bgNqS~EKU008Fr0%7t_>sMGd Q_y7O^07*qoM6N<$f(8@up#T5? literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/cigar_case.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..647814edd1b15a2720a1d404807d3177a1a26aac GIT binary patch literal 1492 zcmV;_1uOcAP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cawItj{MRY=2oea8j)NXV><#w#o2qK}c)X4o zk7vIoTyi(ndVoYGAgBG$-;w^pLqs)Iv8G)$ zAL=%dUesXXfS34Mrf7zb;N7m)(OULAOU*0KJkVz8g$m~=wX9UUMA>CQ&N8vbN}CLl zXcAw2jg2}@&Rn>jR)UN>FK$dcX)|+8OwYZP%Wl8y&C+0b6-=c9Wd%!q*wW7?e56Ip z3?G$()0c;@urH#6Lpg5b^Nnc$q{IU^xg7k`o=X z@b%AdqmLk$4s`zma+Ef|!R;N?*2#qPLhO#hMe#dfBh=6>7z>jsC8NsGO_!Fr6EQhhYMv9J7o_@M2tx z41;>!N+71)r!AyNINf416fMOn*g$I8NLb#3#d(Q%VERhCEBna7ZL!UzV;~3M#-fhJ z1fX`7Sja8vbKyZM7;3X0Ol$x|Xc{ZGgtK$^y7#AaZlK=N8R>cEWv z7=@Ls(fby|rDsj#+ZZKq3?koc)VV71)!|sjV2PRJt$1H6p`uHsNoPhc{gp_5C;I>$c0Mg@D}3>PDoHDzpU25VPO*Hjq|0ItQcVAdm;{*_hDGd#j^2-1t_b zN3yTKQX|uE71>usBYn1Nye%5(vsL45(MX@I8gGk6`fSyBw~BlzdPw}Y9IK~)0X%V4 z0e6@_od5s;24YJ`L;wH)0002_L%V+f000SaNLh0L01m_e01m_fl`9S#00007bV*G` z2j~b03JxlZs4?#V007uYL_t(|+U?q*4udcdfZ>Bzs96HRkRTVt)OZEnk;fpsz|_Pt zKeMo828Bd)s>{^Uvano}|5H`X-StlOL;wH)0001huiB=vb!n`onCjBlwy9Rdl!hi> z1nvf;_0yW4wItQk^v_Ox*LIsf&MH^{MC+i>t0fnA9kJibpHMt=1J2}Xm>bFdv8{?GXNG z%+U6lnRnVTj%~|DCPlNAzEVE$*=A?t`Yt`q8oMi}KHUBIr}VoQ!}Zcu%d4ub{=XQ0 zXJ7NEP(4s6^YZt;4Y|=#(^xH97Zte#Kb*?IbKI1Jsj$*D>C zjUun4%K%j*@wq`ml0`sVkpzesh{S-b39pcZOM*8fxf^Po?$n)~*6tr??wmVw&pr3M z-}!ytnVsQV7Fs!50RXTtZ0n}4007}OKP*240N|rjj6Bn2LCV&z(*VG>ZGIrAp0+Lk zU|kTl>Cd}Kl?sW^Hm9qKKzAuIn&XROVeokl)7A5(UHVEI9+ zbh2-mmCvpeG>J5rnx4`SPSG^+S|K_gcJb?A2Vdo$m8iiqBM>(6NEOBBNf22hfeuc<|F8E8moPODM z+kbw;@0zezdBsT}r%Tx`EZ6NLIisZ}84A5aA}&c!vZYG+KyvP@Lua5dYDcgqy6#aL z;u@kq=d}?nwodd*{lX8cn3^yzBMHoZd{~d{qt0u^?`zD}&zWt%E;sXyflR9#T2%K6 zAd&aryr>Z?_p}Q6xM-GEH9FKhb=mgrZG4d{3q<3E`a88Aunx2AJ0&ICHtp1aA+@U? z45m9*XKbFSzfUcyS+1N(pjm}vk)w1P5p+nbxZDEm5g{sFa)TI_ily`f(qr|&g)OvW z!OpJa+ma2j2t_IRHZ~aN1?dDAn`dU>7v|h zmqEvizm>$~F-RXa(9=dLK`KIQQop!hKvBF8tUX-by9({W>8sa_T}iF#f0T`#-3U&U zW;RVG*CiVX{&nC4+@35d_Rt&c2<(i#*pYIcvR2a7)p#W_-=a0}02h+sU+8Bz%U8D} zEx&hga|_MOb3&LUz2D^F{=@3=wdf-x;>a_aqg+)*q-4s~$|-omaocPMw-w>pJsPn@ zbh<;adA4C_ta8~TZZb=?I?petkP4*Iz2lof-QeJ0$>|PO1jZ1M;_QcQwd;EBy=&@5 zV^-*bZp1Z|bW|RNeAiH*|L{O~{@P*Y0 z#xsj{M_>(PIFW7m^n?}d4vOqp&T-6Z(@%(|rmo)?t9%vu={2OpJTXQ#IJ9v*5wCe* z&5?uc`u(I{xoXXIQpWSOA*Q`^EIE;Leo+>78bse$(|KKGUevHfX~)y3YkaB>wIMuJUcVwACi9_>ZS!w z{G{c%c`b8x)|CN1ewUUotCt3IS*a6(SX!$|BMQuC@z~(&%vnloT@~Py%(vB|GlEG@ zA;S>GtgZhpDvl}1O(qR8g2;R7B9mUFM=t2jXXmK-6KQE_IA_=S)EN24;is={aCMo1 zt0^v|9y zkfHEP2k7XQcTUnGdH3mhu;fb~Suw@G*02ySYp z6USUd*4;31q1;1ql5BkF1=gP=>*NAGijR8)bUhv3BlKOaI@*x~c2WK*W1D~Qp7i>y zZdv~bNPgEQ+sDp9vXTSFU(md!vS)nq?v82wDVy#mLv2`GPw#rL3*D&~Y}7(h>Ly#-dfeL>ABPK45>8B!&)6JactjRw**{{*a+P(=(D`97*k30@JrzWA@vqO0Cjh!0tf{W+2PyDLR;6-32PcGEx&(G#e z70N`>jN#;nwR~vKs{5y`M83^RSq|&}0N^KU5m8ai_d%c4v+D@Kp8@+0nj_nS9Nj$8 z^e^|mX?^j|^xF1@m7ygTw8g=Gy-bQ&ZpTj~tY*iTMPi~5Rj!lupNF{jGI@NQkifIy zGw<6D4UX<}D36)DXI`Owe&=5kxLwn|QaDYqBE<0s6U`8wqTu=nJFZ~IM6jWBake47 zeQl(9mFM<5n1$U#)s&`5!nSp|_yFb32rmEU@-c-vp!mz5wzB^-B(*?)j&YUx1O=I~97FA~1{ EHx~wso&W#< literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/lit-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/lit-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ebf9c46a5d2b05da1cbbc00d9ac8c0a6376a61d8 GIT binary patch literal 579 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Vn% zPZ!6KiaBp**?J!ikZARHToQI$NmN@&^sbA`MaP&W%?gh~V*W5TJ>^ia0vc+;Z;7xWKC?UP~@{_VEs zvEXs}%q1I|Jy!5WZJfB?!9m%^>JHzXYk7~9Vy(BYDg65O>1`o}dzK$>aDG<$^E6q& zsy%#Sek4#?$G@;E^452?*K6IM#9&;bCwTB?u;kKH;&&wCTp8a#~NkHxXlF*P@`l<@`lMf#gx**M)DSs~|`RT2RHJXew z!&!`;Tkbe|t@51V%RiPpk2Wv}w6kIaiGz$7!=oRo>WhsyRWG#Qk5H6^&CE)c>E~&0Ejcj1&`fjJJO~$9}y1%>$S!7(8A5T-G@y GGywo3DEO`b literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/meta.json new file mode 100644 index 00000000000..e9c8567ea18 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/meta.json @@ -0,0 +1,125 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/clothing/masks.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "unlit-equipped-MASK", + "directions": 4 + }, + { + "name": "lit-equipped-MASK", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "lit-icon", + "delays": [ + [ + 0.2, + 0.1, + 0.1 + ] + ] + }, + { + "name": "burnt-icon" + }, + { + "name": "unlit-icon" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/unlit-equipped-MASK.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/unlit-equipped-MASK.png new file mode 100644 index 0000000000000000000000000000000000000000..938d8c71b2e3aa15c9d790348e3518cba097ac7f GIT binary patch literal 244 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAP;i;2 zi(^Q|oVT|&@*Xk}VSC7(q@9)|m6oL2q@>zmHYxVN-SC~Y>N|h0KOxGnlSv_*;R#p6 zotX@;KUUn+zazK)?amL6&$0ZF*)9KH{1+3Fni$3j+6+ak4(k{&1eKZB#P4oAyyEYH tExCtIFq}Se7szmmhZ~QsbvgeBwq0|DGMctda00rR!PC{xWt~$(699t~Rg(Y! literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/unlit-icon.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback.rsi/unlit-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b34012ac9b08d188e775409ea97cfc94e5099728 GIT binary patch literal 323 zcmV-J0lfZ+P)%@rzi~#cjuKLznfH$@8|C1EJDVE00bZa0rCZy4cp9pzF>cH z3K;-wX4EYh8yem)UW6LJ#AdD98CISN3$Q@1l(}D30Eps^K^5Q_AU0<3Z26xpz&*!h z$C+dN=JkZ)sQ^)2gKi1JWfz@!DnJ~ccXU`^TyP$~R9p%W$EQs#iEj^AskkuU+sxC% zg#fB&E(G}e;C6RkS)3by$7?tOgvvNK0FTvC-(YyHGR_T%5%7bNuir5N2tWXt@dmC2 VXrMsv_V)k)002ovPDHLkV1k|ZgRcMp literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig1.png new file mode 100644 index 0000000000000000000000000000000000000000..60cc89dcbdfda930bfb9414c84d18c7627aa12e6 GIT binary patch literal 496 zcmVpYUC)7DaC9@7fLWIVybrU*ys6!M))WzsO ziRjj)OQ)_yKge!HP!~JaA&NSbSac{$n(09|F=s8eT570l^POINU~GH$W#11Q@4K1N z=5zo}0s1Ew#Q5Q6SK9zKuMbO+sJI+tbR#qY2KylTeN1`aY6s_~Z9Kq;%Fz8o6pu-$ z25AB~oo;wNy`U_Xn%4`0fH&3+BvY#Isp}O?%+CLU9P&Ps$;!tY>uZ|tr3>)Cv2v^@ zx&XBrE9Wf%NX;q{m5`PIlxBLHHVru1-vX&<23%aWmlZRd#)QEkc%e3ba4-9Ne|v&Bo2@g91Xx>xBZ>dp;dXG-!4zfESJM^bVl|)RlS0V+4&!kO{}?GUOZl3izvRAD!}i?(y^MT z0<>!^o&O6!Xx4~mg!~IYYNocSX29XzCiIG8!1>iJ^o(qPu-OQk3`tUd&MTFQ;@soY zxU9`c(GwUO8bG#ChLa}5dd>^86Kf($j)+iHhnPY;( z7(goZgiNM+2?h`WJ2D6BMYMTtbt&o&5E2>0DTkleByAUt8DGcxF;VtC`(iz3~RP_~%&&>UT>|)L3^5XIO+A8tAQ~~}rmX6g# z6`)yT>AWQXp;_@i1!DXXl^(Li!y=z1vnjw?KarD#}z*FKy zKCmzetsw&3#^caCiUB0=d4>RtN(ayZv>osRKd7mumKkgd00000NkvXXu0mjfY(U^s literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig4.png new file mode 100644 index 0000000000000000000000000000000000000000..f5cd09045eb33f31ec8458a53767302c365cd0ad GIT binary patch literal 510 zcmVpYUCv+;Jl3E8LAwpxSFYt zM0D%YrBm0UA7r;8sEZxz5JeqIEIO1W&6Ln7rmN*vORFh+=cX4Qkng*9W8V+c_jN|J zIBh^ffS$2gKEAis(K3M5>%)8`$}a?I)d(U$UpIKakFHFdZ{no<841w5G<9WpRec4cQ#0QnyI3=stTSth=hD!|{y(pXJY z0puD>$4vnU&8iXAkfs2nW@?)@4A|dUhgKm5oL*c*%P0m2n~ku^m`s+s*A_adDy!DXdn>m{Rn15yRBP)3-IA2lmGu!uPG1V4850TfCc-njRgRZSEF z*jx@4m$~i}5MszV!5VVf1B7hxlX%H@qRaX!TRk8T5nzJbM%q;V(Q%Y)4KpDa;M50@ zNIW2w`o9F(!D-me!s3|5*S}$+yc9JD2nh}aV7FO+jxC`ju@*Ke%P-63aS%Du2XG&M z{5>%@jz&WSxQfM~brb_g-t%+;=#@604QM&w6Ob6Ya~y0QaR2}S07*qoM6N<$f}?rW APXGV_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig5.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/cig5.png new file mode 100644 index 0000000000000000000000000000000000000000..4726ba3b89345a344758a7fe365a6f701ae69777 GIT binary patch literal 477 zcmV<30V4j1P)HvxyAmbbN|Hj05HXE?E_Z`h7S4H#%vM z?Ff<_pd`xhUsXi|A#i>f!wDdEx77F#6S{rp2E)DA3`9GKBnR;E2{Xt_iZHOTvSOA0 z_4_x&%U8k-46ol3Z6;Y!;2jzRbr3I@{`BcHn7weuB$CY{%K_*X!`S2ivK)ZTVi=z; z4ggt(>A;ZSTfmhwHUq8TV zcOJh%RAEF?2)L;!FueQrn?Z<+6)*jf1T#r;00%1z13Sw6fox890R4i3$ObTB$!#g%$V*A62 zmwx(}iTVzB{`@h++qalm@QYCx1JAitC}NlOpG0nrX1rJY9;2ha+PI$+cR1MUC-^Si}) Te%)6y00000NkvXXu0mjfE4;)= literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/closed.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..acc5daa88224bdb95f8784273f9dc3ada9e1895c GIT binary patch literal 347 zcmV-h0i^zkP)VQ!Pj5=V{0izBWbpX*0(2(Z%&%wb>l-eIZ zzB1f+`h$_G4v?2qU|?nX$DpmDidWs$8@CyL{}Tl|;096Vk{tygi;w{!hf&o5Fw0?< zg7_dzjw8qp0gz?L4nYqQsypDz*RKqMyqs`8vX9X%2dSmH1CRmC#~jhU49nN7Vo+na zP2V&Ca|Fop$dE9GA3sl$YYg!Yc>eq`!`rtU40j$pf{T4K5@wj&-^RdmZZC@3U%!4( z-vJ=tWMj#|%fkidb3|8x=^snq!o@y+`Nptg-+tOS;L($(r~ tq8)JWH3Ly)JIx$GD=_MSQ3njT0|1d{TF-m{jC241002ovPDHLkV1g!OjX?ka literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..895e035f8b4fb6eee6067d307f055ddc706117cc GIT binary patch literal 1569 zcmV++2HyFJP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ca$GqG{nsjH2?B%=%h8Lf>|mBZNB6edPU0j^ zO}&`B?lIqpXo4fZ8oxP;49lJYL^gejVC__gbHrnvfC&Fizsk2U-ZTjqsm#ngM z)n%(KUwzX?D5YJt?z(Na?YjqJEhI{4)Uasb(VwV2Q2nm`25R&`jW49mI(wpqQL`iH z5pT(PgDV6*~A+3#O@Wj595~L z>tEr7n5oVI*}+dHVO!-Vrf?7oG^r&)0OFuz;p*5PcvU;c0ZDd?{igaBlV zt;4|b7JVV~``XQ;da%S|scEmZ0;vu`h}bqMz8v?2a7m=~Ba8b)YP{s;ANL6_BYLgw z2w>SYc8oa?-xO1PZj&8*6(6`;xDGtLV9Va34F?<&E+Kobw8j`!u%KD@R)#lR{MBy5 z2A7YzDt$LGmdeZvj))5L!EQ(wbB7oXx@C&Da`y1^ieU`+R&0#{Eg;E;)ZZR`O< z*vFxqy#|SN+l%ui8#;%;rpOAfGcsqz2fSjd2b_(okMVKXy2ABPy9mB9+pe>#8P(|1 zmIsEmSl!c5cSvB43F~n5z7p`O*zG%ft^x`XS)@+2=PeZGYawf0cK4G*3;y!=y`@nR z51r3hM}wRb6fp|S382zs`Z;MeC=*{eEpUOyN?8?VoDCU8OGt9qf}?`SI;^X4CVExa z4r0T*cHljLGfaTfi}!)DO2Lbz&v9z5rSOKPc4`tt5=eWgBNnhp>qL0KVKZ!QXwWMZ z7+kt1zi(#BKeqd~`cFZhf<6U(L=bLv2a6v52S@nLa3BuwDT(99ky2X|_3M=?e4kX| z3siej#RP{*LasO@OUM(j3me56;De5rtsMm-eP@=auO z^&zMZLB+ZPObj#IjyAPSoI=N?Gk;mIK_kYcfGfL>8XuCh&!+egR$T$GUq@Kbo6G`5jH z*JTpQ@3%QI{eeQ{ZxDo}=jlJ_zZ>yLj6Z?^000JJOGiWi000000Qp0^e*gdg32;bR za{vGi!~g&e!~vBn4jTXf00(qQO+^Rj2nY=s7(=u2d;kCd+et)0RCwC$+93{uKoEuD z2Uox}fnZ3G4Wg=Cfje;=62cjfRTWJYrlx6=8qTm))Dvb2H2oc0vH4k7q?6kH#q_4UF00000 z00000zz$f=B!qhoVU3xD&3D1l@Az=-e|QGdn%MyW05HcF?-ozt TP$Ed_00000NkvXXu0mjf{OH@d literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..7346e0e3522b358e71ff06cd7df8e0c63b3a45c5 GIT binary patch literal 1573 zcmV+=2HN?FP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|ck}D?+{bvQlwLXybXtCW;vw%b%H{ffdFb&=>BAQc zDUfmxT6w&c$N0g}v zQTGw)WgASK@RD51Dw^S|=-bsgTEjt$O7^_+L|fE}N%E#bo@mgfActJEpkv`+gJfPT z*H{zd&P%e8l+$RlNf(zUEQ>=#N)mqRLf5(dI&V?K$xfKcgv|&`zS`2aCVWrZdu8~D z2-efXSI~?3;6TTXa(*!lfY5&6rk8_X+Ve?Y04qRHFE=+BIP$!=m`bm)C076l<|*VI zUu1qz<10!E&Q>Tx0tj*?QL2=U*@%j813&|svlN~{fK=I`Bo~niY#QPSXJd`gHJ6p| zaij|HQK@3Urpo|Wr6}UZN<$0{6)mb-)wF5Xk*d^Ewbp9&upnPuv%(`K7}j)m}9W$CKRR$F}yXBRK7 zUfsNT_Yo8br4%JJYFM=BF*agt%Pw1Y-L~8AdpuElp!$#Y1E|phHNKEK^X!QlM$OJf z*A{emMh|8{j0*vAI|v}4`CyhCmBI(PgIVs3tWbuMda!ZIBT)r}C5Uy?6T4UBz8kj$ zUw;cX{vPDgf$ldT$0_6;ZXclLhY8n(*qw#Pr&*AFcpq(W8*nz?onMuo8~uMa8aoiK z)pkWB%{>FrwdS&&19fO^41oci5&u#~Xhvku*}SsvSUbwboM|-zRka+V8A#!%w1(6? zt|L~zJ1D+yWO_gFp+wGJ-xkn-3(;-r%Fs9BLT!u7(^6lw4=4RYz0T z6+AAZCx6vV>FP|MR*IACAYF#TqZ3k0ka0fuB3RvRiooc;;^NEXM^q#bRs1ET3)Fz&k(^ z;7_NDVCt7g#5M?bVO^Us!@=M4@NM`ckzwJ9bC6A4Q$loSwT(N>-W6Z4D!|?0;5`h_ zQ>tn>R0yX9Pa7N#7nxDrX)N=;F%|+}z*BTwuEu01B;dfl5yU>BT3=qkpCV51RE4vJ zwsrSYvMZI^P}K9pB27|K-Jx$}cujuoSqw zow_qZ)*-ZA+GQXJ9+aN(KW$C#NAbf)7%pSWMAgtVPZ8Z`Q8B!%r-uRpMmtP3Pd({& z_!ER$2Wl!xDU3hF#UQI}iaV(COuX@zPqg0UPaqg;wNG46BjWHQ$g`Z%hs^}HOq3H8 zTwE_@&PVxeh0^cwQ2yNLRic!8Pk#g2<`ShSgFr|C000JJOGiWi000000Qp0^e*gdg z32;bRa{vGi!~g&e!~vBn4jTXf00(qQO+^Rj2nY=s5KU-$P5=M^+et)0RCwC$+OZ0Q zFc5&@(^qgQC@z9yap+WE!FS5z2;wt1cIr?%xpXNOy7&y~Wa(5Ai{%3UH)RTUm%Aw^ z0ssI20001d)zqb}io|M)sVWlN)a9y}V&CNRELHh1d6vrBA~-X{sP6SYyTA;i-K+!5 zFxs~7RF7xdcj8-w$fdH!!(Q&wLqtTT=PZ}o9BJ%;Y?r*p;dH(_#TmI?zMM5CA6lFM z00000000002$IHq0UzSvqyuXk`*%#QX080^;Gym`a03cK^ XRY_9e08-Vc00000NkvXXu0mjfspR2Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/meta.json new file mode 100644 index 00000000000..7e8b183cfde --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/cigarettes.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "cig1" + }, + { + "name": "cig2" + }, + { + "name": "cig3" + }, + { + "name": "cig4" + }, + { + "name": "cig5" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/open.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Cigars/tarback_box.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..5a87c692839f52b808bde756bd16b9c3b938e8e8 GIT binary patch literal 439 zcmV;o0Z9IdP)HvxyAmbbN|Hj05HXE?E_Z`h7S4H#%vM z?Ff<_pd`xhUsXi|A#i>f!wDdEx77F#6S{rp2E)DA3`9GKBnR;E2{Xt_iZHOTvSOA0 z_4_x&%U8k-46ol3Z6;Y!;2jzRbr3I@{`BcHn7weuB$CY{%K_*X!`S2ivK)ZTVi=z; z4ggt(>A;ZSTfmhwHUq8TV zcOJh%RADr|v;)3;{mQ`nSCF7O=C6VbUzopA z-vP7&Bs%~U$M^s<1L062%K^`yKW0#6Yh+;ffGYmQD2##U+$vPHz^q7h2Y`T+jU@vw z4;P%z5#0->e=J4R|DV5nW7x58KW!ZF=*d%5fm%NXN&!g@xOVFn1GNFs4j`qSM-vCo h3XD2n)BywT001u$a`qSp)(iju002ovPDHLkV1k4luygJVR%nI`u13{=awaA1v2S zi1;@7{l&+L@q5;tJAZn8!wnSUaoE~1-S)upboNbb9k$jN!mcrFOlQA!N=m^slKIFy j*$nOM1`$+uzUN%>*;0s?qj)zkAQ(Jd{an^LB{Ts5?`M27 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e3852cfb00446b03a1b99dbab473c31ea24eaf7d GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|O(o zr;B4q#hkadHgX<85>_4_L{&oMrdVJPHluwZwX!>n+QQQ$d4M=`?@ONTR_yZQNsV2ZMV(@hJb6Mw<&;$VaYKU$C literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/meta.json new file mode 100644 index 00000000000..5869b50b9ef --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6710c72c8a67d4cd21b9fa10b5c52ffa0747b8dc/icons/obj/items/cigarettes.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_righthand_0.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mpacket" + }, + { + "name": "mpacket0" + }, + { + "name": "mpacket1" + }, + { + "name": "mpacket2" + }, + { + "name": "mpacket3" + }, + { + "name": "mpacket4" + }, + { + "name": "mpacket5" + }, + { + "name": "mpacket6" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket.png new file mode 100644 index 0000000000000000000000000000000000000000..5406e0fccf7d1b043575546782c164cb605e89ce GIT binary patch literal 222 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5C^*5> z#WAE}&fCkn+zkc-Y!7&K*qU$l&rc}0ct3y6!32XfK9Lay5! zMr>n0H&8DK%whBmeUm9tTz1_pV6D$}P}&d}AQYc5&Z`e;;WcpWeje#Li%Lz_04tu3gzb&FvgGJa;}f7P>8vbvXK{ sv#i3T`m8-07;gm}s!a`WcmcAEVNGm|VKdj=TQMMxr>mdKI;Vst01ifA2><{9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket1.png new file mode 100644 index 0000000000000000000000000000000000000000..6be1a060a6ac41f2e3d58ea26f9a679108de88c0 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0s-z z#WAE}&fBYdxeghKus#SbxcKOTVTO#c#S7*gKc3{-HP~CQoV=9P&ZERCYg%Y3n&+u; z$Ts-lrElJr)A=qGOB`Teo4~lbwMO)DVnJEu4U>Ut>16rTuE_FN*?p2?w@0 zTmEgaow7^sGV?R9t$B_21(Hjn8tnfT6(8{vJt%29*XqKWySd>mC;v~~P~MRL>!D3i z`1kjb|2+5woRso^N^*ufC1rEZ@Tz!fh63p)J}4 P^bLcjtDnm{r-UW|bU$ZT literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket2.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket2.png new file mode 100644 index 0000000000000000000000000000000000000000..1306b204ed381814036b9e9bea8b9fc9320c1d54 GIT binary patch literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0te_ z#WAE}&fBYdxeghKus#UZVCCiOb9~J2!OmXGAU^*ld%^1`Y2D5f^+JtG3N&7l@rQOEaX+5Oz%1dwmJ{~MQs&E=&Cx#{O3v6WXZZa2WJQX6+`2308?6s8 z7(JM>Z2q>}i%Q?gZQwb4OV>bplIY6l2Ft%y^An_4Zk%;Vb@N@!HzivBX$_-`)c$Ax zy>3_@FtN4!F8DZLZs+dmhACW&o*7PhFOQie$US{xg^>bP0l+XkKKFews literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket3.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket3.png new file mode 100644 index 0000000000000000000000000000000000000000..bd704639c7520db5dc020286aa41b8000b05da2b GIT binary patch literal 290 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0s!w z#WAE}&fBYo+)V)@tPhks0xmt!_}Zl)BlU`X%a_x)XU#g5F~Q)_se_7-92>oVDs?zC zXWOalNdMCGes_`FtQD3#2@K398curLnH#2DUN+7AO!&lwq6_%mm)-h#`0&JERt4-5 z4s1D14{mg{EF-nd&RzET|?{#|YltkHK?5UC1;g_Nb`LZ^nk@wSkHOQ`&t;ucLK6T--gjUC literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket4.png new file mode 100644 index 0000000000000000000000000000000000000000..eb73d47735371ba64beca70fa58dd2370c4026d5 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tJ; z#WAE}&fBSbxehr9w5SU(N$Kb`ACsRTBKC{H%x*J(!t_(;Sh}5+gj8L*x|v%|Udd)m z<&Z97Nn9S;*SI^sKk}N}=_CfW1O}r6Sr6@h@AX?*KAFGe_Z1_q1#`$LP_1eof zhmlQzS*GPerhf3WrOz0jIR;p=W;soYnZX)xSAVinu_wuR}+@%HAr%Fi_m_wm^< z^C&PoDSpb-_nvg*7h~}K^>>)IDh6tOVY>42`D$CYX|2K2L`z>=Pc^@+;oz$0d*UO@ zCylNy?X0K&+cuOo%=+@+f@_2Czdvga$aem{z+Vu{Uv~8TiN8FFQ!a&VyvECLuU}3# p#bL^!1@krqI$TaWp5)80#}ep822WQ%mvv4FO#t%PdMp3{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket6.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/brown_matchbook.rsi/mpacket6.png new file mode 100644 index 0000000000000000000000000000000000000000..5508e6337b45237ca272107af567bb13c60da8c4 GIT binary patch literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tn| z#WAE}&fBZ|xtknB*gvdSbno(n3_};=o)pObU+orDypBgPlGrN+& zQ7SUCZ|5Jr1*d-5H~9VfcHw~7>MuX{y1zSXbKrB$4pw{R_o4xkm%}z*5oh?rZyYs| o(WuRJZ|c&9Ro#p{2@K5h{?)mws~=l&6zD|;Pgg&ebxsLQ0M-h04gdfE literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..f402960713a161162c6842a32ea6da9d63d1024a GIT binary patch literal 331 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1Gv( zi(^Q|oVT|OxeggHxIGO2AfiJVR%nI`u13{=awaA1v2S zi1;@7{l&+L@q5;tJAZn8!wnSUaoE~1-S)upboNbb9k$jN!mcrFOlQA!N=m^slKIFy j*$nOM1`$+uzUN%>*;0s?qj)zkAQ(Jd{an^LB{Ts5?`M27 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e3852cfb00446b03a1b99dbab473c31ea24eaf7d GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|O(o zr;B4q#hkadHgX<85>_4_L{&oMrdVJPHluwZwX!>n+QQQ$d4M=`?@ONTR_yZQNsV2ZMV(@hJb6Mw<&;$VaYKU$C literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/meta.json new file mode 100644 index 00000000000..3ce9b1dd0c1 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6710c72c8a67d4cd21b9fa10b5c52ffa0747b8dc/icons/obj/items/cigarettes.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_righthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_lefthand_0.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mpacket" + }, + { + "name": "mpacket0" + }, + { + "name": "mpacket1" + }, + { + "name": "mpacket2" + }, + { + "name": "mpacket3" + }, + { + "name": "mpacket4" + }, + { + "name": "mpacket5" + }, + { + "name": "mpacket6" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket.png new file mode 100644 index 0000000000000000000000000000000000000000..06086b31e1643c0ff7c9a16bff3fdf4e73302e9e GIT binary patch literal 180 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJYEKu(kch*{2@ zBn&34Qq*$!x_`+Wm9U-9`{xJFiF^=>oZ2$^2H#KQAH@aE0-D#5zmXMIhGrn+z z@x+5ey;DWp8D04t_*>cemtDBdsBFwK&%Ubfve68g*doTfg4uS84y*2HKrCX4VPL3# XrqaoK;K6&KGZ;Kw{an^LB{Ts5|Cu`y literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket0.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket0.png new file mode 100644 index 0000000000000000000000000000000000000000..a7828e563d4da7fbc7431bc15c57d9ea139e2747 GIT binary patch literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJg`O^sArXg@6C_v{Cy4MEB&dWs zhjhHEFRb)jQ=~6%mmab0nVDzWrU|bYfI@7lm4P-|d6QG*E<3m%T*1tChfziS&~*O! z#s+_nD}H}r`BwG-5G+{GU@LB;ewcBI`@wpnr*6UzH=JbU>EYpdt+g$A>ZC7|mhEL$ zd8#6*WBp~rDcgzfzR&eCFj}K n_$}R4D$>&wXu##h$jrVwNSO+sF&=(Azu6{1-oD!MxL$_o@rn_@JfxLxsN3fi6mEQrD<5f=cW z@br$%K)&+H$5ZnAjeI;sNf)%)1$Ypi zUxZu%sue)52h9uUp=NoQ*Jg42be;vy0yeeS#Qtfv3W6XA@By-HF~=DoI#vJx002ov JPDHLkV1lHmY6k!S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket5.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/electro_matchbook.rsi/mpacket5.png new file mode 100644 index 0000000000000000000000000000000000000000..e7675ce9f7fabdc978491d07877fa06c08e06906 GIT binary patch literal 256 zcmV+b0ssDqP)$XHHyu zdAas-AP7RuG<+|tmSfk^sxWsmmfb$_su}nSbhKiq+dobuUiF%FKY<9;F5vwMZ^qJe zUvil(UjU%rFP;KhiGYLa=7?^!Fwf^ZhU*zPs_8&J56A~2^2_-hLz#lArho>-(Sw*1 zz$Zor)S_Fyfa)ox+eu+AP4C{jz+1p(7HjOEcB>!=f&eeGd^p7EEs53u0000QiIXvPrFqR1VMlgr7Jn1Z;tKh00000NkvXXu0mjf DzC~*z literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..f402960713a161162c6842a32ea6da9d63d1024a GIT binary patch literal 331 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1Gv( zi(^Q|oVT|OxeggHxIGO2AfiJVR%nI`u13{=awaA1v2S zi1;@7{l&+L@q5;tJAZn8!wnSUaoE~1-S)upboNbb9k$jN!mcrFOlQA!N=m^slKIFy j*$nOM1`$+uzUN%>*;0s?qj)zkAQ(Jd{an^LB{Ts5?`M27 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e3852cfb00446b03a1b99dbab473c31ea24eaf7d GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|O(o zr;B4q#hkadHgX<85>_4_L{&oMrdVJPHluwZwX!>n+QQQ$d4M=`?@ONTR_yZQNsV2ZMV(@hJb6Mw<&;$VaYKU$C literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/meta.json new file mode 100644 index 00000000000..5869b50b9ef --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6710c72c8a67d4cd21b9fa10b5c52ffa0747b8dc/icons/obj/items/cigarettes.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_righthand_0.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mpacket" + }, + { + "name": "mpacket0" + }, + { + "name": "mpacket1" + }, + { + "name": "mpacket2" + }, + { + "name": "mpacket3" + }, + { + "name": "mpacket4" + }, + { + "name": "mpacket5" + }, + { + "name": "mpacket6" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket.png new file mode 100644 index 0000000000000000000000000000000000000000..937e0da573162d113c1c1318578742b10510f14a GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tk{ z#WAE}&f6=7d`$)-Y!BM28uUtD3C`M4z<%zHY)_}B{)H(k^;FMk{ZY{`ys)tCTE@L( zMyo&ft99SJIIYUS$l<`iB;a6nAnJF3*WMU!&56b9G`Sppq}DI5yB*k5Sh;-bvcqpZ z-bM!I)ox+sa8Fpj`)TFQ`S<5OTg}BVS6SvD&!fx`#t$b1dmd%-91dVV@bHeQ|Kg>- zl?;AXe78T>EiP_JUTeV+-)Pu&ZB>rLhkv=tuNUg@e^4|LVOkry|GTzW0|U#4@&-=J XZ$85O7v9eXdWpf))z4*}Q$iB}{z`0d literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket0.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket0.png new file mode 100644 index 0000000000000000000000000000000000000000..a856aaa6bace15e997d307478b6b696ab98875f1 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5C^*B@ z#WAE}&f6=FTn!2WtQR_(T(KzS(riRtG z?a$s|xWl+WVuIP;`OE&SdHsaZ_x7bK6GdxpZ;iW6yVvdi#4lsJ-Yfqk*8@JF1q=uH Xru{a!pJa7>C5Y$g>gTe~DWM4fB<5Bd literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket1.png new file mode 100644 index 0000000000000000000000000000000000000000..258c86916d5b946483b467fc48b53685410fdcee GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7e|v z#WAE}&f6;+xeghKuwID15GeIR>g5g9{|oHjvj1S#OM59HRN(vK#e&Y&fgMjIx!$kq zza;!A&n!cR&7gttD8te#&KwixR=!`j^_>Uf%jZE}S5Ey}*T8s|@!E{*+n#S~ap1qv z|M<9=#q)$UOIep(mVYMsJoD5!ug{nHbdLYH$s4+9pK1=D$Lu;=)||r1`Mk`w3D>{x zIIfnGp2@i~`or4S^_A>N=XYNU4r9H-$1HJxfz5_-(LeJFjdjFVdQ&MBb@ E09fQ`g#Z8m literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket2.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket2.png new file mode 100644 index 0000000000000000000000000000000000000000..24c7f4c3e422f3c2f75fbd70f236617b8b25745c GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7e?t z#WAE}&f6=7T!#!KSRaJ1xVxlv-9({+GqPXS+&ief!(!IbWKX^clQwpk^+~m6Bx(HN zxBBb6f5QKzF3$uS7+5&iI27}IFIS`=lkm{&Uc&Ib_?SdeYGt@X!y5)up8nkLNBfei z4lH|pZ<|AQuj9%s4CTLK?=N1hC1X)Pv-R0(*$uyirsX$Y7Tup#={-aCf!W`pIreil zR?XX*TXkU9I>WQRAI{woT9$Wk`MUp4WoJ~!wahcpQYhnaU|z{i$h6>};tVHwaP N44$rjF6*2UngGh)YHa`j literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket3.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket3.png new file mode 100644 index 0000000000000000000000000000000000000000..25fbfe1a2cb6360b2059d3d197769d826a546435 GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tk{ z#WAE}&f6&)xeggfw5$)L)yW-d1D3)4S(@5(AS0Lw3WeRqrCFN$y?uI^cTg6H$lwI1$#E%sPJuhJ%bO&x3FI z2GzcoPdIwxwwQEVm(0(R`26pox W`(OL#bJhU8#Ng@b=d#Wzp$P!9$!aeE literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket4.png new file mode 100644 index 0000000000000000000000000000000000000000..b38716a187dec5941800bfa8b4c469f4882310c8 GIT binary patch literal 279 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tG- z#WAE}&f6)5T!$4TTK_xDTB|bQs#0U$y@j^f?=NVVyo{J$qPd9OV8_xaVXbAGT3Obz z{A2&5oc}@i{^pi5P7Ev#4JR3THl|-TarDpTo%2~qv%z|f0Mo`Td(<5o-Y^7l%>Opw zjKLE28v(zzvU+I>1TAAN*na=3?S)lLhJAH%yWTzay}E{HMlI*E+f6%T|F&FaewJ0K zc!ux6q&mx6tm*s9i@$!mWoCO|*Sd#!vjx7ya0G9E5PtptC;l7r#DnuCMHRLQFfam9 ZTyw9}z1LasTY;Wp@O1TaS?83{1OVm_Z_NMz literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket5.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket5.png new file mode 100644 index 0000000000000000000000000000000000000000..ea8d7fbc5a50df179e8b7cc12abc72d0a23aa341 GIT binary patch literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0s@# z#WAE}&f6&)xeghKxaKb`o6NQ=tVyBdr2Py3-;C#)x+7mHEo8kuEvNLtl7!_UD^#W( z+ASdWkk?Xwr@3L87^46KqYs;a(;kWBb8(kVCIq=TGQN3OIq&fFY2R5`46GfNhP*GE zUUIvQ{YHV^tfpP-7Ov9LX_#9VKkb1h)74UEThXI0&Q`E)xYRCDwYz!W{kAUlx=WvY zEUX(!e|^mmJNNfraQF^~^vH^a(pir(Cp~x*Dct6FaQmA7Pvs3P`6g{w=qk#d4 Z?zOjj)cBdi6asz4;OXk;vd$@?2>=C?Z&d&Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket6.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/executive_select_matchbook.rsi/mpacket6.png new file mode 100644 index 0000000000000000000000000000000000000000..b47c372e414ad595a8700d94e87b1bfc9610f44d GIT binary patch literal 277 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tk{ z#WAE}&f6;+xta|G*d7QUSu0WK%h}pj+5S!Px87Utk{q$!Qzoo&QkgA#>&Qx{s0}Jz z1?)v03U!L#XCFS)%D|$KVAN3jPpO6FdXJ$(%ZW)$e~xP|6G@-cui_aP$uKQFYU`1!$cH**In@sH7(u!Kka~A@rK>DH;&g{d3fm@b4TQB z<{zH>=iX(${_yYS+q?YuZ%k3Oi4|(fwwt#y_=EQA&41Wq&TU?~yoakJmcxO8N#Fz9 Ytu-Fj4`TOp0KLTE>FVdQ&MBb@0A0Rsr~m)} literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..f402960713a161162c6842a32ea6da9d63d1024a GIT binary patch literal 331 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1Gv( zi(^Q|oVT|OxeggHxIGO2AfiJVR%nI`u13{=awaA1v2S zi1;@7{l&+L@q5;tJAZn8!wnSUaoE~1-S)upboNbb9k$jN!mcrFOlQA!N=m^slKIFy j*$nOM1`$+uzUN%>*;0s?qj)zkAQ(Jd{an^LB{Ts5?`M27 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e3852cfb00446b03a1b99dbab473c31ea24eaf7d GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|O(o zr;B4q#hkadHgX<85>_4_L{&oMrdVJPHluwZwX!>n+QQQ$d4M=`?@ONTR_yZQNsV2ZMV(@hJb6Mw<&;$VaYKU$C literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/meta.json new file mode 100644 index 00000000000..5869b50b9ef --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6710c72c8a67d4cd21b9fa10b5c52ffa0747b8dc/icons/obj/items/cigarettes.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_righthand_0.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mpacket" + }, + { + "name": "mpacket0" + }, + { + "name": "mpacket1" + }, + { + "name": "mpacket2" + }, + { + "name": "mpacket3" + }, + { + "name": "mpacket4" + }, + { + "name": "mpacket5" + }, + { + "name": "mpacket6" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket.png new file mode 100644 index 0000000000000000000000000000000000000000..cf036106b9b71f4e76d92c8adbde9b731f8896f1 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DA?fX z;uumfCpl3f!QfRxAbXEh!WG8Fd=jM$C;2q|IsdF*wyG!e-L<#7dFB>hGrn|%QQ`De zp0g4wSWomZvGVGQ{A-rJ{^B)5k?xXN%qv*i<}o{H&XuuTWtniG_~5Ctza@AIe|-7V v+rFjzz&hpU5{)w&qY_@I9)j9)_#7hxgM_>W9j^;ZNjT%R!?MmE1R%F@%#d|Gn_XVGz2f%h(9>}xhzFOunwRd cAonmZSf=Xbn)#}q0Xmk!)78&qol`;+08v3w&;S4c literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbook.rsi/mpacket1.png new file mode 100644 index 0000000000000000000000000000000000000000..9a1ed9f87a2d30b68435c8e6c95cc8280e9cd18d GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7ewn z#WAE}PI96|g2AhXK=vN1h7|TG%US+~2ZtWhDu4Ygw(XqdYst)43=^JawWaY~VRF{z za+5W9z!$NzQodQyU~4k-^L(2ndzlZ_&MkPxwDt3Hi85JB_h|NpPrvrgYvu7${TT7o zgEeJo<9WU--d4`~f_yue9W?)b-`USIeY@Y`3CX6H7VKr_F?}L=rNNR>nnBfR)^nzs z%DH+^87{QtJ8g=vgm}VYyGy(*JhfCq6VfoN4g?)3wY3 z%P?i$Th<2xoaZ_6&Jfo0@&7-~;=tkPfkiXp2RnGZHIb01E36>U5JJ-;!Nk?qsL3*Ifv?-&BS{@1=!KAhTiIl-=_ zZ9`tK7Up*h0bc)W-zgtXZM&RcH|L&J zZ{t;u=5KrkS0uMeCcW}rWz}#i;R@qoK8ex;E0`J9 X7rTW^cX??6{lwtu>gTe~DWM4f!=hILvY)^VI&zFsmu+v^;P_wU|yEU!CeOIKjz98QYW(Uo`-*@)&OqcX){&~V= z^+dL}vI#2`&o5v*!+C>2qw$iB_=D50OElRV>{3*&P7f(%*m`gUGteaQml8?`E_k%8zqcnnVZuS({?pIr+bwoGxcYqkiDCwxJ@wz`C7xZfG{LOr z7~4HT!S5>83C~+&U8K4A4702ip3D}Q@$BgXrpuplY&1Uc*Vi&$o?lS z>+VnW<&sZaD<$Rj{qvbpHEEGUfX9S`mdCmi-%rX-kYaJj5&6*4=-4sejqd)T?#Ugc1vb{Zzm-FU&S)vd26hTG#8&? zmbJo@*#a}3J$=A*`BRRK#wY&zTE@%s>uZ=VXYaTdc%6}hdEpm%6IP#qS>25)KzGjD nTXXn?gR+6iriUw-GdLL(J**tApI!v?Fav|9tDnm{r-UW|v`K7I literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox1.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox1.png new file mode 100644 index 0000000000000000000000000000000000000000..60e31b9e40d734fe530b79d6a75fb4dd587a525b GIT binary patch literal 353 zcmV-n0iOPeP)VQ!Pj5=V{0izBWb-<_tMjb$u0}QlP|5MAt z3s-M5lI#EwFqAPRO5OPc zfF}$LLi`X1y#M%_fe@fd8o=ooBEZl{gsSK3^W2mBO8u7fR+FN9obZ0vSw!&00000NkvXXu0mjfU}BF| literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox2.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox2.png new file mode 100644 index 0000000000000000000000000000000000000000..64f17e1bee97213e748ddb51c564132bbe3ba499 GIT binary patch literal 1589 zcmV-52Fm$~P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|clI120{bv5A*SzV~M=_n}s8+FwMJQMUe?u=;f8z} zbuAGdVlc76OLEvUn&DQw+i8wgVvU_r9I?lS*2#%U;-W+&P^Cqa256@a9TQJBQ0C5Z z`idAkcZouhcB926E<=j2be|Y){UDU2S3{L3NOG45Y*%50t0Jomx!kH7F%)xKrl~1ulOPx z8#O*rlCZWy84^GcGl^2BXv{{GgbM(w(3~Z40|KPV14?od$-t%{j<7a(jLuwEzWT9M zfR9QR12!%dV5OvpA4>%>R8=&oYF5*tt~F%IDQnKz^4@dR#FD9HGb`p+i#z&@Q{&)jy!CX z;iFEP2&FL7)S0KvGJV#CSX;8v(v_F3vV7GiYB#FiwVyzZZq)c7wddIrHT0ToK}Q7b zb4E92K#UUsaoY$Wpm}2!3#G&xxs6$L#;#C?lDe@O6l4OOIiQtF-ZK2pzgE;GmWGTo4-3y!W*XM;>R+%L@G*SHC% zH4^xXvf+o;Z0V4*i94z#oUss*U2*Cr_Xd3$t9c$A(wqrrfA2X%kJ+IoPh^o%&1oVJ zY(7HrsAob&=0FvSDxxlRC@#ae_dY{3d30tj$cxBJ$mRvis59!sS1+}p{FulUsb7{t z;ZgdlZGnH*wryA*5A$Zl3fgpr`vr9-R~twlyk&63+KWfs-w#@mI|uZki}m76I|DD3 zP=JU}#KJ|8E(-!dwNx;}wwh8;mxhk)TidvXP?aI)-Uz~hA=7z9G4K&pII1i>lNT7- zZzJJhA8g@7&F@qhI zgLxkq)b6FL0XcWrFsDHby3wJSg-kwBVjzO!z!p($OSc0j3knEz6cKEFtzE>^1$C32 z;{gGGCGXSl(lJWywx6lz9U?=49*TnMYj|5@t}ghkao=XG9pk;O+54KyWwL{E%kg734tJc2w=x+6Bec<4X%R zaMv9_;K32|_e0^=*xIdbPmg#FpAPH~=zmxcVhUjihCcyK%<%3H5?sXq000JJOGiWi z000000Qp0^e*gdg32;bRa{vGi!~g&e!~vBn4jTXf00(qQO+^Rj2nY-ZIoesb$^ZZX z6G=otR9M4fU>F6XU=)mkQ7{Td!6+DDz(|ZD18vp+)Uxox)!Qg`vJk7$P{x!fb?2X) zW{?-|L@ARnZd$ z1|fck1Kxl9OwddwY6Pouj2GNNqynaaPJ~27!K*j#85m@6%VR_X6!<&vFt~a8GqAAp zFdUBBz|ipL24!jB{k!)JYbGsaU|?W?)7Zc}Xx!g@_?ltY_KggJg8U2*e|^Ck-b7_X zDRB|1Wy5DL-;kFLL%sdqcMK{@ niYRLC+`B*cLSPh(f&m8ru-Z$YxD>Cu00000NkvXXu0mjf62{u! literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox3.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox3.png new file mode 100644 index 0000000000000000000000000000000000000000..743b1dda7c1b01f8a93d9fa5404c3c94e0d16b5e GIT binary patch literal 381 zcmV-@0fPRCP)VQ!Pj5=V{0izBWb-<_tMjb$u0}QlP|5MAt z3s-M5lI#EwFqAPRO5OPc zfF}$LLi`X1y#M%_fe@fd8o=ooA^=Sjp^oBr24#6s20=l7hP#tLFl-h3N}dB=y?M{T zAcI>Tm(M|#yLtLEu(0zm{F%7{XwDPz8~_9F-@Rv8GifQ94WqGvchI=M`|vfxuI(Ga zA@K0m7X}6B)irg=HIz_dIY4~jh4 zhd}W8$2Ty&hU*=JijpFVnmhOIlkWhKfe-+t|DY*=`H&00g=9J4*~>SK3^W2mqb?YA b04)Ikm#kgchg~PF00000NkvXXu0mjfNdA&( literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox4.png new file mode 100644 index 0000000000000000000000000000000000000000..79fc64a6c0b5c752bad8acf354059ff0b783aba8 GIT binary patch literal 1628 zcmV-i2BZ0jP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|eawInhe%C2-1OY<8ar9f28|3);)IBryZd_h( zl801kTXxeU2?TsdptSz@eW%~>aE_Xan%Af`<0(;s8$LY0J?la5KFZ~KKOcI$DSbG= zpaLp)rx)9r2Lq(vG01Bfe!sA_M?Yu&Mx&0g{QmK`|GlU0y>9DTsc=KR zjk=dePcfJXIYlnEie~s%eB0Fm&2!6xN}hRO&5rLNCdr!$%|wkhEt;T%26QaE*g%;F z%hl&%96TfoNjZ%+n}kepVHvzcq$J^&E_AIM*Ls5-D^J2yCI}<2eA?2FCVZvsJu-Ym z1ncSHE9k|1aG>KxId4n@AhaL2>E+;Odp+qLumS}2a&ht5-L7 z4{yOC*peDGEIcAw!8i_?uUKs(*0$`jb=Pg%ckK2;?SblF+E1WH57hWV>ddnjYUnjPf-Vts z&KW(J0WmHF#O)w}faZf)b}EGratE^bDY^WkNiqaTV&yjjfXJ0kJvnj;-@4v9dugfkW*YA8>s06=&=U$j@g;=-=(xoF1)R1H?#x#f?-O&LfBjB>N3{FNjIux^z^d_=#0@@iLsvRrpLblUr z1Bo$Y*=|=X0B&t4Ui`q0LOXvz)3+UUXqAaKS1D!!l=PsCL=1n7xQsd-T-pHIGTI3M z7@H2jycBo`R6pomFdw)N?1u?(L*oPV4e;owMNYM$%cm|3Vk{ZfCYW!l>Lly2AO<{P zv--5WMSZSe8QuU=d*Wh&q5$a~uF)|^AjRWSk?aO(Z1OK}-(FGLF1$miA@aIbPYrHe z&33IDMS=C54|T2z!}^BrjQfT$yU*>m2W~NZ_Fje9Rr_^mntP-48-m+YjN=j1DR4VF zIvsJS{ccv2T-w+J!T=0KJ6}#>5;g&h{{^Xw5di_ETnGt)H2?qr24YJ`L;wH)0002_L%V+f000SaNLh0L z01m_e01m_fl`9S#00007bV*G`2j~b03Lla?|tFfhPrY~URZ20Wu z8}hPY$TuMd1_lNOUJfn>1_lNOc{U!@EC!9^&p*CFLWt`fgNl+Oikdt3?hn2Y7zLwX azySb0by_28{*~eY0000 zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cax5nd{bv^N!o=Lo45=q!qRz)ND9IaTj;FoXT44ZD-Xg@fZMS!e_p~@170a>^#~sk zVfS?N73^Z(IM8;Z>^Fu15L!3f^f>rl9#41zR)C-$Hy3QM#&%87l-{@{hX8_c3VHF1 zY;4r{uq0t^g)t<6AZ8M!OwpK)CL;E$yO4pkLRs+!fbsA~;ba>|->w!F_=HL+xB+02T$)gmPoExA}J z#Y=T|!I4zYZeHBIR;*c5s9K?2F{0MSOPmF25GP`jb}L-`x1(G4{|NbPa!JsCZ^*rjTY#^> z!i`@+E^O%j1>`tPd57BvsEvIS_Ji1U3b#+A;Pjz?mdd5V*?d)gRen$OJ<<0>|Lcix zIn^`4K}P)Y&kn9PKCN@Xxdf zw>1Lzld<8`-R#*h&lc{;mT<>nitLJ8H@P?1(^$>(;E?7_xcht08FtJLJ9#3CjA~93 zabW8af=4|ADk2B6P-GExsl#v?#=Z9$qRCTZR-M&Y8?r*da_(z;VJQMrZ%f-^!F6sk zo3D|v!B(s5L^gs5*GP*kM5TcX|2S*|q=-Q;Bid^C!3o;~dEEUlD{R!JcZqzIs||!1 zKI_%g%i>X2K*Om(Rs`7ri0D~0?NGg79+2}1&RhavwSX{c*t2;b7BF{j1uavTJA6B* z0Sz?In`@*Ggl(`QLf)N%sHk2$0;tQhRVi%JfEQYk<&@12WaRNnnY(5{(~;mwG81HM zs+$go*zia9v#H&{sdmspdfiOHW;YRdDtO_re6!%tVbfyM!$Ui~fXSN?7ZZ9z(z4SM zz&doI^ROkOcR7&PK_JG&G-!4kxeSY8iIy?DMR)^9fgBP1DaZrh8ttPyashmO*acEw zR6Zm@_>dKwTN7^=s&R8FBU6D96?DrB$%C~Ow=4__6L^|}l5tzu%xYtSmmQxwybmdK zaaP*-x*A)l3%;_vZ;v3Kf!op0X!jsTEa9jkH{)jWsOlOx7-OzWvFuY?j~-H(KGs|| zk9thK?kzygeTGbZyA6N9^-(t@Tan7TE)0B?oeDC~pUQBn=ss|3S3!=e$}P_M_>XW? zdE4g6Hm~rzuJB3Ut6j&efMXb6CiEvV{OSb%iHQLI@bD*?#0NMpjcWA(000JJOGiWi z000000Qp0^e*gdg32;bRa{vGi!~g&e!~vBn4jTXf00(qQO+^Rj2nY-a7l9Y1$^ZZX z8A(JzR9M69lQB!fP!xqfC8(5!@Pbj$!b7W*iw^#RLcuOBj{Q|Sx!27>mkL6EfrBni zS|tz!laMIUA|mKe5gyHh*jDQBzU2+~JnrFK4j2pugTY`hOqi)6qRox<&v7lhy1r3% zT17u@RkjQ1E`tlCXX8g1(zBJBA7ul2>o@L&E2uRabXsj{%?1FSR$CPX;5vN+%WgK$@f+?;ipDym=(gS$+c3L)LI36&DoR#z0w?cM$VOTb{5I9~?TTi_fAa~J>s002ovPDHLkV1nYq_C5dr literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox6.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/matchbox.rsi/matchbox6.png new file mode 100644 index 0000000000000000000000000000000000000000..393a82edd1d73c040eb176f04728f8a958a9c016 GIT binary patch literal 379 zcmV->0fhdEP)VQ!Pj5=V{0izBWb-<_tMjb$u0}QlP|5MAt z3s-M5lI#EwFqAPRO5OP%{T#>3#|>CeEz&ckpxY6HVGftMKSNs0nN zAwdS`7%zssOSXY&5CE}Jz!L@rA%2Jh?mm3YuxtB920=l7hKIktU^SB}X#kgFl;uU? zA@FDB2B64S+Bg6gpjrsLdh?!vK?b)xMl?VHdI-FF^MpJHz`*-=?-|xiS_)>vXl&r! z$IoCIBLtW*)e`N1ofmcy?ND%t0l|hhK;r0QAn_Qh;Egp Z006|QYc`ps!D|2j002ovPDHLkV1hnunJVR%nI`u13{=awaA1v2S zi1;@7{l&+L@q5;tJAZn8!wnSUaoE~1-S)upboNbb9k$jN!mcrFOlQA!N=m^slKIFy j*$nOM1`$+uzUN%>*;0s?qj)zkAQ(Jd{an^LB{Ts5?`M27 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..e3852cfb00446b03a1b99dbab473c31ea24eaf7d GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|O(o zr;B4q#hkadHgX<85>_4_L{&oMrdVJPHluwZwX!>n+QQQ$d4M=`?@ONTR_yZQNsV2ZMV(@hJb6Mw<&;$VaYKU$C literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/meta.json new file mode 100644 index 00000000000..5869b50b9ef --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/6710c72c8a67d4cd21b9fa10b5c52ffa0747b8dc/icons/obj/items/cigarettes.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_lefthand_0.dmi, https://github.com/cmss13-devs/cmss13/blob/106c92cdf232ebc12c9d7a2feb23956c6755496f/icons/mob/humans/onmob/items_righthand_0.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mpacket" + }, + { + "name": "mpacket0" + }, + { + "name": "mpacket1" + }, + { + "name": "mpacket2" + }, + { + "name": "mpacket3" + }, + { + "name": "mpacket4" + }, + { + "name": "mpacket5" + }, + { + "name": "mpacket6" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket.png new file mode 100644 index 0000000000000000000000000000000000000000..35f901485ebb9752a2e0e9d400f252de54fc47be GIT binary patch literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7f0w z#WAE}PI96|g2AhXK=vN1ge#1T`6NmiPV#B^bN*SsY*kO_yK8TE^UN*2W_;-i2r-ai zQn5~Wo?P7adw1cJrsHQEifnUb8BR52wWaY~0m(gmR?E|N;7=d#oc$jseB--O`b0)q nz&L=LXYZm4h-(gP0J^+L$f)_3#FBqNXES)Z`njxgN@xNAby;5w literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket0.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket0.png new file mode 100644 index 0000000000000000000000000000000000000000..109cd9165cdf85d417e677cc55802a4ee3610d33 GIT binary patch literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tq} z#WAE}PI96|g2AhXK=vN1h7|TG%US+~2ZtWhDu4Ygw(XqdYst)44COZ`^H{B`-*_ta zXJOmI$u6Hg$_~`_X|P>0PqTP(r6GksS9ZaVWXa}TCv?{o?Qc|c(30R~oFsc;V|3HO z4~E8JJ3pJNG(0iBWunA5Jp2fU^*G<-86Z5(I z6(G@SPRMsIE>hgpu aj0|UQxjcH1-%<0PqTP(r6GksS9ZaVWXa}TCv?{o?Qc|c(30R~oFsc;V|3HO z4~E8JJ3pJNG(0iBWu+iqnqy%Vn9@lc$Qdq6> z=Z(W&rji$;N15L>d^VRe`eXNf;=@nZG9`-ExJhj(Z&=u7(=276p1{1o#p81f0~ce_ tlNHYx7Vt}YepL;Xb;yPKCE*GqLkgew37PH#hCt6Uc)I$ztaD0e0swYmcDMil literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket2.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket2.png new file mode 100644 index 0000000000000000000000000000000000000000..a32e807af53fb03c20febe44c71688dea4de5d44 GIT binary patch literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQvf z#WAE}PI96|g2AhXK=vN1h7|TG%US+~2ZtWhDu4Ygw(XqdYst)44COZ`^H{B`-*_ta zXJOmI$u6Hg$_~`_X|P>0PqTP(r6GksS9ZaVWXa}TCv?{o?Qc|c(30R~oFsc;V|3HO z4~E8JJ3pJNG(0iBWu+iqnq)bRpPEI)2ePn{N z=!8(Ay0V1CA8S?|QaIpXDN*J6vBCPmpWb$!{pV{_cAP1YI$_P=()(PVk zjKxf53|=iJ=UEpBD7g1!@iF|GFfk-P=qlqCw#9rBr3Y3pyU8*zIQ98P?=*8&26~;r M)78&qol`;+0B`ntrvLx| literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket3.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket3.png new file mode 100644 index 0000000000000000000000000000000000000000..29263262f942775ac542ddcff8b7063f8936b6c2 GIT binary patch literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEPzE z#WAE}PI96|g2AhXK=vN1h7|TG%US+~2ZtWhDu4Ygw(XqdYst)44COZ`^H{B`-*_ta zXJOmI$u6Hg$_~`_X|P>0PqTP(r6GksS9ZaVWXa}TCv?{o?Qc|c(30R~oFsc;V|3HO z4~E8JJ3pJNG(0iBWu+iqnq)bRpPOkXzTD&>P z)22&iWy6|DA2u^{A5M1_Z9D%x-!OoyEiTaJ0iQ+vW5vVoi{&NtjOVa@*3X~IHa*$& z(t^FrJf=@1uQXUPN;9ZB&3euhz%fDD-ISf7_JqeO{gtm6vYJ8uOSrGoXy85}Sb4q9e09z7$R{#J2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket4.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket4.png new file mode 100644 index 0000000000000000000000000000000000000000..2e64a92c5dce494fba779240884d20891d23f35b GIT binary patch literal 327 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQOU z#WAE}PI96|g2AhXK=vN1h7|TG%US+~2ZtWhDu4Ygw(XqdYst)44COZ`^H{B`-*_ta zXJOmI$u6Hg$_~`_X|P>0PqTP(r6GksS9ZaVWXa}TCv?{o?Qc|c(30R~oFsc;V|3HO z4~E8JJ3pJNG(0iBWu+iqnq)bRpPOkXzT6{*@ zx$c(J6S+=kaoSsNFsKO&N&HdsUu=e0f`UBH-bED$WDEWsb8fr;+|DQ_&4Txta|Xxk zs~*kY_zbR0NDp9s#*)J@g(Gtww}YZXpUhPmhA)cBEB7r~#k_*oO&01)28QFWL+?6z S-sJ=a0)wZkpUXO@geCy5i-COr literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket5.png b/Resources/Textures/ADT/Objects/Consumable/Smokeables/Matchboxes/we_ya_matchbook.rsi/mpacket5.png new file mode 100644 index 0000000000000000000000000000000000000000..0d655fb34e6c9ae0c22d674ffa44362ba0f21af6 GIT binary patch literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEPzE z#WAE}PI96|g2AhXK=vN1h7|TG%US+~2ZtWhDu4Ygw(XqdYst)44COZ`^H{B`-*_ta zXJOmI$u6Hg$_~`_X|P>0PqTP(r6GksS9ZaVWXa}TCv?{o?Qc|c(30R~oFsc;V|3HO z4~E8JJ3pJNG(0iBWu+iqnq)bRpPOkXzT6|8J zRww)EiCibNIPI-B7}SJ?B>t%RFE&R_oM-Q%iUYC*|BgAg-G6Rp6q9Db`|R+`wU;F# zdQCFkGdS~BvY96M9bj|lobYTXg9y`;6M<(L9psHBz4BgV)o?4}3gcoviP8frm>HbE W$DBE0PqTP(r6GksS9ZaVWXa}TCv?{o?Qc|c(30R~oFsc;V|3HO z4~E8JJ3pJNG(0iBWu+iqnq)bRpPOkXzTAZu) z`sJR+5Qi|&A2%CYA8ua6b@=)3?Ex8WJXr_kH1IYEX`C%))L=O=aq%qX2D=oMtJ6bD8MYo=!R#gr_9g>^S4K?H U@lR@Yz%XF&boFyt=akR{04hUe#_ zo87i|W%8B?21)PUv;B|0Z-!lkv($=bOhDs+z=PS~*vsv;P94j5KJ2@*X;+f1)RxL` z?R`JeZhsD83(R8ibgDQfrV~HEQi^Tbzv&_m%IcM_$0{G&)V=p@bGn3F<*~vu=QWsD zXkPqpJN|?1w!g2lON0yOk$`?vye;)MHUGNHMXC2d;IllKy|1 zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cmLw+*{bv=k1O({8asWx^cn4noTr#t=%RTLO zjqN`>qOyoX@DRFJSBet9{*vWCxLWI@3|5mVQgMwrW?Oi$`t6EW`|P7S9{(TLTCaCh zseFF%erjkt+Wzd+@p{`|{U77y-D061ydeH=LVs`5K5wia7PZ=bV^N>KIn?twuV1EH zW;{=~hQJN-Jk)cG^05pCZg{CbrU`DvkMXRJd)B+js)t7Pdg{h~Xi}qIlLmRAMM*)9 z_RxWiqeWA+t)12%eb%+jc6#m9$Gs_=_SwB#Z~e6B9jNv8wuK)1&c}X-3_CkvXd^5} znDW!R{Lz4~+?l7sM?^S1y?6n;TDv&Vbz{H(F${oEzHsA*gFo)~RXzdRfgnHJY&hVm z`?*j zb4$ApWffI5ow}^sFg7tYvuSI#*%6XFW$Ls!=UUivjk0)Q_QHs@cH4cA&0Dr^+jFl2 z`kZn2$kAhGp5@KE4`&xwH=n+O0#qt7fXV#Z2vEqjjSl+?7Gx!$PJD{Q~N{}0sY zg<5+cb;s!&HT0_9g&s@L)fv8+0kJj+i0efFgl-qJYBWZ>$X(3pY={bOFp@7ePIVO$ zKsbULC%v)zhTNBNEAaIn;nu!_T)EKw4al_;{X5)#fSO+=JP*X4QFwh?JE9No!&b8e zXSe6WUu}PXp|A}JjCy?N(Z0^`B{FB{b$UN6I0elWJSQA#MVL?ZwMHm>v30pv+RQ^* zq0%Pd`*0%iBJ}jBskM1{>-#9B?0aUDURq`LY3{TGOv}pZF?-Nb8`%2@2PTm1Ip3Zx>wI#0cR&p9)g(K)qI}UTbL!pn_UUf?B@Tsm!2P%IDO#wN_>Ciu#CnJt( z_c9zu+Q?+)0)nC230i_}AXk`q9oF`;bAH#`+pC^3FepH#>e~%Y5DI_&#yB#Zy?JFE%W$0u5+XN-d-~iU@9c?^BCI&$jL7ZE(%~A!4bTS( zqb?<%=$V@l&wz^Y$7VlvdZ~X?jQqRM&sx_+>=n}sYefTMfXE%G1L_Z5%ihBo@ymFn zXG0;6L~h@Zv%L|;DeKs}dL!V`3=&XV8ch^UATXYxi-=jRyP@c9ho_wl)rHQq$RibD z0S+aB>u2;!IxPm~g6!T}$}kzwX?5(kkd+qsS!9ANS91tKwiGf3rCU2=C(}c(JJMek zRDFAAooO&~j{&Ym%fovPu9DPqj*QfP%yAE15o-Bo)jPmjDtwm_9nx^o_8Su|i z*oxH$A})5F%60AoU);0>Ekn|UNES%ffI>jsazLm)ulTc81xe(JFk}wel~k_Hi(n;d zzs_W+b0v73d2Z;!kO*vS$g5iunFzugz!zSx&@DVdcRW^cKS%$vUIm|p21d$8Bs-|Zw9jr_?A9e<-a$4*?4brZ4y*0ZkUT)`Szm?MLaD8SP5&I50jOm1IrGZ9@@@lxcZTN8R!ZRW_#J zBfCR05R5a%DmynaeTSIjbd)rT61#7Y5PXPUb;4=n3*u6~q(1-Pg^(Kybf}j90$Tq~ zjhqT0HUIzs24YJ`L;wH)0002_L%V+f000SaNLh0L01m_e01m_fl`9S#00007bV*G` z2j~b04G0$Z()?=x007rXL_t(|+U?x2ZNg9x2H;R2Kzv{0^6vh7(kpB^B>;FhL*K26H}P}%K0a*_L*E@sg>Vp{ki@mtBd`6*(2B-+y(#u00000H#PL#LJC5$ zY2tGkg_n_Cf08?VsSt*~i|J{T9YWUk0kQiiw*Bd8lTvf|eF6Xg00000a6@CfpMU7# tqpjm=v{wKC literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/meta.json b/Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/meta.json new file mode 100644 index 00000000000..0ecb4bb2b10 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from cmss13 at https://github.com/cmss13-devs/cmss13/blob/master/icons/obj/items/items.dmi", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "closed" + }, + { + "name": "open" + }, + { + "name": "lighter_flame", + "delays": [ + [ + 0.2, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/open.png b/Resources/Textures/ADT/Objects/Tools/Lighters/execzippo.rsi/open.png new file mode 100644 index 0000000000000000000000000000000000000000..b0f88a7f4e6558db4710de6304d1486a365c2da4 GIT binary patch literal 1594 zcmV-A2F3Y_P) zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cb|fbZ{bvkTLOO17+?k z$6OKP%3Y$6q}^z-NtGc*SUOJ;NkRA~3mx~?HxB|U6AmM6dD_Bf46n4cdW4OL zpgmo-f?UiS2ij(o-GdE)(7JHb!@zIt_JuoO1qkY4<^lyhw)2Rl^zK`7IDmjpK~Mi8 z8yht~yd>dng)k(5AZ8M!OwpK)CtaRUOR$^$}j63M`(z>jb@_81+!tbEQR zRDh3476Ud_9AKrS@E=PBKIAHzR5hz<(W)M@3ZMs8ykD21O5)0b!cNy6A@8J901M7GUeo zaN}2y3mdwhfEns+Sr+}ABde%xNRB*(TDX}oQuQQd=9=#e;@Qe9W)w-fbM=6 zevUlx^MhKRjdqWFM}*UIWB1yKyd}hkQgYOz9>(cVDN@3m#vi5Ob4GR2y3i-&_(4O} zo9b+WSj|3WpTl*AnQNMLNu7v8wFXu#HcVFYTqnY;ui8(s=aAZe0sIXWMke~|QIHJg zxM0HP~|Myz|qGh%U_1u4ktgw)lBTJJ~$%_{X4wjl@!0U6f!sLRNG;EA(_G4dAs zz+bw2YHqWuuZnauCu&|htcbe2MGA1IWAH;1{?OO%a|sb?$bG1Lhe%N;%2XM61<@=E zdc=Y3T1PJvIa)I+ur^7#Z@mc)rFm8q?HL*Y!h!uL1%gC-nXE#c!vS8U;XfHrG2pod z;b4$lbSLtT++LJgA^5uw?+#27UQ)}$N(p7L`$`N~hcO$n@GLUmJGu3V4dP3NOGJoT z^tn)1W(!rcb=;DF*0_V#R38`;YP$d7evU7 zN&A)A!nd>jMMM03&@VX179NK+{0)?9yJF+vCz1dF00v@9M??Ss00000`9r&Z00009 za7bBm000ie000ie0hKEb8vp!Ab%_ z9EU%{Ly)+JBI;fQy=)*AUL)|f?+`(6(WO`El3to&l!dxwMbOzx-Kh~iZl)mrLWsii$rBMlb*}K@yRIw)p7~9*(Q~YBZMHV#cvG$C}NgX|-D9 zaybCb3;O`v+W#OR1a`LlEl>hVAo!QT scaJZVDzv^IlAqp=zumS9h2mfE1*X=1nZ{xE`2YX_07*qoM6N<$f)=mk`~Uy| literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Tools/Lighters/zippo.rsi/closed.png b/Resources/Textures/ADT/Objects/Tools/Lighters/zippo.rsi/closed.png new file mode 100644 index 0000000000000000000000000000000000000000..6143a359edde2882a03a56e02022b766f5682a1b GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7f6y z#WAE}PI96|g2AhXK=vN1ge#1T`4nz4mTpe_dtCkglxfF2jM*D>{J(uTxSnH0n~3{_ zCk^4> zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-|cmLw+*{bv=k1O({8asWx^cn4noTr#t=%RTLO zjqN`>qOyoX@DRFJSBet9{*vWCxLWI@3|5mVQgMwrW?Oi$`t6EW`|P7S9{(TLTCaCh zseFF%erjkt+Wzd+@p{`|{U77y-D061ydeH=LVs`5K5wia7PZ=bV^N>KIn?twuV1EH zW;{=~hQJN-Jk)cG^05pCZg{CbrU`DvkMXRJd)B+js)t7Pdg{h~Xi}qIlLmRAMM*)9 z_RxWiqeWA+t)12%eb%+jc6#m9$Gs_=_SwB#Z~e6B9jNv8wuK)1&c}X-3_CkvXd^5} znDW!R{Lz4~+?l7sM?^S1y?6n;TDv&Vbz{H(F${oEzHsA*gFo)~RXzdRfgnHJY&hVm z`?*j zb4$ApWffI5ow}^sFg7tYvuSI#*%6XFW$Ls!=UUivjk0)Q_QHs@cH4cA&0Dr^+jFl2 z`kZn2$kAhGp5@KE4`&xwH=n+O0#qt7fXV#Z2vEqjjSl+?7Gx!$PJD{Q~N{}0sY zg<5+cb;s!&HT0_9g&s@L)fv8+0kJj+i0efFgl-qJYBWZ>$X(3pY={bOFp@7ePIVO$ zKsbULC%v)zhTNBNEAaIn;nu!_T)EKw4al_;{X5)#fSO+=JP*X4QFwh?JE9No!&b8e zXSe6WUu}PXp|A}JjCy?N(Z0^`B{FB{b$UN6I0elWJSQA#MVL?ZwMHm>v30pv+RQ^* zq0%Pd`*0%iBJ}jBskM1{>-#9B?0aUDURq`LY3{TGOv}pZF?-Nb8`%2@2PTm1Ip3Zx>wI#0cR&p9)g(K)qI}UTbL!pn_UUf?B@Tsm!2P%IDO#wN_>Ciu#CnJt( z_c9zu+Q?+)0)nC230i_}AXk`q9oF`;bAH#`+pC^3FepH#>e~%Y5DI_&#yB#Zy?JFE%W$0u5+XN-d-~iU@9c?^BCI&$jL7ZE(%~A!4bTS( zqb?<%=$V@l&wz^Y$7VlvdZ~X?jQqRM&sx_+>=n}sYefTMfXE%G1L_Z5%ihBo@ymFn zXG0;6L~h@Zv%L|;DeKs}dL!V`3=&XV8ch^UATXYxi-=jRyP@c9ho_wl)rHQq$RibD z0S+aB>u2;!IxPm~g6!T}$}kzwX?5(kkd+qsS!9ANS91tKwiGf3rCU2=C(}c(JJMek zRDFAAooO&~j{&Ym%fovPu9DPqj*QfP%yAE15o-Bo)jPmjDtwm_9nx^o_8Su|i z*oxH$A})5F%60AoU);0>Ekn|UNES%ffI>jsazLm)ulTc81xe(JFk}wel~k_Hi(n;d zzs_W+b0v73d2Z;!kO*vS$g5iunFzugz!zSx&@DVdcRW^cKS%$vUIm|p21d$8Bs-|Zw9jr_?A9e<-a$4*?4brZ4y*0ZkUT)`Szm?MLaD8SP5&I50jOm1IrGZ9@@@lxcZTN8R!ZRW_#J zBfCR05R5a%DmynaeTSIjbd)rT61#7Y5PXPUb;4=n3*u6~q(1-Pg^(Kybf}j90$Tq~ zjhqT0HUIzs24YJ`L;wH)0002_L%V+f000SaNLh0L01m_e01m_fl`9S#00007bV*G` z2j~b04G0Jg-N6U|007rXL_t(|+U?x2ZNg9x2H;R2Kzv{0^6vh7(kpB^B>;FhL*K26H}P}%K0a*_L*E@sg>Vp{ki@mtBd`6*(2B-+y(#u00000H#PL#LJC5$ zY2tGkg_n_Cf08?VsSt*~i|J{T9YWUk0kQiiw*Bd8lTvf|eF6Xg00000a6@CfpMU7# tqpjm zaB^>EX>4U6ba`-PAZ2)IW&i+q+U-_bk|QY${O1&V1SBCOj>9uzZ?MPTq{^=L^tz|r zJ+psPgi9ENNR*POF#q{`g}?An@f4Dp=aO^8lS(RF(ee29%$q#ND5m3mf9Uq6@N|M9 z1yasIOSf6Mjo1xVwLp~36 zZV~Qgpx9taj%69m@Kf~dXa&tyYm^Tl!-6;DFHLyVI#+x1vzPIZM55x*+)5Fb<1J>A16HVzYw&Vx^fu2I1@kKT^ zYkWjW!rlrnB%mN>5~WPhn2jh2I|!;k&XTx+0aE1wkeoy^xN*c0_Qo2cLzk7$aij|P zQORQ9rbq=@DJkN|k|TzyiY8UfYU*0FhAcT{%{g1%Iaf_AnOZh8w_?@BldESpcQ0NG z7ePvD$;FD7QfkGXHHE4bt1C2WZQP`#rY$#X-b$+-;nP#sp1XDLrPskjMjATuu;HVO zI%y)5!c0?Vo;H1!Sr=k$$x2ICUbcLdRWH_Vtp2Bcfi=3Z#s^bd&o0(5YPJm>CTQ0g z-JF3jP6WnnGk}2R%~^Cxi8phbvsf5ep$w3^xfv8|pbQGrB-TY2cW=zS%v*r3KjV#G zVJ>XyegktHro7|r32S3l!hSGzX5sc}6l5Rfr&sn0XY<+lRr$xz|72((V!YO=LMxA% ztdF*@?7;|8>Xqhb9gMeptSORXJ(kB8WO!Bao!p?>%;V@FuyYV?fKmyVv{)iUcS%T~ zft#>S>sc^^6f2324$}Rp3?EH=LF(+PNRhTXX%MlDnCr%bSKXJvRz*n@I=ZM;{-L$- zt8gwu2d*!|Ldv5&m@e+%JS`MT4fOCA1v?GnhScX_y_d8s3htWCRf%__Pi6RM;sC_a)KB1Kb&~ptfEft~WrRo6{fE7ioWZ1Oc&c9gDi|D{f z8ft4%6y%V`juzCiYg^tGcl0wQ@U`<=kcJNxWH=IP(SUnKcO=#|02kJbVqF`u3N8d& zIp7|cKDq(VtPQvTlv3?7vkXPnEk*`-izZtEXV(dx%w=|Nqfe==TW$f{>`syBemWP6 zzMOhE+6Ora@Yf-51raU_H5>)_i~H%n{E#I%aBV~3)MzyBfw^TWKKWGKpQWD`sqkVo zYd05cSt@g~EZDGOSF4$EWgkK7Z?Ok-b!}fp>UKrp85Z&rH->Nc^{E@f3x0gbjiLYc zTVzAz?N6^}jIWJ{0iL)Uwy)?wqGa(g(h;v7@FDaoad^q_-GzS)eb12Kwr6_&ob=g=41Hz>o?6Dz%?KV2PAQc}Xez`(!|85zmIz`(#TXZAD(avZ@zs)nf4^#2SD3=D16l?;)Qkqpb1 zFK1w2U|>i|&0;XLwqUq^?IQIZz|O`BXSY>XGQ52M8E!d@Ua)itgSa3s0|NuY|7Ejh zGE&6>P=io{Ra;A&L0pg*?sFI|F38L9^8IJ(mjlSYiAqiXf8^K^hVMUqVpYq@!9Ier u;iv;f9YD7R39gcmm~1-=M!_f;5&!^r7g&=l|5J1T0000 Date: Sun, 13 Oct 2024 14:22:55 +0300 Subject: [PATCH 12/34] Auto CL update (#630) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index ff611367c36..794f68e4ba5 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3547,3 +3547,26 @@ Entries: - {message: Добавлены спонсорские вещи одного из жертвователей., type: Add} time: '2024-10-10T12:24:19Z' id: 437 + - author: Inconnu (Тянка Шрёди:3) + changes: + - {message: Слизнекотики занерфлены (Подробнее см. пр), type: Tweak} + - {message: Великие разумы всея галактики сжали почти все скафандры вселенной + до размеров 4х4, type: Tweak} + - {message: Тараканов больше нельзя гибнуть, type: Tweak} + time: '2024-10-11T20:06:52Z' + id: 438 + - author: Дубик + changes: + - {message: Добавлена кега-граната, type: Add} + time: '2024-10-13T07:22:23Z' + id: 439 + - author: Hyrmik + changes: + - {message: НТ установило сотрудничество с несколькими табачными корпорациями + в галактике и теперь новые виды возможностей получения рака лёгких можно + приобрести в ShadyCigs Делюкс! Слава НТ!, type: Add} + - {message: 'В связи с увеличением спроса на табачную продукцию, а также в рамках + новой миссии ТСФ по целенаправленной борьбе с незаконными табачными плантациями, + цены на табак были повышены. Слава ТСФ!!', type: Add} + time: '2024-10-13T10:27:21Z' + id: 440 From 1283c5bfff8c650bbe34923539bdfb001e5ee93b Mon Sep 17 00:00:00 2001 From: Kasey <143746353+BitBoxxxer@users.noreply.github.com> Date: Sun, 13 Oct 2024 21:15:13 +0500 Subject: [PATCH 13/34] =?UTF-8?q?=D0=A1=D0=BF=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=B8=D0=BA=20=D0=91=D0=BE=D0=B1=D0=BE=20+=20=D0=B8=D0=B3?= =?UTF-8?q?=D1=80=D1=83=D1=88=D0=BA=D0=B0=20(#589)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Добавление спального - переносного мешка Бобо + Плюшевой игрушки бобо (орущая при броске) ## Почему / Баланс Заказ дс -> https://discord.com/channels/901772674865455115/1289343771686998147 ## Техническая информация Добавлено: Локализаторы, спальник, плюшевая игрушка Спальник можно растегивать, застегивать, сложить (если мешок застегнут), вешать на слот рюкзака. Так же на нем игрокам можно ложиться спать. Плюшевая игрушка при нажимании издает звук 'meh', при кидании издает звуки криков Унатха. ![Screenshot_16](https://github.com/user-attachments/assets/36a764d7-2584-4430-9de8-074afc64be0d) ![Screenshot_17](https://github.com/user-attachments/assets/a434f476-3fa4-4134-9243-66c5c7e182e1) ## Требования - [X] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [X] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре **Чейнджлог** :cl: Kasey [Adnoda] Bitboxxer - add: Раскладной спальный мешок Бобо, плюшевая игрушка Бобо --------- Co-authored-by: Schrödinger <132720404+Schrodinger71@users.noreply.github.com> Co-authored-by: Darki255 Co-authored-by: bananchiki <87230164+Darkiich@users.noreply.github.com> --- .../Locale/ru-RU/ADT/personalization.ftl | 10 ++ .../Objects/personalization_items.yml | 129 ++++++++++++++++++ .../Entities/Structures/Furniture/beds.yml | 2 +- .../ADT/Personalization/toys.rsi/meta.json | 3 + .../Personalization/toys.rsi/plushie_bobo.png | Bin 0 -> 1127 bytes .../Furniture/meshok.rsi/duffel_bag.png | Bin 0 -> 544 bytes .../meshok.rsi/duffel_bag_folded.png | Bin 0 -> 927 bytes .../meshok.rsi/equipped-BACKPACK.png | Bin 0 -> 1050 bytes .../Furniture/meshok.rsi/inhand-left.png | Bin 0 -> 938 bytes .../Furniture/meshok.rsi/inhand-right.png | Bin 0 -> 946 bytes .../Structures/Furniture/meshok.rsi/meta.json | 32 +++++ .../Furniture/meshok.rsi/open_overlay.png | Bin 0 -> 553 bytes 12 files changed, 175 insertions(+), 1 deletion(-) create mode 100644 Resources/Textures/ADT/Personalization/toys.rsi/plushie_bobo.png create mode 100644 Resources/Textures/ADT/Structures/Furniture/meshok.rsi/duffel_bag.png create mode 100644 Resources/Textures/ADT/Structures/Furniture/meshok.rsi/duffel_bag_folded.png create mode 100644 Resources/Textures/ADT/Structures/Furniture/meshok.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/ADT/Structures/Furniture/meshok.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Structures/Furniture/meshok.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Structures/Furniture/meshok.rsi/meta.json create mode 100644 Resources/Textures/ADT/Structures/Furniture/meshok.rsi/open_overlay.png diff --git a/Resources/Locale/ru-RU/ADT/personalization.ftl b/Resources/Locale/ru-RU/ADT/personalization.ftl index 554b969d436..e233cc9ab17 100644 --- a/Resources/Locale/ru-RU/ADT/personalization.ftl +++ b/Resources/Locale/ru-RU/ADT/personalization.ftl @@ -264,6 +264,10 @@ ent-ADTPlushieLiexer = Плюшевая Кетуя .desc = Мягкая и пушистая игрушка... О боже! У нее топор! Пахнет мандаринами. .suffix = { "" } +ent-PlushieBobo = Плюшевый Бобо + .desc = Это игрушка, изготовленная из разных видов ткани с набивкой холлофайбера внутри. Лучше ее не ронять... + .suffix = { "" } + ent-ADTPlushieTeo = плюшевый Тео .desc = Он мрачен, как грозовая туча. @@ -335,6 +339,12 @@ ent-ADTClothingOuterCoatMaki = Пальто Хонкоматери .desc = Пальто дарованное самой Хонкоматерью одному из её лучших клоунов несущих веру Хонка. Оно такое же вычурное, как и сами клоуны, а жёлтые элементы выполнены из чистого бананиума. От пальто исходит лёгкий запах кремового пирога. .suffix = Именное, Maki_gg. +ent-ADTBedSleepingBagBobo = удобный спальник Бобо + .desc = Это специальное одеяло-кокон, которое сохраняет тепло гуманоида во время сна. + +ent-ADTBedSleepingBagBoboFolded = удобный спальник Бобо + .desc = Это специальное одеяло-кокон, которое сохраняет тепло гуманоида во время сна. + ent-ADTZoroKatana = легендарная катана .desc = Катана легендарного фехтовальщика... .suffix = Именное, Rip_Zoro. diff --git a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml index d0709e069b1..ec8fb3e73b6 100644 --- a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml +++ b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml @@ -953,6 +953,135 @@ sprite: ADT/Personalization/toys.rsi state: plushie_liexer +# Bobo +- type: entity + parent: BasePlushie + id: PlushieBobo + name: bobo plushie + description: This is a toy made of different types of fabric with stuffing inside. + components: + - type: Sprite + sprite: ADT/Personalization/toys.rsi + state: plushie_bobo + - type: EmitSoundOnUse + sound: + path: /Audio/Voice/Talk/arachnid.ogg + - type: EmitSoundOnLand + sound: + path: /Audio/Voice/Reptilian/reptilian_scream.ogg + - type: EmitSoundOnActivate + sound: + path: /Audio/Voice/Reptilian/reptilian_scream.ogg + - type: Food + requiresSpecialDigestion: true + useSound: + path: /Audio/Voice/Reptilian/reptilian_scream.ogg + - type: MeleeWeapon + soundHit: + path: /Audio/Voice/Reptilian/reptilian_scream.ogg + - type: EmitSoundOnTrigger + sound: + path: /Audio/Voice/Reptilian/reptilian_scream.ogg + + # Спальник для Бобо +- type: entity + id: ADTBedSleepingBagBobo + parent: BaseDeployFoldable + name: sleeping bag + description: This is a special cocoon blanket that keeps a person warm during sleep. + components: + - type: Item + size: Small + - type: Sprite + drawdepth: SmallObjects + sprite: ADT/Structures/Furniture/meshok.rsi + layers: + - state: duffel_bag + map: ["unfoldedLayer", "enum.StorageVisualLayers.Base"] + - state: duffel_bag_folded + map: ["foldedLayer"] + visible: false + - state: open_overlay + map: ["enum.StorageVisualLayers.Door"] + - type: Icon + sprite: ADT/Structures/Furniture/meshok.rsi + state: duffel_bag + - type: Tag + tags: + - BodyBag + - type: Clickable + - type: InteractionOutline + - type: MovedByPressure + - type: Physics + bodyType: Dynamic + - type: Transform + noRot: true + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.1" + density: 20 + mask: + - ItemMask + - type: EntityStorage + capacity: 1 + isCollidableWhenOpen: true + closeSound: + path: /Audio/Misc/zip.ogg + openSound: + path: /Audio/Misc/zip.ogg + - type: EntityStorageLayingDownOverride + - type: Appearance + - type: EntityStorageVisuals + stateDoorOpen: open_overlay + - type: GenericVisualizer + visuals: + enum.FoldedVisuals.State: + foldedLayer: + True: {visible: true} + False: {visible: false} + unfoldedLayer: + True: {visible: false} + False: {visible: true} + - type: Pullable + - type: AntiRottingContainer + - type: ItemSlots + - type: ContainerContainer + containers: + entity_storage: !type:Container + paper_label: !type:ContainerSlot + - type: StaticPrice + price: 50 + # св-ва кровати: + - type: HealOnBuckle + damage: + types: + Poison: -0.1 + Blunt: -0.1 + - type: Strap + position: Down + rotation: -90 + # Слоты + - type: Clothing + quickEquip: false + slots: + - back + +- type: entity + id: ADTBedSleepingBagBoboFolded + name: sleeping bag fold + description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. + parent: ADTBedSleepingBagBobo + suffix: folded + components: + - type: Foldable + folded: true + - type: Item + size: Normal + - type: Strap + - type: entity parent: BasePlushie id: ADTPlushieEmma diff --git a/Resources/Prototypes/ADT/Entities/Structures/Furniture/beds.yml b/Resources/Prototypes/ADT/Entities/Structures/Furniture/beds.yml index e5a878e2afc..012cb3e5df3 100644 --- a/Resources/Prototypes/ADT/Entities/Structures/Furniture/beds.yml +++ b/Resources/Prototypes/ADT/Entities/Structures/Furniture/beds.yml @@ -13,4 +13,4 @@ - type: Strap position: Down rotation: -90 - buckleOffset: "0,-0.15" + buckleOffset: "0,-0.15" \ No newline at end of file diff --git a/Resources/Textures/ADT/Personalization/toys.rsi/meta.json b/Resources/Textures/ADT/Personalization/toys.rsi/meta.json index 5162310ab9a..1a613ea95ff 100644 --- a/Resources/Textures/ADT/Personalization/toys.rsi/meta.json +++ b/Resources/Textures/ADT/Personalization/toys.rsi/meta.json @@ -97,6 +97,9 @@ { "name": "plushie_timrika" }, + { + "name": "plushie_bobo" + }, { "name": "plushie_amira" }, diff --git a/Resources/Textures/ADT/Personalization/toys.rsi/plushie_bobo.png b/Resources/Textures/ADT/Personalization/toys.rsi/plushie_bobo.png new file mode 100644 index 0000000000000000000000000000000000000000..d31c600030c63b6d32086bc49556611842732bc9 GIT binary patch literal 1127 zcmV-t1ep7YP)Px#1ZP1_K>z@;j|==^1poj8_en%SR9HvtmP<%fQ5eU+DN`p+#d5+yttrJJ0|h18 zBoRGumqg?;TG=Xsil7!PB7+tYL~Ywdw&<}+dLW_*5eW(vmX9H|5oemgsmaG=P3M2k z{l??md#)~mHvQmo?m6e4@BcsFdCbs%{xu$}bmnv*O?N}~Zw{5Fsk+#z2u2e`FXQ&_ zOyf1yS*0C_WP>&Yg?LrL@`F0sO=Dbec86d)H>vmMQ)+f-0}uqhJXM0oqADkTs1mb= z@R15tAN#J_9I$5q10nu7s_F=WHl8hnb#cILqCfac_|(M_2k{Jn8=Zgngp&7oaT*Nmt$Q_ z*gC#W^h*P|h3c#)K0TnbhdN~-1ik#`5w*3x%Ix~iCkN^3o?}#m{gZLJ^>{({_swmQC17#1$#h>4OQauDK0RyxH55P`GiPy>J(bIw z528r5K66L(-vD3`h!xeTY4>#O}Gb2nhY_W>|%C+8qGaWZ+^|S^8*Do&WcV1sa)N zB-HhHz3)yeNew}Dh4&78aMdvW8a6lXN*5J)<&!NCT1d${!28o-brIDS=S%TG#a2or z=cwFQD&xpb1C9nT2mufX&*AN4H1iTkaI2ypl>FOPj0RX2nTb$8N{8jXgXf?TV!dIO6zP@(5eAYVlA3^j7^xgiL tz0qTO0000EWmrjOO-%qQ00008000000002eQPx$+DSw~R9J=Wl`(A7P!NVcw@wrzTPaCYsVZVYVMAhpN^BjGA_lrtYBw^GF|aap zLV}eAF(NU++6~0giIJJ1Qd@&sM~Uq|$&PIX$Bu)O+7?+5{+4?>-Fx?+?%jJ(Qc_Y< z^1mZ3^RQNzAaCsXyD)bwpvdM$$m`R!R0ZEm#{@3mfj5MU_egS-Jh^!hQZ>JrDEWuZ zm)K_*2EC)5nM&oNhp#9ZiA9)vk3OAFhjzOSfNk3Vym|1E-qB840KmGskvj0)JIf`^ z7ol~J!?kiNt+Z09peVEc83AI|ir2O?r-2KS0(cjp?caWh<2cB&Jb%+4Orrw0_w5me zVbEwa3fuczTd1nacsyn_8sRujK>-qczxx@0(~0X8_+?$ug2WI%xzlC$(>Bj;zCs8Q z3($2PP168yUH1wBi35{;U%8fD#f$52+55W9Y7<@`KL=pH+Q%@AIL0(hgb)k{gLKMP zm!NVZJ5iEo8j|-QA{xP`^#fYXCiS&7YPA|ab)ADBJ$xH{D|`nefX&BR;BIDLx>$9_ zC<5Tkcl-9lT8W3q5+>@2mRrCgoMyfv0vBqR8emSZQT^fHKgFt&zX(g13=bzQSQbT! i7#=S7BP=QTcliwjvauSIQPukZ0000Px&KS@MER9J=Wmd$G%WgN#pGnw7&?!?_D?xsc~BG?y1K?${JDHajYLl2%71QS{+ zRH3EbJb4oJFR&h>EiEXi7imj-DPj*I#1OFuD@YY4IzmzUn)0 z{RvWr!JpMS>4d?ybdu?D6M(VN1ld%Ach7ydCD^Wm3bRP#ad@aOMLiItYFX~qZX;`O z4r8oHK)(P~q8Xq<2 z3v%M+XXIlOW={ycqs4>Bf%>{lW$^oN-_8^O+9+rVXavnxV@d&RTqk!gGQVSqa%}H-CdtPSpJnou zH>tS+r=MO%A8Vy#%K)VXG(5lqHwdXZ9#IKsD2oBKWD8_|#}ccSL;m1V$`?Mx`sNF! zUY%7%YJisN4`Fm`EG;O@yyrtTNkUkOJEvpvi~=EqTsldmQrRq2O^BEj!aJ>X^F?HN z;ofv?>9i^ok*HK719cyXK{g6?V~YwQIN5xkr~%;$=ntTLZbBrWeD2)F_W;6DKL0;#zHRmVfq!M}dr+lx530pU7yE5m_&UguueEiXO#3yeZkS838s z1pvzW$cO6r&Ugd+zCU;nNg8m0G>nX+QeZ%^+CBI{0RZx^E0bjaQd5_v!`jz_|B)GL zsDbHk=BaQf_f59r0000EWmrjOO-%qQ00008000000002eQ Bt$_dl literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/equipped-BACKPACK.png b/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..4e5e4d1a99795d21b0c3fb594ffdbf5b097eea68 GIT binary patch literal 1050 zcmV+#1m*jQP)Px&x=BPqRCt{2nonpPbri=xvopzVYc?tQQ<4^nQi7g>wOgz#mKsGudssarAc9Z| zo&u#%*+UC@uxLQoOOW=YJ%~_2?ZH45a!_+fNkx|s5RKGInsiM!n=HH2o&EDX{F)fd zCi9EkW>@)rPBZ)a&2QfOzW1A1<~=YN3EfW`_?BPav)u zKRq4cQri?1!Os>)*N{NV#^26fov=VX8{A@<;r>3k+LF}wPJ`e=m^^CB+1*Nn#optj z9;Et}?gXG5FE0TFxSMqm2c+n~zVBOLm90|g{Fjr~yI)ONdv-N5@bgo;OKOq3pC!DB6{sx1TqaMUl*O~Mq{pyyQvRRRJOixeTCb=? z=z2{FTgkDualiQC*M{H127|$1Fc=I5gTY`h7z_r3p|RNZN5$b6`Xn53Xbm+JYO>d= zL;q{`k08}*?!*0kk{F6MbkBevzIB29BM6gWteNnJvC;9QHM^K)Cq+2(Vr`o=d<7_{ z)wh1Tz54j72=BdmbVo!e3tTuE+45c;G5z9)p0wtc^E=W)GdiBM zGOovklM&fW2q~&^zRr5S0*D8NU=}Z!^)*cAhP7Z-gpBKP?&U)p96kES6CD4ociRn9 zRp}f=+G9xjiQ3luYDKlI>xdzpgUH@f{x)kxE%x+5$$KTfnfblpUwLiMBY_Y|37Yo7 zpP$sAL*&|zvsOn8VWu`lK1u>1aQ3R>;vN6_+STEE*BZZ>0>It_-ffiumWFpV?+>Uq zl^ob%uv=jHyZ=Ve3Px&N=ZaPRCt{2n!#%uM-+!YZ6w=@rI0o@LNSEk(tr+0(M1sS7vvHOg_eR7e9FOu z;6tE2_)=&fKBe>!0==aH(}E8nIq2e5RYNd?ZiCFyP5zoFerR(IN6@)}JJ00c0(;W{d--%!_r{%|~Za||g z@WYsJ14fUJGF&p6sqCPh8xlDJnNtw{0nVryH-m65Tic5V%Tjk;RD*3V03a&51Z&1# zQVbjb<$-dIQ_3}Se>S`WZ~ULs?~!sl5di5eQvu2~c9S3xCqMkG_mic468)C$a$*Xt z+r4p80Tu*75ClOG1VIo4K@bE%5QO&#>;Kk^b7-4O4ux6t%)03f?&ng(e^H*F(4Q_% zaC>rjZ%+HWuK;Qb{dNj7=x4X>Y+E%)C%?+;HccyMFRzu+LmDSQtj{+O6o~UT z&S*dF@|;bMjhyE4TA6kjWH>q0C zcp%MFK@bE%5ClOG-p(sH$8#v!9WH?Y000hUSV?A0O#mtY000O800000007cclK=n! M07*qoM6N<$f+g~)VgLXD literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/inhand-right.png b/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..272167916ef5600314ee584afb188b372e84c9cd GIT binary patch literal 946 zcmV;j15NyiP)Px&Qb|NXRCt{2+CgYjcO1a+@BbyQX-J}VRzg>%QgIN5LXZ_kZr(%~g0LY}@ic~r z^rnYi1{fW$d-?x8{F`<)ujEzN znc?pPA-sRy|NsB}fA9TYAisbRLI@#*5JJ3xR8-^06h?cXeR%eL^f~_r`zJ61hr!7~ zrXx|Cidcm5JCtcgb+dqA%qY@h&N2^-_P@xFi);;J%9KdMx{Uv+E>S= z`EkBGKKrj#k&Dx#=FH3}*T-gg@@?-iN2V}w=k6+wMmc;XYgR+AtNrBfM@c0Uq>>2$ z2HgZ{H^H90E>6w{k`8jrPuE{65g&ZmRu z!!*0w@4xq`>*|BO19aUMR_lH}R=`obl?F~4bQ_dX+$facUhjU|g9h>Djg^3~3QokC zdKHug{H;mwTEWKu3tpv$s8`|XT4i(09gNi}j`q^CI0|5zphFlswe@c%)my0ciVd_~ zTQ5}lwm7MM8-!VnA9R-{1eL90#<7!mVRtO=45JCvif1U&2&r?8?L@jv$000hUSV?A0O#mtY000O800000 U007cclK=n!07*qoM6N<$g4q7UUH||9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/meta.json b/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/meta.json new file mode 100644 index 00000000000..59d8d508f36 --- /dev/null +++ b/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/39659000f380583c35fb814ee2fadab24c2f8076, additional label sprites by Vermidia", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "duffel_bag" + }, + { + "name": "duffel_bag_folded" + }, + { + "name": "open_overlay" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/open_overlay.png b/Resources/Textures/ADT/Structures/Furniture/meshok.rsi/open_overlay.png new file mode 100644 index 0000000000000000000000000000000000000000..e998d5b170ae8b107d99d06d04b383ff9d85d86e GIT binary patch literal 553 zcmV+^0@nSBP)Px$<4Ht8R9J=Wm9c8uP!xtgg;=#pT?H%lQbW<;mk1b2GGz(08BMlq-unQ3h0?8K zJGLDIh0-l=;K@)gD!6hjbE+7FOso#(UQ4pvsKHCA{^gwW>)dnxd#^YbN|Y#3qQw6W zW0%DaFNurh{(QUYtp#+u-8cvW>h(JJwO^jTU+>I>Ww_ZmUI4dnD=>M7v9FXLADsZ; z`##NPQ!kiICOD3>HBNHJoM_JTJg}kD>1Zwp0(#fysbkt#j_bMvL7;uL0Km3wz0+iz zmy_gN*QMQV12CJ-0C;osf!_7G7OmSv?lEkLPOem2h9JT7nT zUC;v55&OQ6h@@iWi^#_JB&U8x#r>6l;c$qEkc{(u1=T!@Z0=|@()YhuEH?7>Pw06b ztyYUDinKo%3;^_QvNq{^o=37)6h*142*Z&1e9m+_%@-gdn5Kz{&}cMt;qiF<$5?Ry zrfF&`BJ}%x4jl*k;DBni%8${ASKoRpXKMilz>^oX_?dNf?*XLj=ZEV-q_Fom9joTc zo7EsP0PIuZPcOf6@%n6|Kv6_a&e+?6cmWT7)%gA~Tunl`!WcXs#5eQeMK<8UBdb<8 rUG>`OV`QHee~jd6x4lc0_;>LeC-X Date: Sun, 13 Oct 2024 19:20:25 +0300 Subject: [PATCH 14/34] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D1=8B=20=D0=9A=D0=9F?= =?UTF-8?q?=D0=9A=20=D1=83=20=D0=B3=D0=BE=D1=81=D1=82=D0=BE=D0=B2=20(#625)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Фикс для работы КПК у гостов ## Почему / Баланс **Ссылка на публикацию в Discord** - [Баги](https://discord.com/channels/901772674865455115/1291716333838536766) ## Техническая информация ## Медиа ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: - fix: Госты теперь могут смотреть в свой КПК. Co-authored-by: Tymur Valiiev --- Resources/Prototypes/Entities/Mobs/Player/observer.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml index 24248571674..b20c8271b70 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml @@ -73,6 +73,7 @@ - type: Loadout prototypes: [ MobGhostGear ] - type: InventorySlots + - type: ComplexInteraction #ADT Observer PDA end - type: entity From 9669ce63fa6eb37f6a41063d2bd2e77788ae36c8 Mon Sep 17 00:00:00 2001 From: FaDeOkno <143940725+FaDeOkno@users.noreply.github.com> Date: Sun, 13 Oct 2024 20:48:34 +0400 Subject: [PATCH 15/34] =?UTF-8?q?=D1=84=D0=B0=D0=BD=D0=B0=D1=82=D0=B0?= =?UTF-8?q?=D1=82=D0=BE=D0=BC=20(#622)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Фантом больше не завершает раунд финалкой Фантом теперь есть в секрете ## Почему / Баланс **Ссылка на публикацию в Discord** ## Техническая информация ## Медиа ## Требования - [ ] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [ ] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: - tweak: Фантом больше не завершает раунд финалкой - tweak: Фантом теперь есть в секрете --------- Co-authored-by: bananchiki <87230164+Darkiich@users.noreply.github.com> --- Content.Server/ADT/Phantom/Role/PhantomRuleSystem.cs | 5 +---- Resources/Prototypes/ADT/game_presets.yml | 4 ++-- Resources/Prototypes/secret_weights.yml | 9 ++++++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Content.Server/ADT/Phantom/Role/PhantomRuleSystem.cs b/Content.Server/ADT/Phantom/Role/PhantomRuleSystem.cs index 2e52bf05724..8c6cb1c89e9 100644 --- a/Content.Server/ADT/Phantom/Role/PhantomRuleSystem.cs +++ b/Content.Server/ADT/Phantom/Role/PhantomRuleSystem.cs @@ -210,15 +210,12 @@ private void OnNewLevelReached(EntityUid uid, PhantomComponent component, ref Ph } } - private void SetWinType(EntityUid uid, PhantomWinType type, PhantomRuleComponent? component = null, bool endRound = true) + private void SetWinType(EntityUid uid, PhantomWinType type, PhantomRuleComponent? component = null) { if (!Resolve(uid, ref component)) return; component.WinType = type; - - if (endRound && (type == PhantomWinType.CrewMajor || type == PhantomWinType.PhantomMajor)) - _roundEndSystem.EndRound(); } private void OnCommandMobStateChanged(EntityUid uid, PhantomTyranyTargetComponent comp, MobStateChangedEvent ev) diff --git a/Resources/Prototypes/ADT/game_presets.yml b/Resources/Prototypes/ADT/game_presets.yml index 33555d1b9b7..d1ccb8f58c3 100644 --- a/Resources/Prototypes/ADT/game_presets.yml +++ b/Resources/Prototypes/ADT/game_presets.yml @@ -5,7 +5,7 @@ - ghosts name: phantom-title minPlayers: 25 - showInVote: true + showInVote: false description: phantom-description rules: - PhantomGameRule @@ -27,4 +27,4 @@ - BasicRoundstartVariation - SubGamemodesRule - BasicStationEventScheduler - - MeteorSwarmScheduler \ No newline at end of file + - MeteorSwarmScheduler diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index 58856b39e8c..ceffb4fa8ad 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -1,10 +1,13 @@ - type: weightedRandom id: Secret weights: - Nukeops: 0.2 - Traitor: 0.64 + Nukeops: 0.15 + Traitor: 0.44 Zombie: 0 Zombieteors: 0 - Revolutionary: 0 + #Survival: 0.1 KesslerSyndrome: 0.01 + Phantom: 0.15 + Revolutionary: 0 Heretic: 0.15 + From 7a8242287e3f7c09933abc0d86e2ec698873cd44 Mon Sep 17 00:00:00 2001 From: Mirokko Date: Sun, 13 Oct 2024 20:10:28 +0300 Subject: [PATCH 16/34] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B2=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D1=8C=20=D0=B5=D0=BC=D0=B0=D0=B3=D0=B0=D1=82=D1=8C=20?= =?UTF-8?q?=D0=BC=D0=BE=D0=BD=D0=B8=D1=82=D0=BE=D1=80=20=D1=8D=D0=BA=D0=B8?= =?UTF-8?q?=D0=BF=D0=B0=D0=B6=D0=B0=20(#604)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Возможность емагать монитр экипажа. После данного действия отображаются все датчики, независимо от статуса. ## Почему / Баланс Мне просто понравилась эта идея. В планах добавить взломанный монитор экипажа для ЯО и ОБВА. **Ссылка на публикацию в Discord** ## Техническая информация Теперь все датчики отправляются монитору, но фильтруется уже на его стороне в зависимости от того, взломано или нет ## Медиа ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: - add: Теперь можно емагнуть монитор экипажа и он станет показывать всех. Co-authored-by: Tymur Valiiev Co-authored-by: Schrödinger <132720404+Schrodinger71@users.noreply.github.com> --- .../CrewMonitoringBoundUserInterface.cs | 2 +- .../CrewMonitoringWindow.xaml.cs | 22 +++++- .../CrewMonitoringConsoleComponent.cs | 16 +++++ .../CrewMonitoringConsoleSystem.cs | 26 ++++++- .../Medical/SuitSensors/SuitSensorSystem.cs | 68 ++++++++----------- .../CrewMonitoring/CrewMonitoringShared.cs | 4 +- .../Medical/SuitSensor/SharedSuitSensor.cs | 5 +- .../components/crew-monitoring-component.ftl | 1 + 8 files changed, 101 insertions(+), 43 deletions(-) create mode 100644 Resources/Locale/ru-RU/ADT/medical/components/crew-monitoring-component.ftl diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs index b1f239cd78e..f013f9b449b 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringBoundUserInterface.cs @@ -39,7 +39,7 @@ protected override void UpdateState(BoundUserInterfaceState state) { case CrewMonitoringState st: EntMan.TryGetComponent(Owner, out var xform); - _menu?.ShowSensors(st.Sensors, Owner, xform?.Coordinates); + _menu?.ShowSensors(st.Sensors, Owner, xform?.Coordinates, st.IsEmagged); // ADT-Tweak break; } } diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 0709921ae8b..d27246b4839 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -65,7 +65,7 @@ protected override void FrameUpdate(FrameEventArgs args) TryToScrollToFocus(); } - public void ShowSensors(List sensors, EntityUid monitor, EntityCoordinates? monitorCoords) + public void ShowSensors(List sensors, EntityUid monitor, EntityCoordinates? monitorCoords, bool isEmagged) // ADT-Tweak { ClearOutDatedData(); @@ -77,6 +77,26 @@ public void ShowSensors(List sensors, EntityUid monitor, Entit } NoServerLabel.Visible = false; + // ADT-Tweak-Start + if (!isEmagged) + { + sensors = sensors.Where(s => s.Mode != SuitSensorMode.SensorOff).ToList(); + foreach (var sensor in sensors) + { + switch (sensor.Mode) + { + case SuitSensorMode.SensorBinary: + sensor.Coordinates = null; + sensor.TotalDamage = null; + sensor.TotalDamageThreshold = null; + break; + case SuitSensorMode.SensorVitals: + sensor.Coordinates = null; + break; + } + } + } + // ADT-Tweak-End // Order sensor data var orderedSensors = sensors.OrderBy(n => n.Name).OrderBy(j => j.Job); diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs index c2d7124194f..38717199bba 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Medical.SuitSensor; +using Robust.Shared.Audio; namespace Content.Server.Medical.CrewMonitoring; @@ -16,4 +17,19 @@ public sealed partial class CrewMonitoringConsoleComponent : Component /// [DataField("sensorTimeout"), ViewVariables(VVAccess.ReadWrite)] public float SensorTimeout = 10f; + + + // ADT-Tweak-Start + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool IsEmagged = false; + + ///

      + /// Emag sound effects. + /// + [DataField("sparkSound")] + public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks") + { + Params = AudioParams.Default.WithVolume(8), + }; + // ADT-Tweak-End } diff --git a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs index a53df6dbae9..3a248002e3a 100644 --- a/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs +++ b/Content.Server/Medical/CrewMonitoring/CrewMonitoringConsoleSystem.cs @@ -1,11 +1,14 @@ using System.Linq; using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Systems; +using Content.Server.Popups; using Content.Server.PowerCell; +using Content.Shared.Emag.Systems; using Content.Shared.Medical.CrewMonitoring; using Content.Shared.Medical.SuitSensor; using Content.Shared.Pinpointer; using Robust.Server.GameObjects; +using Robust.Shared.Audio.Systems; namespace Content.Server.Medical.CrewMonitoring; @@ -14,12 +17,18 @@ public sealed class CrewMonitoringConsoleSystem : EntitySystem [Dependency] private readonly PowerCellSystem _cell = default!; [Dependency] private readonly UserInterfaceSystem _uiSystem = default!; + // ADT-Tweak-Start + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly PopupSystem _popup = default!; + // ADT-Tweak-End + public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnRemove); SubscribeLocalEvent(OnPacketReceived); SubscribeLocalEvent(OnUIOpened); + SubscribeLocalEvent(OnEmagged); // ADT-Tweak } private void OnRemove(EntityUid uid, CrewMonitoringConsoleComponent component, ComponentRemove args) @@ -69,6 +78,21 @@ private void UpdateUserInterface(EntityUid uid, CrewMonitoringConsoleComponent? // Update all sensors info var allSensors = component.ConnectedSensors.Values.ToList(); - _uiSystem.SetUiState(uid, CrewMonitoringUIKey.Key, new CrewMonitoringState(allSensors)); + _uiSystem.SetUiState(uid, CrewMonitoringUIKey.Key, new CrewMonitoringState(allSensors, component.IsEmagged)); // ADT-Tweak + } + + // ADT-Tweak-Start + private void OnEmagged(EntityUid uid, CrewMonitoringConsoleComponent component, ref GotEmaggedEvent ev) + { + if (ev.Handled || component.IsEmagged) + return; + + _audio.PlayPvs(component.SparkSound, uid); + _popup.PopupEntity(Loc.GetString("crew-monitoring-component-upgrade-emag"), uid); + + component.IsEmagged = true; + UpdateUserInterface(uid, component); + ev.Handled = true; } + // ADT-Tweak-End } diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs index b1b87ae981d..74a685a0775 100644 --- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs +++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs @@ -349,8 +349,9 @@ public void SetSensor(Entity sensors, SuitSensorMode mode, if (!Resolve(uid, ref sensor, ref transform)) return null; - // check if sensor is enabled and worn by user - if (sensor.Mode == SuitSensorMode.SensorOff || sensor.User == null || !HasComp(sensor.User) || transform.GridUid == null) + // ADT-Tweak-Start + // check if sensor worn by user + if (sensor.User == null || !HasComp(sensor.User) || transform.GridUid == null) return null; // try to get mobs id from ID slot @@ -387,44 +388,33 @@ public void SetSensor(Entity sensors, SuitSensorMode mode, totalDamageThreshold = critThreshold.Value.Int(); // finally, form suit sensor status - var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments); - switch (sensor.Mode) + var status = new SuitSensorStatus(GetNetEntity(uid), userName, userJob, userJobIcon, userJobDepartments, sensor.Mode); + + status.IsAlive = isAlive; + status.TotalDamage = totalDamage; + status.TotalDamageThreshold = totalDamageThreshold; + status.Mode = sensor.Mode; + EntityCoordinates coordinates; + var xformQuery = GetEntityQuery(); + + if (transform.GridUid != null) { - case SuitSensorMode.SensorBinary: - status.IsAlive = isAlive; - break; - case SuitSensorMode.SensorVitals: - status.IsAlive = isAlive; - status.TotalDamage = totalDamage; - status.TotalDamageThreshold = totalDamageThreshold; - break; - case SuitSensorMode.SensorCords: - status.IsAlive = isAlive; - status.TotalDamage = totalDamage; - status.TotalDamageThreshold = totalDamageThreshold; - EntityCoordinates coordinates; - var xformQuery = GetEntityQuery(); - - if (transform.GridUid != null) - { - coordinates = new EntityCoordinates(transform.GridUid.Value, - Vector2.Transform(_transform.GetWorldPosition(transform, xformQuery), - _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery))); - } - else if (transform.MapUid != null) - { - coordinates = new EntityCoordinates(transform.MapUid.Value, - _transform.GetWorldPosition(transform, xformQuery)); - } - else - { - coordinates = EntityCoordinates.Invalid; - } - - status.Coordinates = GetNetCoordinates(coordinates); - break; + coordinates = new EntityCoordinates(transform.GridUid.Value, + Vector2.Transform(_transform.GetWorldPosition(transform, xformQuery), + _transform.GetInvWorldMatrix(xformQuery.GetComponent(transform.GridUid.Value), xformQuery))); + } + else if (transform.MapUid != null) + { + coordinates = new EntityCoordinates(transform.MapUid.Value, + _transform.GetWorldPosition(transform, xformQuery)); + } + else + { + coordinates = EntityCoordinates.Invalid; } + status.Coordinates = GetNetCoordinates(coordinates); + // ADT-Tweak-End return status; } @@ -442,6 +432,7 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) [SuitSensorConstants.NET_JOB_DEPARTMENTS] = status.JobDepartments, [SuitSensorConstants.NET_IS_ALIVE] = status.IsAlive, [SuitSensorConstants.NET_SUIT_SENSOR_UID] = status.SuitSensorUid, + [SuitSensorConstants.NET_SUIT_SENSOR_MODE] = status.Mode, // ADT-Tweak }; if (status.TotalDamage != null) @@ -472,13 +463,14 @@ public NetworkPayload SuitSensorToPacket(SuitSensorStatus status) if (!payload.TryGetValue(SuitSensorConstants.NET_JOB_DEPARTMENTS, out List? jobDepartments)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_IS_ALIVE, out bool? isAlive)) return null; if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_UID, out NetEntity suitSensorUid)) return null; + if (!payload.TryGetValue(SuitSensorConstants.NET_SUIT_SENSOR_MODE, out SuitSensorMode mode)) return null; // ADT-Tweak // try get total damage and cords (optionals) payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE, out int? totalDamage); payload.TryGetValue(SuitSensorConstants.NET_TOTAL_DAMAGE_THRESHOLD, out int? totalDamageThreshold); payload.TryGetValue(SuitSensorConstants.NET_COORDINATES, out NetCoordinates? coords); - var status = new SuitSensorStatus(suitSensorUid, name, job, jobIcon, jobDepartments) + var status = new SuitSensorStatus(suitSensorUid, name, job, jobIcon, jobDepartments, mode) // ADT-Tweak { IsAlive = isAlive.Value, TotalDamage = totalDamage, diff --git a/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs b/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs index 5b788396787..51cbc1b17be 100644 --- a/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs +++ b/Content.Shared/Medical/CrewMonitoring/CrewMonitoringShared.cs @@ -13,9 +13,11 @@ public enum CrewMonitoringUIKey public sealed class CrewMonitoringState : BoundUserInterfaceState { public List Sensors; + public bool IsEmagged; // ADT-Tweak - public CrewMonitoringState(List sensors) + public CrewMonitoringState(List sensors, bool isEmagged) // ADT-Tweak { Sensors = sensors; + IsEmagged = isEmagged; // ADT-Tweak } } diff --git a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs index f48e31756d2..e09e0720cfe 100644 --- a/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs +++ b/Content.Shared/Medical/SuitSensor/SharedSuitSensor.cs @@ -7,13 +7,14 @@ namespace Content.Shared.Medical.SuitSensor; [Serializable, NetSerializable] public sealed class SuitSensorStatus { - public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string jobIcon, List jobDepartments) + public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string jobIcon, List jobDepartments, SuitSensorMode sensorMode) // ADT-Tweak { SuitSensorUid = suitSensorUid; Name = name; Job = job; JobIcon = jobIcon; JobDepartments = jobDepartments; + Mode = sensorMode; // ADT-Tweak } public TimeSpan Timestamp; @@ -27,6 +28,7 @@ public SuitSensorStatus(NetEntity suitSensorUid, string name, string job, string public int? TotalDamageThreshold; public float? DamagePercentage => TotalDamageThreshold == null || TotalDamage == null ? null : TotalDamage / (float) TotalDamageThreshold; public NetCoordinates? Coordinates; + public SuitSensorMode Mode; // ADT-Tweak } [Serializable, NetSerializable] @@ -64,6 +66,7 @@ public static class SuitSensorConstants public const string NET_TOTAL_DAMAGE_THRESHOLD = "vitalsThreshold"; public const string NET_COORDINATES = "coords"; public const string NET_SUIT_SENSOR_UID = "uid"; + public const string NET_SUIT_SENSOR_MODE = "mode"; // ADT-Tweak ///Used by the CrewMonitoringServerSystem to send the status of all connected suit sensors to each crew monitor public const string NET_STATUS_COLLECTION = "suit-status-collection"; diff --git a/Resources/Locale/ru-RU/ADT/medical/components/crew-monitoring-component.ftl b/Resources/Locale/ru-RU/ADT/medical/components/crew-monitoring-component.ftl new file mode 100644 index 00000000000..526af4f0390 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/medical/components/crew-monitoring-component.ftl @@ -0,0 +1 @@ +crew-monitoring-component-upgrade-emag = Карточка замыкает что-то внутри устройства. From 41afcb132326d000a128386d25a307070afad660 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2024 20:15:14 +0300 Subject: [PATCH 17/34] Auto CL update (#636) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index 794f68e4ba5..5bbfcb586cd 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3570,3 +3570,25 @@ Entries: цены на табак были повышены. Слава ТСФ!!', type: Add} time: '2024-10-13T10:27:21Z' id: 440 + - author: Kasey [Adnoda] Bitboxxer + changes: + - {message: 'Раскладной спальный мешок Бобо, плюшевая игрушка Бобо', type: Add} + time: '2024-10-13T16:15:29Z' + id: 441 + - author: Mirokko + changes: + - {message: Госты теперь могут смотреть в свой КПК., type: Fix} + time: '2024-10-13T16:20:41Z' + id: 442 + - author: FaDeOkno + changes: + - {message: Фантом больше не завершает раунд финалкой, type: Tweak} + - {message: Фантом теперь есть в секрете, type: Tweak} + time: '2024-10-13T16:48:50Z' + id: 443 + - author: Mirokko + changes: + - {message: Теперь можно емагнуть монитор экипажа и он станет показывать всех., + type: Add} + time: '2024-10-13T17:10:46Z' + id: 444 From 9f3aaf6c236c1954ae3bd7d9431213b6ed29223f Mon Sep 17 00:00:00 2001 From: FaDeOkno <143940725+FaDeOkno@users.noreply.github.com> Date: Sun, 13 Oct 2024 21:23:20 +0400 Subject: [PATCH 18/34] =?UTF-8?q?=D0=A3=D0=B1=D1=80=D0=B0=D0=BB=20"=D0=BE?= =?UTF-8?q?=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=B8=D1=8F=20=D0=BA=D0=BE=D0=BD?= =?UTF-8?q?=D1=82=D1=80=D0=B0=D0=B1=D0=B0=D0=BD=D0=B4=D1=8B"=20(#634)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit раз никто не делает, сделаю я ## Описание PR Убрал убогие описания контрабанды от оффов ## Почему / Баланс Хуйня бесполезная **Ссылка на публикацию в Discord** ## Техническая информация ## Медиа ## Требования - [ ] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [ ] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** --------- Co-authored-by: RevengenRat <138193222+Ratyyy@users.noreply.github.com> --- Content.Shared/CCVar/CCVars.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 8e5ec6d686a..94080e93746 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -428,7 +428,7 @@ public static readonly CVarDef /// If true, contraband severity can be viewed in the examine menu /// public static readonly CVarDef ContrabandExamine = - CVarDef.Create("game.contraband_examine", true, CVar.SERVER | CVar.REPLICATED); + CVarDef.Create("game.contraband_examine", false, CVar.SERVER | CVar.REPLICATED); ///ADT no wizard cringe /* * Discord From d218d016d54dd1b602bb3931194405cc492d05f9 Mon Sep 17 00:00:00 2001 From: Filo <98309485+Filokini@users.noreply.github.com> Date: Sun, 13 Oct 2024 22:27:25 +0500 Subject: [PATCH 19/34] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BD=D0=B8=D0=B6=D0=BD=D0=B5=D0=B3?= =?UTF-8?q?=D0=BE=20=D0=B1=D0=B5=D0=BB=D1=8C=D1=8F=20=D0=B8=20=D1=81=D0=BB?= =?UTF-8?q?=D0=BE=D1=82=D0=BE=D0=B2=20=D0=BF=D0=BE=D0=B4=20=D0=BD=D0=B5?= =?UTF-8?q?=D1=91,=20=D0=BF=D0=BB=D1=8E=D1=81=20=D0=BB=D0=BE=D0=B0=D0=B4?= =?UTF-8?q?=D0=B0=D1=83=D1=82=D1=8B.=20(#631)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Добавлены слоты белья, само бельё и лоадаут белья. ![изображение](https://github.com/user-attachments/assets/533b3eae-cc2a-4725-b93e-2b4dfae687de) ![изображение](https://github.com/user-attachments/assets/ef33ab3f-5c7b-48e2-a404-d73c56589fab) ![изображение](https://github.com/user-attachments/assets/e5d82fcc-c274-49fa-b8ec-21912476baad) :cl: Filo - add: Возвращено нижнее бельё. Время проверить лоадауты и одеждоматы. --------- Co-authored-by: bananchiki <87230164+Darkiich@users.noreply.github.com> --- .../Clothing/ClientClothingSystem.cs | 3 + .../Inventory/StrippableBoundUserInterface.cs | 4 +- Content.Shared/Inventory/SlotFlags.cs | 3 + .../ru-RU/ADT/Preferences/loadout-groups.ftl | 4 +- .../Entities/Clothing/Underwear/bottom.ftl | 71 ++++ .../Entities/Clothing/Underwear/socks.ftl | 82 +++++ .../Entities/Clothing/Underwear/top.ftl | 59 ++++ .../Inventories/prazatclothing.yml | 10 + .../Bottom/base_clothingunderwearb.yml | 33 ++ .../Clothing/Underwear/Bottom/bottom.yml | 257 ++++++++++++++ .../Underwear/Socks/base_clothingsocks.yml | 33 ++ .../Clothing/Underwear/Socks/socks.yml | 325 ++++++++++++++++++ .../Underwear/Top/base_clothingunderweart.yml | 33 ++ .../Entities/Clothing/Underwear/Top/top.yml | 205 +++++++++++ .../ADT/Entities/Clothing/Underwear/fill.txt | 1 - .../ADT/Entities/Mobs/Species/moth.yml | 64 +++- .../ADT/Entities/Mobs/Species/shadekin.yml | 96 +++++- .../ADT/Loadouts/Miscellaneous/underwear.yml | 205 +++++++++++ .../ADT/Loadouts/loadout_groups.yml | 249 ++++++++++++++ .../Prototypes/ADT/Loadouts/role_loadouts.yml | 45 +++ Resources/Prototypes/ADT/tags.yml | 9 + .../Catalog/Cargo/cargo_vending.yml | 2 +- .../Inventories/clothesmate.yml | 28 +- .../Prototypes/Entities/Mobs/Species/base.yml | 18 +- .../arachnid_inventory_template.yml | 44 ++- .../human_inventory_template.yml | 44 ++- .../Prototypes/Loadouts/role_loadouts.yml | 190 ++++++++++ .../equipped-UNDERWEARB.png | Bin 0 -> 2414 bytes .../Bottom/Heads/capitan_boxers.rsi/icon.png | Bin 0 -> 2101 bytes .../Bottom/Heads/capitan_boxers.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 268 bytes .../Bottom/Heads/capitan_panties.rsi/icon.png | Bin 0 -> 201 bytes .../Heads/capitan_panties.rsi/meta.json | 18 + .../ce_boxers.rsi/equipped-UNDERWEARB.png | Bin 0 -> 2369 bytes .../Bottom/Heads/ce_boxers.rsi/icon.png | Bin 0 -> 2291 bytes .../Bottom/Heads/ce_boxers.rsi/meta.json | 18 + .../ce_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 391 bytes .../Bottom/Heads/ce_panties.rsi/icon.png | Bin 0 -> 227 bytes .../Bottom/Heads/ce_panties.rsi/meta.json | 18 + .../cmo_boxers.rsi/equipped-UNDERWEARB.png | Bin 0 -> 2357 bytes .../Bottom/Heads/cmo_boxers.rsi/icon.png | Bin 0 -> 2286 bytes .../Bottom/Heads/cmo_boxers.rsi/meta.json | 18 + .../cmo_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 421 bytes .../Bottom/Heads/cmo_panties.rsi/icon.png | Bin 0 -> 231 bytes .../Bottom/Heads/cmo_panties.rsi/meta.json | 18 + .../hop_boxers.rsi/equipped-UNDERWEARB.png | Bin 0 -> 2465 bytes .../Bottom/Heads/hop_boxers.rsi/icon.png | Bin 0 -> 2157 bytes .../Bottom/Heads/hop_boxers.rsi/meta.json | 18 + .../hop_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 288 bytes .../Bottom/Heads/hop_panties.rsi/icon.png | Bin 0 -> 206 bytes .../Bottom/Heads/hop_panties.rsi/meta.json | 18 + .../hos_boxers.rsi/equipped-UNDERWEARB.png | Bin 0 -> 2472 bytes .../Bottom/Heads/hos_boxers.rsi/icon.png | Bin 0 -> 2225 bytes .../Bottom/Heads/hos_boxers.rsi/meta.json | 18 + .../hos_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 351 bytes .../Bottom/Heads/hos_panties.rsi/icon.png | Bin 0 -> 201 bytes .../Bottom/Heads/hos_panties.rsi/meta.json | 18 + .../qm_boxers.rsi/equipped-UNDERWEARB.png | Bin 0 -> 2299 bytes .../Bottom/Heads/qm_boxers.rsi/icon.png | Bin 0 -> 2266 bytes .../Bottom/Heads/qm_boxers.rsi/meta.json | 18 + .../qm_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 342 bytes .../Bottom/Heads/qm_panties.rsi/icon.png | Bin 0 -> 203 bytes .../Bottom/Heads/qm_panties.rsi/meta.json | 18 + .../rd_boxers.rsi/equipped-UNDERWEARB.png | Bin 0 -> 2311 bytes .../Bottom/Heads/rd_boxers.rsi/icon.png | Bin 0 -> 2270 bytes .../Bottom/Heads/rd_boxers.rsi/meta.json | 18 + .../rd_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 318 bytes .../Bottom/Heads/rd_panties.rsi/icon.png | Bin 0 -> 197 bytes .../Bottom/Heads/rd_panties.rsi/meta.json | 18 + .../black_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 489 bytes .../Bottom/black_panties.rsi/icon.png | Bin 0 -> 199 bytes .../Bottom/black_panties.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 899 bytes .../Bottom/blueshield_boxers.rsi/icon.png | Bin 0 -> 620 bytes .../Bottom/blueshield_boxers.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 799 bytes .../Bottom/blueshield_panties.rsi/icon.png | Bin 0 -> 583 bytes .../Bottom/blueshield_panties.rsi/meta.json | 18 + .../Bottom/boxers.rsi/equipped-UNDERWEARB.png | Bin 0 -> 497 bytes .../Underwear/Bottom/boxers.rsi/icon.png | Bin 0 -> 230 bytes .../Underwear/Bottom/boxers.rsi/meta.json | 18 + .../lace_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 430 bytes .../Bottom/lace_panties.rsi/icon.png | Bin 0 -> 212 bytes .../Bottom/lace_panties.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 453 bytes .../Bottom/monokini_bottom_black.rsi/icon.png | Bin 0 -> 242 bytes .../monokini_bottom_black.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 471 bytes .../Bottom/monokini_bottom_white.rsi/icon.png | Bin 0 -> 253 bytes .../monokini_bottom_white.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 390 bytes .../Bottom/muns_panties_blue.rsi/icon.png | Bin 0 -> 204 bytes .../Bottom/muns_panties_blue.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 367 bytes .../Bottom/muns_panties_red.rsi/icon.png | Bin 0 -> 199 bytes .../Bottom/muns_panties_red.rsi/meta.json | 18 + .../panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 439 bytes .../Underwear/Bottom/panties.rsi/icon.png | Bin 0 -> 181 bytes .../Underwear/Bottom/panties.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 455 bytes .../Bottom/panties_christmas.rsi/icon.png | Bin 0 -> 207 bytes .../Bottom/panties_christmas.rsi/meta.json | 18 + .../red_panties.rsi/equipped-UNDERWEARB.png | Bin 0 -> 437 bytes .../Underwear/Bottom/red_panties.rsi/icon.png | Bin 0 -> 207 bytes .../Bottom/red_panties.rsi/meta.json | 18 + .../equipped-UNDERWEARB.png | Bin 0 -> 545 bytes .../Bottom/whitecomfy_panties.rsi/icon.png | Bin 0 -> 242 bytes .../Bottom/whitecomfy_panties.rsi/meta.json | 18 + .../black_stockings.rsi/equipped-SOCKS.png | Bin 0 -> 496 bytes .../Socks/black_stockings.rsi/icon.png | Bin 0 -> 230 bytes .../Socks/black_stockings.rsi/meta.json | 18 + .../equipped-SOCKS-furry.png | Bin 0 -> 826 bytes .../equipped-SOCKS-reptilian.png | Bin 0 -> 854 bytes .../lace_socks_thigh.rsi/equipped-SOCKS.png | Bin 0 -> 811 bytes .../Socks/lace_socks_thigh.rsi/icon.png | Bin 0 -> 405 bytes .../Socks/lace_socks_thigh.rsi/meta.json | 26 ++ .../red_stockings.rsi/equipped-SOCKS.png | Bin 0 -> 502 bytes .../Socks/red_stockings.rsi/icon.png | Bin 0 -> 206 bytes .../Socks/red_stockings.rsi/meta.json | 18 + .../Socks/socks_beige.rsi/equipped-SOCKS.png | Bin 0 -> 499 bytes .../Underwear/Socks/socks_beige.rsi/icon.png | Bin 0 -> 240 bytes .../Underwear/Socks/socks_beige.rsi/meta.json | 18 + .../Socks/socks_blue.rsi/equipped-SOCKS.png | Bin 0 -> 423 bytes .../Underwear/Socks/socks_blue.rsi/icon.png | Bin 0 -> 223 bytes .../Underwear/Socks/socks_blue.rsi/meta.json | 18 + .../socks_blueshield.rsi/equipped-SOCKS.png | Bin 0 -> 1017 bytes .../Socks/socks_blueshield.rsi/icon.png | Bin 0 -> 714 bytes .../Socks/socks_blueshield.rsi/meta.json | 18 + .../socks_comfyblue.rsi/equipped-SOCKS.png | Bin 0 -> 286 bytes .../Socks/socks_comfyblue.rsi/icon.png | Bin 0 -> 179 bytes .../Socks/socks_comfyblue.rsi/meta.json | 18 + .../socks_comfygrey.rsi/equipped-SOCKS.png | Bin 0 -> 267 bytes .../Socks/socks_comfygrey.rsi/icon.png | Bin 0 -> 169 bytes .../Socks/socks_comfygrey.rsi/meta.json | 18 + .../socks_comfyred.rsi/equipped-SOCKS.png | Bin 0 -> 290 bytes .../Socks/socks_comfyred.rsi/icon.png | Bin 0 -> 183 bytes .../Socks/socks_comfyred.rsi/meta.json | 18 + .../socks_comfyviolet.rsi/equipped-SOCKS.png | Bin 0 -> 294 bytes .../Socks/socks_comfyviolet.rsi/icon.png | Bin 0 -> 185 bytes .../Socks/socks_comfyviolet.rsi/meta.json | 18 + .../socks_fingerless.rsi/equipped-SOCKS.png | Bin 0 -> 315 bytes .../Socks/socks_fingerless.rsi/icon.png | Bin 0 -> 169 bytes .../Socks/socks_fingerless.rsi/meta.json | 18 + .../equipped-SOCKS.png | Bin 0 -> 759 bytes .../socks_fingerless_stripped.rsi/icon.png | Bin 0 -> 385 bytes .../socks_fingerless_stripped.rsi/meta.json | 18 + .../Socks/socks_gnome.rsi/equipped-SOCKS.png | Bin 0 -> 402 bytes .../Underwear/Socks/socks_gnome.rsi/icon.png | Bin 0 -> 215 bytes .../Underwear/Socks/socks_gnome.rsi/meta.json | 18 + .../Socks/socks_green.rsi/equipped-SOCKS.png | Bin 0 -> 414 bytes .../Underwear/Socks/socks_green.rsi/icon.png | Bin 0 -> 221 bytes .../Underwear/Socks/socks_green.rsi/meta.json | 18 + .../Socks/socks_heart.rsi/equipped-SOCKS.png | Bin 0 -> 350 bytes .../Underwear/Socks/socks_heart.rsi/icon.png | Bin 0 -> 508 bytes .../Underwear/Socks/socks_heart.rsi/meta.json | 18 + .../equipped-SOCKS.png | Bin 0 -> 324 bytes .../Socks/socks_kneecomfyblue.rsi/icon.png | Bin 0 -> 201 bytes .../Socks/socks_kneecomfyblue.rsi/meta.json | 18 + .../equipped-SOCKS.png | Bin 0 -> 302 bytes .../Socks/socks_kneecomfygrey.rsi/icon.png | Bin 0 -> 183 bytes .../Socks/socks_kneecomfygrey.rsi/meta.json | 18 + .../socks_kneecomfyred.rsi/equipped-SOCKS.png | Bin 0 -> 354 bytes .../Socks/socks_kneecomfyred.rsi/icon.png | Bin 0 -> 212 bytes .../Socks/socks_kneecomfyred.rsi/meta.json | 18 + .../equipped-SOCKS.png | Bin 0 -> 355 bytes .../Socks/socks_kneecomfyviolet.rsi/icon.png | Bin 0 -> 217 bytes .../Socks/socks_kneecomfyviolet.rsi/meta.json | 18 + .../Socks/socks_liexer.rsi/equipped-SOCKS.png | Bin 0 -> 692 bytes .../Underwear/Socks/socks_liexer.rsi/icon.png | Bin 0 -> 374 bytes .../Socks/socks_liexer.rsi/meta.json | 18 + .../Socks/socks_rabbit.rsi/equipped-SOCKS.png | Bin 0 -> 517 bytes .../Underwear/Socks/socks_rabbit.rsi/icon.png | Bin 0 -> 339 bytes .../Socks/socks_rabbit.rsi/meta.json | 18 + .../Socks/socks_red.rsi/equipped-SOCKS.png | Bin 0 -> 410 bytes .../Underwear/Socks/socks_red.rsi/icon.png | Bin 0 -> 210 bytes .../Underwear/Socks/socks_red.rsi/meta.json | 18 + .../socks_redwhite.rsi/equipped-SOCKS.png | Bin 0 -> 568 bytes .../Socks/socks_redwhite.rsi/icon.png | Bin 0 -> 288 bytes .../Socks/socks_redwhite.rsi/meta.json | 18 + .../socks_stripped.rsi/equipped-SOCKS.png | Bin 0 -> 693 bytes .../Socks/socks_stripped.rsi/icon.png | Bin 0 -> 368 bytes .../Socks/socks_stripped.rsi/meta.json | 18 + .../Socks/socksknee.rsi/equipped-SOCKS.png | Bin 0 -> 536 bytes .../Underwear/Socks/socksknee.rsi/icon.png | Bin 0 -> 225 bytes .../Underwear/Socks/socksknee.rsi/meta.json | 18 + .../Socks/socksnorm.rsi/equipped-SOCKS.png | Bin 0 -> 524 bytes .../Underwear/Socks/socksnorm.rsi/icon.png | Bin 0 -> 236 bytes .../Underwear/Socks/socksnorm.rsi/meta.json | 18 + .../Socks/socksshort.rsi/equipped-SOCKS.png | Bin 0 -> 438 bytes .../Underwear/Socks/socksshort.rsi/icon.png | Bin 0 -> 209 bytes .../Underwear/Socks/socksshort.rsi/meta.json | 18 + .../Socks/socksthigh.rsi/equipped-SOCKS.png | Bin 0 -> 518 bytes .../Underwear/Socks/socksthigh.rsi/icon.png | Bin 0 -> 232 bytes .../Underwear/Socks/socksthigh.rsi/meta.json | 18 + .../equipped-SOCKS.png | Bin 0 -> 1081 bytes .../Socks/stockings_blueshield.rsi/icon.png | Bin 0 -> 730 bytes .../Socks/stockings_blueshield.rsi/meta.json | 18 + .../stockings_heart.rsi/equipped-SOCKS.png | Bin 0 -> 527 bytes .../Socks/stockings_heart.rsi/icon.png | Bin 0 -> 541 bytes .../Socks/stockings_heart.rsi/meta.json | 18 + .../white_stockings.rsi/equipped-SOCKS.png | Bin 0 -> 519 bytes .../Socks/white_stockings.rsi/icon.png | Bin 0 -> 209 bytes .../Socks/white_stockings.rsi/meta.json | 18 + .../capitan_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 336 bytes .../Top/Heads/capitan_bra.rsi/icon.png | Bin 0 -> 286 bytes .../Top/Heads/capitan_bra.rsi/meta.json | 18 + .../Heads/ce_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 630 bytes .../Underwear/Top/Heads/ce_bra.rsi/icon.png | Bin 0 -> 332 bytes .../Underwear/Top/Heads/ce_bra.rsi/meta.json | 18 + .../Heads/cmo_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 367 bytes .../Underwear/Top/Heads/cmo_bra.rsi/icon.png | Bin 0 -> 311 bytes .../Underwear/Top/Heads/cmo_bra.rsi/meta.json | 18 + .../Heads/hop_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 300 bytes .../Underwear/Top/Heads/hop_bra.rsi/icon.png | Bin 0 -> 237 bytes .../Underwear/Top/Heads/hop_bra.rsi/meta.json | 18 + .../Heads/hos_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 543 bytes .../Underwear/Top/Heads/hos_bra.rsi/icon.png | Bin 0 -> 271 bytes .../Underwear/Top/Heads/hos_bra.rsi/meta.json | 18 + .../Heads/qm_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 689 bytes .../Underwear/Top/Heads/qm_bra.rsi/icon.png | Bin 0 -> 361 bytes .../Underwear/Top/Heads/qm_bra.rsi/meta.json | 18 + .../Heads/rd_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 673 bytes .../Underwear/Top/Heads/rd_bra.rsi/icon.png | Bin 0 -> 333 bytes .../Underwear/Top/Heads/rd_bra.rsi/meta.json | 18 + .../Top/black_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 472 bytes .../Underwear/Top/black_bra.rsi/icon.png | Bin 0 -> 226 bytes .../Underwear/Top/black_bra.rsi/meta.json | 18 + .../equipped-UNDERWEART.png | Bin 0 -> 916 bytes .../Underwear/Top/blueshield_bra.rsi/icon.png | Bin 0 -> 668 bytes .../Top/blueshield_bra.rsi/meta.json | 18 + .../Top/bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 384 bytes .../Clothing/Underwear/Top/bra.rsi/icon.png | Bin 0 -> 230 bytes .../Clothing/Underwear/Top/bra.rsi/meta.json | 18 + .../christmas_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 718 bytes .../Underwear/Top/christmas_bra.rsi/icon.png | Bin 0 -> 340 bytes .../Underwear/Top/christmas_bra.rsi/meta.json | 18 + .../Top/lace_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 586 bytes .../Underwear/Top/lace_bra.rsi/icon.png | Bin 0 -> 273 bytes .../Underwear/Top/lace_bra.rsi/meta.json | 18 + .../equipped-UNDERWEART.png | Bin 0 -> 544 bytes .../Top/monokini_top_black.rsi/icon.png | Bin 0 -> 255 bytes .../Top/monokini_top_black.rsi/meta.json | 18 + .../equipped-UNDERWEART.png | Bin 0 -> 577 bytes .../Top/monokini_top_white.rsi/icon.png | Bin 0 -> 259 bytes .../Top/monokini_top_white.rsi/meta.json | 18 + .../muns_bra_blue.rsi/equipped-UNDERWEART.png | Bin 0 -> 551 bytes .../Underwear/Top/muns_bra_blue.rsi/icon.png | Bin 0 -> 281 bytes .../Underwear/Top/muns_bra_blue.rsi/meta.json | 18 + .../muns_bra_red.rsi/equipped-UNDERWEART.png | Bin 0 -> 521 bytes .../Underwear/Top/muns_bra_red.rsi/icon.png | Bin 0 -> 262 bytes .../Underwear/Top/muns_bra_red.rsi/meta.json | 18 + .../Top/peabra.rsi/equipped-UNDERWEART.png | Bin 0 -> 595 bytes .../Underwear/Top/peabra.rsi/icon.png | Bin 0 -> 258 bytes .../Underwear/Top/peabra.rsi/meta.json | 18 + .../Top/red_bra.rsi/equipped-UNDERWEART.png | Bin 0 -> 592 bytes .../Underwear/Top/red_bra.rsi/icon.png | Bin 0 -> 268 bytes .../Underwear/Top/red_bra.rsi/meta.json | 18 + .../Top/sportsbra.rsi/equipped-UNDERWEART.png | Bin 0 -> 399 bytes .../Underwear/Top/sportsbra.rsi/icon.png | Bin 0 -> 216 bytes .../Underwear/Top/sportsbra.rsi/meta.json | 18 + .../sportsbraalt.rsi/equipped-UNDERWEART.png | Bin 0 -> 505 bytes .../Underwear/Top/sportsbraalt.rsi/icon.png | Bin 0 -> 224 bytes .../Underwear/Top/sportsbraalt.rsi/meta.json | 18 + .../equipped-UNDERWEART.png | Bin 0 -> 548 bytes .../Underwear/Top/sportsbrablack.rsi/icon.png | Bin 0 -> 232 bytes .../Top/sportsbrablack.rsi/meta.json | 18 + .../equipped-UNDERWEART.png | Bin 0 -> 568 bytes .../Underwear/Top/whitecomfy_bra.rsi/icon.png | Bin 0 -> 258 bytes .../Top/whitecomfy_bra.rsi/meta.json | 18 + .../Shadekin/displacement.rsi/meta.json | 12 + .../Shadekin/displacement.rsi/socks.png | Bin 0 -> 391 bytes .../Shadekin/displacement.rsi/underwearb.png | Bin 0 -> 254 bytes .../Shadekin/displacement.rsi/underweart.png | Bin 0 -> 359 bytes .../Interface/Default/Slots/socks.png | Bin 0 -> 6099 bytes .../Interface/Default/Slots/underwearb.png | Bin 0 -> 5711 bytes .../Interface/Default/Slots/underweart.png | Bin 0 -> 5919 bytes .../Textures/Interface/Default/meta.json | 9 + 277 files changed, 3553 insertions(+), 33 deletions(-) create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/bottom.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/socks.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/top.ftl create mode 100644 Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/base_clothingunderwearb.yml create mode 100644 Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/bottom.yml create mode 100644 Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/base_clothingsocks.yml create mode 100644 Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/socks.yml create mode 100644 Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/base_clothingunderweart.yml create mode 100644 Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/top.yml delete mode 100644 Resources/Prototypes/ADT/Entities/Clothing/Underwear/fill.txt create mode 100644 Resources/Prototypes/ADT/Loadouts/Miscellaneous/underwear.yml create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hop_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hop_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hop_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hop_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hop_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hop_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hos_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hos_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hos_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hos_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hos_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/hos_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/lace_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/lace_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/lace_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_black.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_black.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_black.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_white.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_white.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_white.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_blue.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_blue.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_blue.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/panties_christmas.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/panties_christmas.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/panties_christmas.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/equipped-UNDERWEARB.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/equipped-SOCKS-furry.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/equipped-SOCKS-reptilian.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blueshield.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blueshield.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blueshield.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_gnome.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_gnome.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_gnome.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_green.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_green.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_green.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_heart.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_heart.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_heart.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyblue.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyblue.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyblue.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfygrey.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfygrey.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfygrey.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_red.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_red.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_red.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_redwhite.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_redwhite.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_redwhite.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksknee.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksknee.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksknee.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksshort.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksshort.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksshort.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksthigh.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksthigh.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/socksthigh.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_blueshield.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_blueshield.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_blueshield.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_heart.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_heart.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_heart.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/white_stockings.rsi/equipped-SOCKS.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/white_stockings.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Socks/white_stockings.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hos_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hos_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hos_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/qm_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/qm_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/qm_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/rd_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/rd_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/Heads/rd_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/blueshield_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/blueshield_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/blueshield_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_white.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_white.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_white.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_blue.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_blue.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_blue.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbraalt.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbraalt.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbraalt.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/equipped-UNDERWEART.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/meta.json create mode 100644 Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/socks.png create mode 100644 Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/underwearb.png create mode 100644 Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/underweart.png create mode 100644 Resources/Textures/Interface/Default/Slots/socks.png create mode 100644 Resources/Textures/Interface/Default/Slots/underwearb.png create mode 100644 Resources/Textures/Interface/Default/Slots/underweart.png diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 27d77eda496..558c52f2c3b 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -47,6 +47,9 @@ public sealed class ClientClothingSystem : ClothingSystem {"pocket1", "POCKET1"}, {"pocket2", "POCKET2"}, {"suitstorage", "SUITSTORAGE"}, + {"socks", "SOCKS"}, // ADT-TWEAK + {"underweart", "UNDERWEART"}, // ADT-TWEAK + {"underwearb", "UNDERWEARB"}, // ADT-TWEAK }; [Dependency] private readonly IResourceCache _cache = default!; diff --git a/Content.Client/Inventory/StrippableBoundUserInterface.cs b/Content.Client/Inventory/StrippableBoundUserInterface.cs index 132c5ed654c..8081b625f0f 100644 --- a/Content.Client/Inventory/StrippableBoundUserInterface.cs +++ b/Content.Client/Inventory/StrippableBoundUserInterface.cs @@ -62,7 +62,7 @@ protected override void Open() _strippingMenu.OnDirty += UpdateMenu; _strippingMenu.Title = Loc.GetString("strippable-bound-user-interface-stripping-menu-title", ("ownerName", Identity.Name(Owner, EntMan))); - _strippingMenu?.OpenCenteredLeft(); + _strippingMenu?.OpenCenteredAt(new Vector2(0.25f, 0.25f)); // ADT tweak } protected override void Dispose(bool disposing) @@ -150,7 +150,7 @@ public void UpdateMenu() // for now: shit-code // this breaks for drones (too many hands, lots of empty vertical space), and looks shit for monkeys and the like. // but the window is realizable, so eh. - _strippingMenu.SetSize = new Vector2(220, snare?.IsEnsnared == true ? 550 : 530); + _strippingMenu.SetSize = new Vector2(220, snare?.IsEnsnared == true ? 620 : 600); // ADT tweak } private void AddHandButton(Hand hand) diff --git a/Content.Shared/Inventory/SlotFlags.cs b/Content.Shared/Inventory/SlotFlags.cs index 90971d1670b..48960ab3292 100644 --- a/Content.Shared/Inventory/SlotFlags.cs +++ b/Content.Shared/Inventory/SlotFlags.cs @@ -26,6 +26,9 @@ public enum SlotFlags LEGS = 1 << 13, FEET = 1 << 14, SUITSTORAGE = 1 << 15, + UNDERWEART = 1 << 10, // Sirena add + UNDERWEARB = 1 << 10, // Sirena add + SOCKS = 1 << 10, // Sirena add All = ~NONE, WITHOUT_POCKET = All & ~POCKET diff --git a/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl index 96482367134..b2110eda4c2 100644 --- a/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl +++ b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl @@ -1,7 +1,9 @@ # Errors # Miscellaneous - +loadout-group-top-adt = Нижнее белье(Верх) +loadout-group-bottom-adt = Нижнее белье(Низ) +loadout-group-socks-adt = Носки # Command ent-MagistratNeck = Галстуки ent-MagistratJumpsuit = Костюмы diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/bottom.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/bottom.ftl new file mode 100644 index 00000000000..c94ec2e9e55 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/bottom.ftl @@ -0,0 +1,71 @@ +ent-ADTClothingUnderwearBottomPantiesWhite = трусики + .desc = Стандартное белье NanoTrasen для работниц станции. Окрашены в белый цвет. +ent-ADTClothingUnderwearBottomBoxersWhite = трусы + .desc = Стандартное белье NanoTrasen для работников станции. Окрашены в белый цвет. + +ent-ADTClothingUnderwearBottomBoxersCap = трусы капитана + .desc = Стандартное белье для капитана станции. +ent-ADTClothingUnderwearBottomPantiesCap = трусики капитана + .desc = Стандартное белье для капитана станции. +ent-ADTClothingUnderwearBottomBoxersCE = трусы старшего инженера + .desc = Стандартное белье для старшего инженера. +ent-ADTClothingUnderwearBottomPantiesCE = трусики старшего инженера + .desc = Стандартное белье для старшего инженера. +ent-ADTClothingUnderwearBottomBoxersCMO = трусы главного врача + .desc = Стандартное белье для главного врача. +ent-ADTClothingUnderwearBottomPantiesCMO = трусики главного врача + .desc = Стандартное белье для главного врача. +ent-ADTClothingUnderwearBottomBoxersHOP = трусы главы персонала + .desc = Стандартное белье для главы персонала. +ent-ADTClothingUnderwearBottomPantiesHOP = трусики главы персонала + .desc = Стандартное белье для главы персонала. +ent-ADTClothingUnderwearBottomBoxersHOS = трусы главы службы безопасности + .desc = Стандартное белье для главы службы безопасности. +ent-ADTClothingUnderwearBottomPantiesHOS = трусики главы службы безопасности + .desc = Стандартное белье для главы службы безопасности. +ent-ADTClothingUnderwearBottomBoxersQM = трусы квартирмейстера + .desc = Стандартное белье для квартирмейстера. +ent-ADTClothingUnderwearBottomPantiesQM = трусики квартирмейстера + .desc = Стандартное белье для квартирмейстера. +ent-ADTClothingUnderwearBottomBoxersRD = трусы научного руководителя + .desc = Стандартное белье для научного руководителя. +ent-ADTClothingUnderwearBottomPantiesRD = трусики научного руководителя + .desc = Стандартное белье для научного руководителя. + +ent-ADTClothingUnderwearBottomPantiesLace = кружевные трусики + .desc = Красивое кружевное нижнее бельё. + +ent-ADTClothingUnderwearBottomPantiesChristmas = рождественские трусики + .desc = Достаточно своеобразное рождественское бельё... + +ent-ADTClothingUnderwearBottomPantiesLaceRed = красные кружевные трусы + .desc = Красные, кружевные и, скорее всего, очень дорогие. + .suffix = { "" } + +ent-ADTClothingUnderwearBottomPantiesLaceBlack = черные кружевные трусы + .desc = Черные, кружевные и, скорее всего, очень дорогие. + .suffix = { "" } + +ent-ADTClothingUnderwearBottomPantiesComfyWhite = белые комфортные трусы + .desc = Белые, очень удобные и с розовым бантиком. + .suffix = { "" } + +ent-ADTClothingUnderwearBottomPantiesLaceBlueAlternative = шелковые трусы + .desc = Синие, приятные на ощупь трусы, сделанные из чистого шелка по эскизам семьи Ноло. + .suffix = { "" } + +ent-ADTClothingUnderwearBottomPantiesLaceRedAlternative = шелковые трусы + .desc = Красные, приятные на ощупь трусы, сделанные из чистого шелка по эскизам семьи Ноло. + .suffix = { "" } + +ent-ADTClothingUnderwearBottomBoxersBlueshield = трусы офицера "Синего Щита" + .desc = Стандартное белье NanoTrasen для офицеров "Синего Щита" + +ent-ADTClothingUnderwearBottomPantiesBlueshield = трусики офицера "Синего Щита" + .desc = Стандартное белье NanoTrasen для офицеров "Синего Щита" женского пола + +ent-ADTClothingUnderwearBottomMonokiniBlack = низ черного монокини + .desc = низ монокини, черного цвета + +ent-ADTClothingUnderwearBottomMonokiniWhite = низ белого монокини + .desc = низ монокини, белого цвета diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/socks.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/socks.ftl new file mode 100644 index 00000000000..95858e1c850 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/socks.ftl @@ -0,0 +1,82 @@ +ent-ADTClothingUnderwearSocksNormal = носки + .desc = Стандартные белые носки NanoTrasen для рабочих станции. + +ent-ADTClothingUnderwearSocksStockingsRed = красные чулки + .desc = Красные кружевные чулки. Не для обычной смены. + .suffix = { "" } + +ent-ADTClothingUnderwearSocksStockingsBlack = темные чулки + .desc = Черные кружевные чулки. Не для обычной смены. + .suffix = { "" } + +ent-ADTClothingUnderwearSocksStockingsWhite = белые чулки + .desc = Белые кружевные чулки. С розовым бантиком. + .suffix = { "" } + +ent-ADTClothingUnderwearSocksHigh = высокие носки + .desc = Высокие белые носки NanoTrasen для рабочих станции. +ent-ADTClothingUnderwearSocksShort = короткие носки + .desc = Короткие белые носки NanoTrasen для рабочих станции. +ent-ADTClothingUnderwearSocksThigh = высокие чулки + .desc = Стандартные белые чулки NanoTrasen для рабочих станции. +ent-ADTClothingUnderwearSocksLaceThigh = кружевные чулки + .desc = Красивые кружевные чулки. + +ent-ADTClothingUnderwearSocksBeige = бежевые праздничные носки + .desc = Ноги чувствуют тепло от плотного слоя шерстки в них. +ent-ADTClothingUnderwearSocksBlue = синие праздничные носки + .desc = Синие - словно лед. Теплые - как праздник. +ent-ADTClothingUnderwearSocksFingerless = праздничные носки без пальцев + .desc = Когти не помеха для праздника! +ent-ADTClothingUnderwearSocksRed = красные праздничные носки + .desc = Традиционные носки на Новый Год. +ent-ADTClothingUnderwearSocksGreen = зеленые носки + .desc = Истинный эльф ходит в них. +ent-ADTClothingUnderwearSocksGnome = носки гнома + .desc = Специально для хождения по леденным шахтам помошникам санты. +ent-ADTClothingUnderwearSocksRedWhite = красные носки + .desc = Простые, праздничные красные носки. +ent-ADTClothingUnderwearSocksFingerlessStripped = беспалые носки в полоску + .desc = Для тех, кому когти мешают греть ноги. +ent-ADTClothingUnderwearSocksStripped = носки в полоску + .desc = Простые праздничные носки в полоску. + +ent-ADTClothingUnderwearSocksHeart = носки с сердечками + .desc = Теплый и милый подарок для любимого. + .suffix = { "День Святого Валентина" } +ent-ADTClothingUnderwearSocksStockingsHeart = длинные чулки с сердечками + .desc = Теплый и милый подарок для любимой. + .suffix = { "День Святого Валентина" } + +ent-ADTClothingUnderwearSocksRabbit = носки с кроликами + .desc = Теплый и необычные носочки в виде кроликов. + +ent-ClothingUnderwearSocksCoder = носочки для програмиста + .desc = Пришло время отдаться коду!11!! +ent-ClothingUnderwearSocksBee = носочки с пчёлами + .desc = Заставь их загудеть от волнения. + +ent-ADTClothingUnderwearSocksBlueshield = носки офицера "Синего Щита" + .desc = Тёплые носочки Для самого лучшего защитника. +ent-ADTClothingUnderwearSocksStockingsBlueshield = чулки офицера "Синего Щита" + .desc = Тёплые чулочки Для самой лучшей защитницы. +ent-ADTClothingUnderwearSocksComfy = чулки для когтистых + .desc = Идеально подходят для тех кто желает держать ноги в еще большем тепле. + +ent-ADTClothingUnderwearSocksComfyBlue = синие носки + .desc = Комфортные синие носочки. +ent-ADTClothingUnderwearSocksComfyGrey = серые носки + .desc = Комфортные серые носочки. +ent-ADTClothingUnderwearSocksComfyRed = красные носки + .desc = Комфортные красные носочки. +ent-ADTClothingUnderwearSocksComfyViolet = фиолетовые носки + .desc = Комфортные фиолетовые носочки. + +ent-ADTClothingUnderwearSocksKneeComfyBlue = синие чулки + .desc = Комфортные синие чулочки. +ent-ADTClothingUnderwearSocksKneeComfyGrey = серые чулки + .desc = Комфортные серые чулочки. +ent-ADTClothingUnderwearSocksKneeComfyRed = красные чулки + .desc = Комфортные красные чулочки. +ent-ADTClothingUnderwearSocksKneeComfyViolet = фиолетовые чулки + .desc = Комфортные фиолетовые чулочки. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/top.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/top.ftl new file mode 100644 index 00000000000..295ea3e41e4 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Underwear/top.ftl @@ -0,0 +1,59 @@ +ent-ADTClothingUnderwearTopBraWhite = лифчик + .desc = Стандартный лифчик для NanoTrasen для работниц станции. Окрашен в белый цвет. + +ent-ADTClothingUnderwearTopBraLaceRed = красное кружевное лифчик + .desc = Красное, кружевное и, скорее всего, очень дорогое. + .suffix = { "" } + +ent-ADTClothingUnderwearTopBraLaceBlack = черное кружевное лифчик + .desc = Черное, кружевное и, скорее всего, очень дорогое. + .suffix = { "" } + +ent-ADTClothingUnderwearTopBraComfyWhite = белое комфортное лифчик + .desc = Белое, очень удобное и с розовым бантиком. + .suffix = { "" } + +ent-ADTClothingUnderwearTopBraSports = спортивный лифчик + .desc = Спортивный лифчик белого цвета. +ent-ADTClothingUnderwearTopBraSportsAlternative = альтернативный спортивный лифчик + .desc = Спортивный лифчик белого цвета. Альтернативный вариант. +ent-ADTClothingUnderwearTopBraCap = капитанский лифчик + .desc = Стандартный лифчик для капитана станции. +ent-ADTClothingUnderwearTopBraCE = лифчик старшего инженера + .desc = Стандартный лифчик для старшего инженера. +ent-ADTClothingUnderwearTopBraCMO = лифчик главного врача + .desc = Стандартный лифчик для главного врача. +ent-ADTClothingUnderwearTopBraHOP = лифчик главы персонала + .desc = Стандартный лифчик для главы персонала. +ent-ADTClothingUnderwearTopBraHOS = лифчик главы службы безопасности + .desc = Стандартный лифчик для главы службы безопасности. +ent-ADTClothingUnderwearTopBraQM = лифчик квартирмейстера + .desc = Стандартный лифчик для квартирмейстера. +ent-ADTClothingUnderwearTopBraRD = лифчик научного руководителя + .desc = Стандартный лифчик для научного руководителя. + +ent-ADTClothingUnderwearTopBraLace = кружевное лифчик + .desc = Красивое кружевное нижнее бельё + +ent-ADTClothingUnderwearTopBraSportsBlack = спортивный черный топик + .desc = Для любителей спорта и стиля. Производство компании "Modeling Agency Dar-Vaxed". + +ent-ADTClothingUnderwearTopBraPea = топик в горошек + .desc = Легкая и короткая женская блузка без рукавов. Производство компании "Modeling Agency Dar-Vaxed". + +ent-ADTClothingUnderwearTopBraLaceBlueAlternative = шелковый лифчик + .desc = Синий, приятный на ощупь лифчик, сделанный из чистого шелка по эскизам семьи Ноло. + .suffix = { "" } + +ent-ADTClothingUnderwearTopBraLaceRedAlternative = шелковый лифчик + .desc = Красный, приятный на ощупь лифчик, сделанный из чистого шелка по эскизам семьи Ноло. + .suffix = { "" } + +ent-ADTClothingUnderwearTopBraBlueshield = лифчик офицера "Синего Щита" + .desc = Стандартное белье NanoTrasen для офицеров "Синего Щита" женского пола + +ent-ADTClothingUnderwearTopMonokiniWhite = верх белого монокини + .desc = верх монокини, белого цвета + +ent-ADTClothingUnderwearTopMonokiniBlack = верх черного монокини + .desc = верх монокини, черного цвета diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/prazatclothing.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/prazatclothing.yml index cf37f0e0a5f..4957baff2be 100644 --- a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/prazatclothing.yml +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/prazatclothing.yml @@ -33,5 +33,15 @@ ADTClothingFootLightShoes: 5 ADTClothingFootWhiteSandals: 5 ADTClothingFootBlackBoots: 5 + # Бельё + ADTClothingUnderwearBottomPantiesLace: 2 + ADTClothingUnderwearBottomPantiesLaceRed: 2 + ADTClothingUnderwearBottomPantiesLaceBlack: 2 + ADTClothingUnderwearTopBraLaceRed: 2 + ADTClothingUnderwearTopBraLaceBlack: 2 + ADTClothingUnderwearTopBraSportsBlack: 2 + ADTClothingUnderwearTopBraPea: 2 + ADTClothingUnderwearTopBraLace: 2 + ADTClothingUnderwearSocksRabbit: 2 contrabandInventory: ADTClothingUniformJumpsuitAnarchyTshirt: 3 diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/base_clothingunderwearb.yml b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/base_clothingunderwearb.yml new file mode 100644 index 00000000000..491e9cac4f4 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/base_clothingunderwearb.yml @@ -0,0 +1,33 @@ +# From sirena + +- type: entity + abstract: true + parent: Clothing + id: ADTClothingUnderwearBottomBase + name: based underwearb + description: "You should not see this. If you see it, let Neko Dar#8948 know." + components: + - type: Sprite + state: icon + - type: Item + size: Tiny + - type: Clothing + slots: UNDERWEARB + - type: Butcherable + butcheringType: Knife + spawned: + - id: MaterialCloth1 + amount: 1 + - type: Food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Fiber + Quantity: 10 + - type: Tag + tags: + - ClothMade + - ADTUnderwearB diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/bottom.yml b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/bottom.yml new file mode 100644 index 00000000000..6dee498a4c7 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Bottom/bottom.yml @@ -0,0 +1,257 @@ +# Sirena + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesWhite + name: panties + description: Standard Nanotrasen underwear for station female employees. Painted white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersWhite + name: boxers + description: Standard Nanotrasen underwear for station employees. Dyed white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/boxers.rsi + +#Underwear-for-the-heads +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersCap + name: captain's boxers + description: Standard station captain's underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersCE + name: chief engineer's boxers + description: Standard station chief engineer underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersCMO + name: chief medical officer's boxers + description: Standard station chief physician's underwear. For some reason they smell like chloral hydrate... + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi + state: icon + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersHOP + name: head of personnel's boxers + description: The standard underwear of the station's chief of staff. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/hop_boxers.rsi + state: icon + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersHOS + name: head of security's boxers + description: Standard station head of security underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/hos_boxers.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersQM + name: quartermaster's boxers + description: Standard station quartermaster underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersRD + name: research director's boxers + description: Standard research director's underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/rd_boxers.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesCap + name: captain's panties + description: Standard station captain underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesCE + name: chief engineer's panties + description: Standard station chief engineer underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesCMO + name: chief medical officer's panties + description: Standard station chief physician's underwear. For some reason they smell like chloral hydrate... + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/cmo_panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesHOP + name: head of personnel's panties + description: The standard underwear of the station's chief of staff. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/hop_panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesHOS + name: head of security's panties + description: Standard station head of security underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/hos_panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesQM + name: quartermaster's panties + description: Standard station quartermaster underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/qm_panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesRD + name: research director's panties + description: Standard research director's underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi + +# ADT + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomMonokiniWhite + name: white monokini bottom + description: monokini bottom. Painted white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/monokini_bottom_white.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomMonokiniBlack + name: black monokini bottom + description: monokini bottom. Painted black. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/monokini_bottom_black.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesLace + name: lace panties + description: Good looking lace underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/lace_panties.rsi #спрайты от prazat911 + - type: StaticPrice + price: 100 + +#New Year. +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesChristmas + name: christmas panties + description: A questionable christmas underwear... + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/panties_christmas.rsi #спрайты от prazat911 + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesLaceBlueAlternative + name: bluedshield boxers + description: Standard Nanotrasen underwear for Blue Shield Officer. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/muns_panties_blue.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesLaceRedAlternative + name: bluedshield boxers + description: Standard Nanotrasen underwear for Blue Shield Officer. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesLaceRed + name: red lace panties + description: Red, lacy and, probably, very expensive. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/red_panties.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesLaceBlack + name: black lace panties + description: Black, lacy and, probably, very expensive. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/black_panties.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesComfyWhite + name: white comfy panties + description: White, very comfortable and with a pink bow. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomBoxersBlueshield + name: bluedshield boxers + description: Standard Nanotrasen underwear for Blue Shield Officer. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/blueshield_boxers.rsi + +- type: entity + parent: ADTClothingUnderwearBottomBase + id: ADTClothingUnderwearBottomPantiesBlueshield + name: bluedshield panties + description: Standard Nanotrasen underwear for female Blue Shield Officer. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/base_clothingsocks.yml b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/base_clothingsocks.yml new file mode 100644 index 00000000000..bbcc8780b2e --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/base_clothingsocks.yml @@ -0,0 +1,33 @@ +# Sirena + +- type: entity + abstract: true + parent: Clothing + id: ADTClothingUnderwearSocksBase + name: based socks + description: "You should not see this. If you see it, let Neko Dar#8948 know." + components: + - type: Sprite + state: icon + - type: Item + size: Tiny + - type: Clothing + slots: SOCKS + - type: Butcherable + butcheringType: Knife + spawned: + - id: MaterialCloth1 + amount: 1 + - type: Food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Fiber + Quantity: 10 + - type: Tag + tags: + - ClothMade + - ADTSocks diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/socks.yml b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/socks.yml new file mode 100644 index 00000000000..5f0a51da593 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Socks/socks.yml @@ -0,0 +1,325 @@ +# Sirena + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksHigh + name: high socks + description: Nanotrasen high socks for station employees. Painted white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socksknee.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksNormal + name: socks + description: Standard Nanotrasen socks for station employees. Dyed white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socksnorm.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksShort + name: short socks + description: Nanotrasen short socks for station employees. Dyed white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socksshort.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksThigh + name: stockings + description: Standard Nanotrasen stockings for station employees. Dyed white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socksthigh.rsi + +# Wizards + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ClothingUnderwearSocksBee # HACK + name: bee socks + description: Make them loins buzz! + components: + - type: Sprite + sprite: Clothing/Under/Socks/bee.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ClothingUnderwearSocksCoder # HACK + name: coder socks + description: It's time to code sisters!!11! + components: + - type: Sprite + sprite: Clothing/Under/Socks/coder.rsi + +#приколы празата +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksLaceThigh + name: lace stockings + description: Good looking lace stockings. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi + +#New Year +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasBeige + name: beige socks + description: Feels warm from thick wool inside. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_beige.rsi #Спрайты от dion_clawed + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasBlue + name: blue socks + description: Blue like ice, warm like holidays. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_blue.rsi #Спрайты от dion_clawed + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasFingerless + name: fingerless socks + description: Claws won't stop holidays! + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_fingerless.rsi #Спрайты от dion_clawed + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasGnome + name: gnome socks + description: Made for walking in ice caves in Santa's residence. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_gnome.rsi #Спрайты от dion_clawed + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasGreen + name: green socks + description: A real Elf wears this. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_green.rsi #Спрайты от dion_clawed + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasRed + name: red socks + description: Traditional New Year holiday socks. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_red.rsi #Спрайты от dion_clawed + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasRedWhite + name: red socks with white stripe + description: Just a red socks. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_redwhite.rsi #Спрайты от prazat911 + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasFingerlessStripped + name: fingerless stripped socks + description: Socks for those, whose claws won't let them to warm legs. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi #Спрайты от prazat911 + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksChristmasStripped + name: stripped socks + description: A holiday stripped socks. + suffix: New Year + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_stripped.rsi #Спрайты от prazat911 + +#День Святого Валентина + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksHeart + name: socks with hearts + description: socks with hearts + suffix: Valentine Day + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_heart.rsi #Спрайты от lunalita + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksStockingsHeart + name: stockings with hearts + description: socks with hearts + suffix: Valentine Day + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/stockings_heart.rsi #Спрайты от lunalita + +#Stockings + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksStockingsRed + name: red stockings + description: Red lace stockings. Not for a standart shift + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/red_stockings.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksStockingsBlack + name: black stockings + description: Black lace stockings. Not for a standart shift + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/black_stockings.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksStockingsWhite + name: white stockings + description: White lace stockings. With a pink bow + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/white_stockings.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksComfy + name: socks for comfort + description: Socks for programmers with a cutout for the sharp claws of the Vulpkanin! They smell like tangerines. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_liexer.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksStockingsBlueshield + name: blueshield's stockings + description: Excellent warm stockings for the most beautiful guardian. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/stockings_blueshield.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksBlueshield + name: blueshield's socks + description: Excellent warm socks for the most beautiful guardian. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_blueshield.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksRabbit + name: rabbit socks + description: Cool rabbit socks + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_rabbit.rsi + - type: StaticPrice + price: 120 + +# TGS + +## Носки + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksComfyBlue + name: blue socks + description: Comfy blue socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksComfyGrey + name: grey socks + description: Comfy grey socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksComfyRed + name: red socks + description: Comfy red socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_comfyred.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksComfyViolet + name: violet socks + description: Comfy violet socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi + +## Чулки + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksKneeComfyBlue + name: blue knee socks + description: Comfy blue knee socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_kneecomfyblue.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksKneeComfyGrey + name: grey knee socks + description: Comfy grey knee socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_kneecomfygrey.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksKneeComfyRed + name: red knee socks + description: Comfy red knee socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi + +- type: entity + parent: ADTClothingUnderwearSocksBase + id: ADTClothingUnderwearSocksKneeComfyViolet + name: violet knee socks + description: Comfy violet knee socks. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/base_clothingunderweart.yml b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/base_clothingunderweart.yml new file mode 100644 index 00000000000..1354872bf35 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/base_clothingunderweart.yml @@ -0,0 +1,33 @@ +# Sirena + +- type: entity + abstract: true + parent: Clothing + id: ADTClothingUnderwearTopBase + name: based underweart + description: "You should not see this. If you see it, let Neko Dar#8948 know." + components: + - type: Sprite + state: icon + - type: Item + size: Tiny + - type: Clothing + slots: UNDERWEART + - type: Butcherable + butcheringType: Knife + spawned: + - id: MaterialCloth1 + amount: 1 + - type: Food + requiresSpecialDigestion: true + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Fiber + Quantity: 10 + - type: Tag + tags: + - ClothMade + - ADTUnderwearT diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/top.yml b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/top.yml new file mode 100644 index 00000000000..a201ea7b039 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/Top/top.yml @@ -0,0 +1,205 @@ +# Sirena + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraWhite + name: bra + description: Standard Nanotrasen bra for station staff. Painted white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraSports + name: sports bra + description: Sports bra. Painted white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/sportsbra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraSportsAlternative + name: alternative sports bra + description: Sports bra. Alternate version. Painted white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/sportsbraalt.rsi + +#Underwear-for-the-Heads +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraCap + name: captain's bra + description: Standard station captain's underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraCE + name: chief engineer's bra + description: Standard station chief engineer's underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraCMO + name: chief medical officer's bra + description: Standard underwear of the station chief medical officer. For some reason it smells like chloral hydrate... + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraHOP + name: head of personnel's bra + description: The standard underwear of the station's chief of staff. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraHOS + name: head of security's bra + description: Standard underwear of the station's head of security. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/Heads/hos_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraQM + name: quartermaster's bra + description: Standard station quartermaster underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/Heads/qm_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraRD + name: research director's bra + description: Standard research director's underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/Heads/rd_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopMonokiniWhite + name: white monokini top + description: monokini top. Painted white. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/monokini_top_white.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopMonokiniBlack + name: black monokini top + description: monokini top. Painted black. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/monokini_top_black.rsi + +# ADT + +#бра от Празата для Стильномата + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraSportsBlack + name: black sports bra + description: Sports bra. Painted black. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/sportsbrablack.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraPea + name: pea bra + description: pea bra + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/peabra.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraLace + name: lace bra + description: Good looking lace underwear. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/lace_bra.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraLaceBlueAlternative + name: blueshield bra + description: Standard Nanotrasen bra for Blue Shield Officer. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/muns_bra_blue.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraLaceRedAlternative + name: blueshield bra + description: Standard Nanotrasen bra for Blue Shield Officer. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/muns_bra_red.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraLaceRed + name: red lace bra + description: Red, lacy and, probably, very expensive. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/red_bra.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraLaceBlack + name: black lace bra + description: Black, lacy and, probably, very expensive. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/black_bra.rsi + - type: StaticPrice + price: 100 + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraComfyWhite + name: comfy white bra + description: White, very comfortable and with a pink bow + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi + +- type: entity + parent: ADTClothingUnderwearTopBase + id: ADTClothingUnderwearTopBraBlueshield + name: blueshield bra + description: Standard Nanotrasen bra for Blue Shield Officer. + components: + - type: Sprite + sprite: ADT/Clothing/Underwear/Top/blueshield_bra.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/fill.txt b/Resources/Prototypes/ADT/Entities/Clothing/Underwear/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Clothing/Underwear/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml index 44faad9cdec..6af02f45cfa 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml @@ -91,12 +91,14 @@ sprite: Mobs/Customization/masking_helpers.rsi state: unisex_full visible: false + # ADT tweak start - map: [ "underwearb" ] #Sirena - map: [ "underweart" ] #Sirena - map: [ "enum.HumanoidVisualLayers.LFoot" ] - map: [ "enum.HumanoidVisualLayers.RFoot" ] - map: [ "socks" ] #Sirena - - map: [ "jumpsuit" ] + - map: ["jumpsuit"] + # ADT tweak start - map: [ "enum.HumanoidVisualLayers.LHand" ] - map: [ "enum.HumanoidVisualLayers.RHand" ] #- map: [ "enum.HumanoidVisualLayers.LFoot" ] @@ -155,10 +157,68 @@ components: - type: HumanoidAppearance species: Moth - - type: Sprite + - type: Sprite # sprite again because we want different layer ordering noRot: true drawdepth: Mobs scale: 0.93, 0.93 + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - shader: StencilClear + sprite: Mobs/Species/Human/parts.rsi #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 + # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. + # sprite refactor when + state: l_leg + - shader: StencilMask + map: [ "enum.HumanoidVisualLayers.StencilMask" ] + sprite: Mobs/Customization/masking_helpers.rsi + state: unisex_full + visible: false + # ADT tweak start + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "socks" ] #Sirena + - map: ["jumpsuit"] + # ADT tweak start + - map: [ "enum.HumanoidVisualLayers.LHand" ] + - map: [ "enum.HumanoidVisualLayers.RHand" ] + #- map: [ "enum.HumanoidVisualLayers.LFoot" ] + #- map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_moth" + visible: false - type: Inventory femaleDisplacements: jumpsuit: diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml index 1325973b9ab..6070b6db379 100644 --- a/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/shadekin.yml @@ -99,9 +99,14 @@ - map: [ "enum.HumanoidVisualLayers.LArm" ] - map: [ "enum.HumanoidVisualLayers.RLeg" ] - map: [ "enum.HumanoidVisualLayers.LLeg" ] + # ADT tweak start + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "socks" ] #Sirena - map: ["jumpsuit"] - - map: ["enum.HumanoidVisualLayers.LFoot"] - - map: ["enum.HumanoidVisualLayers.RFoot"] + # ADT tweak start - map: ["enum.HumanoidVisualLayers.LHand"] - map: ["enum.HumanoidVisualLayers.RHand"] - map: [ "gloves" ] @@ -181,6 +186,21 @@ 32: sprite: ADT/Mobs/Species/Shadekin/displacement.rsi state: head + underweart: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: underweart + underwearb: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: underwearb + socks: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: socks femaleDisplacements: jumpsuit: sizeMaps: @@ -207,6 +227,23 @@ 32: sprite: ADT/Mobs/Species/Shadekin/displacement.rsi state: head + underweart: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: underweart + underwearb: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: underwearb + socks: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: socks + + # Frontier - languages mechanic - type: LanguageSpeaker speaks: @@ -230,6 +267,46 @@ components: - type: HumanoidAppearance species: Shadekin + - type: Sprite + scale: 0.95, 0.95 + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + shader: unshaded + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + # ADT tweak start + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "socks" ] #Sirena + - map: ["jumpsuit"] + # ADT tweak start + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] - type: Inventory displacements: jumpsuit: @@ -257,3 +334,18 @@ 32: sprite: ADT/Mobs/Species/Shadekin/displacement.rsi state: head + underweart: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: underweart + socks: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: socks + underwearb: + sizeMaps: + 32: + sprite: ADT/Mobs/Species/Shadekin/displacement.rsi + state: underwearb diff --git a/Resources/Prototypes/ADT/Loadouts/Miscellaneous/underwear.yml b/Resources/Prototypes/ADT/Loadouts/Miscellaneous/underwear.yml new file mode 100644 index 00000000000..0fa6732bf90 --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/Miscellaneous/underwear.yml @@ -0,0 +1,205 @@ +# Трусы... + +- type: loadout + id: ADTUnderwearBoxersWhite + equipment: + underwearb: ADTClothingUnderwearBottomBoxersWhite + +## главы + +- type: loadout + id: ADTUnderwearBoxersQM + equipment: + underwearb: ADTClothingUnderwearBottomBoxersQM + +- type: loadout + id: ADTUnderwearBoxersRD + equipment: + underwearb: ADTClothingUnderwearBottomBoxersRD + +- type: loadout + id: ADTUnderwearBoxersCap + equipment: + underwearb: ADTClothingUnderwearBottomBoxersCap + +- type: loadout + id: ADTUnderwearBoxersHOP + equipment: + underwearb: ADTClothingUnderwearBottomBoxersHOP + +- type: loadout + id: ADTUnderwearBoxersHOS + equipment: + underwearb: ADTClothingUnderwearBottomBoxersHOS + +- type: loadout + id: ADTUnderwearBoxersCMO + equipment: + underwearb: ADTClothingUnderwearBottomBoxersCMO + +- type: loadout + id: ADTUnderwearBoxersCE + equipment: + underwearb: ADTClothingUnderwearBottomBoxersCE + +- type: loadout + id: ADTUnderwearBoxersBlueshield + equipment: + underwearb: ADTClothingUnderwearBottomBoxersBlueshield + +# Трусики OwO + +- type: loadout + id: ADTUnderwearPantiesWhite + equipment: + underwearb: ADTClothingUnderwearBottomPantiesWhite + +- type: loadout + id: ADTUnderwearPantiesComfyWhite + equipment: + underwearb: ADTClothingUnderwearBottomPantiesComfyWhite + +## главы + +- type: loadout + id: ADTUnderwearPantiesQM + equipment: + underwearb: ADTClothingUnderwearBottomPantiesQM + +- type: loadout + id: ADTUnderwearPantiesRD + equipment: + underwearb: ADTClothingUnderwearBottomPantiesRD + +- type: loadout + id: ADTUnderwearPantiesCap + equipment: + underwearb: ADTClothingUnderwearBottomPantiesCap + +- type: loadout + id: ADTUnderwearPantiesHOP + equipment: + underwearb: ADTClothingUnderwearBottomPantiesHOP + +- type: loadout + id: ADTUnderwearPantiesHOS + equipment: + underwearb: ADTClothingUnderwearBottomPantiesHOS + +- type: loadout + id: ADTUnderwearPantiesCMO + equipment: + underwearb: ADTClothingUnderwearBottomPantiesCMO + +- type: loadout + id: ADTUnderwearPantiesCE + equipment: + underwearb: ADTClothingUnderwearBottomPantiesCE + +- type: loadout + id: ADTUnderwearPantiesBlueshield + equipment: + underwearb: ADTClothingUnderwearBottomPantiesBlueshield + +# Лифчики + +- type: loadout + id: ADTUnderwearBraWhite + equipment: + underweart: ADTClothingUnderwearTopBraWhite + +- type: loadout + id: ADTUnderwearBraComfyWhite + equipment: + underweart: ADTClothingUnderwearTopBraComfyWhite + +- type: loadout + id: ADTUnderwearBraSports + equipment: + underweart: ADTClothingUnderwearTopBraSports + +- type: loadout + id: ADTUnderwearBraSportsAlternative + equipment: + underweart: ADTClothingUnderwearTopBraSportsAlternative + +## главы + +- type: loadout + id: ADTUnderwearBraQM + equipment: + underweart: ADTClothingUnderwearTopBraQM + +- type: loadout + id: ADTUnderwearBraRD + equipment: + underweart: ADTClothingUnderwearTopBraRD + +- type: loadout + id: ADTUnderwearBraCap + equipment: + underweart: ADTClothingUnderwearTopBraCap + +- type: loadout + id: ADTUnderwearBraHOP + equipment: + underweart: ADTClothingUnderwearTopBraHOP + +- type: loadout + id: ADTUnderwearBraHOS + equipment: + underweart: ADTClothingUnderwearTopBraHOS + +- type: loadout + id: ADTUnderwearBraCMO + equipment: + underweart: ADTClothingUnderwearTopBraCMO + +- type: loadout + id: ADTUnderwearBraCE + equipment: + underweart: ADTClothingUnderwearTopBraCE + +- type: loadout + id: ADTUnderwearBraBlueshield + equipment: + underweart: ADTClothingUnderwearTopBraBlueshield + +# Всякие чулки и другая подобная хуэта. + +- type: loadout + id: ADTUnderwearSocksHigh + equipment: + socks: ADTClothingUnderwearSocksHigh + +- type: loadout + id: ADTUnderwearSocksShort + equipment: + socks: ADTClothingUnderwearSocksShort + +- type: loadout + id: ADTUnderwearSocksThigh + equipment: + socks: ADTClothingUnderwearSocksThigh + +- type: loadout + id: ADTUnderwearSocksNormal + equipment: + socks: ADTClothingUnderwearSocksNormal + +- type: loadout + id: ADTUnderwearStockings + equipment: + socks: ADTClothingUnderwearSocksStockingsWhite + +# главы.. ну пусть будет, пока тут только синяя лепеха + +- type: loadout + id: ADTUnderwearStockingsBlueshield + equipment: + socks: ADTClothingUnderwearSocksStockingsBlueshield + +- type: loadout + id: ADTUnderwearSocksBlueshield + equipment: + socks: ADTClothingUnderwearSocksBlueshield diff --git a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml index be4497ecb7f..876fdcdaeec 100644 --- a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml @@ -325,3 +325,252 @@ - ADTOuterCoatBrigmedicWB - ADTOuterVestSecurityMedic - ADTOuterCoatLabSecurityMedic + +# Underwear + +- type: loadoutGroup + id: ADTBottom + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + +- type: loadoutGroup + id: ADTTop + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + +- type: loadoutGroup + id: ADTSocks + name: loadout-group-socks-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearSocksNormal + - ADTUnderwearSocksHigh + - ADTUnderwearSocksShort + - ADTUnderwearSocksThigh + - ADTUnderwearStockings + +## Бельё для глав + +### Низ + +- type: loadoutGroup + id: ADTBottomQM + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersQM + - ADTUnderwearPantiesQM + +- type: loadoutGroup + id: ADTBottomRD + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersRD + - ADTUnderwearPantiesRD + +- type: loadoutGroup + id: ADTBottomCap + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersCap + - ADTUnderwearPantiesCap + +- type: loadoutGroup + id: ADTBottomHOP + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersHOP + - ADTUnderwearPantiesHOP + +- type: loadoutGroup + id: ADTBottomHOS + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersHOS + - ADTUnderwearPantiesHOS + +- type: loadoutGroup + id: ADTBottomCMO + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersCMO + - ADTUnderwearPantiesCMO + +- type: loadoutGroup + id: ADTBottomCE + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersCE + - ADTUnderwearPantiesCE + +- type: loadoutGroup + id: ADTBottomBlueshield + name: loadout-group-bottom-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBoxersWhite + - ADTUnderwearPantiesWhite + - ADTUnderwearPantiesComfyWhite + - ADTUnderwearBoxersBlueshield + - ADTUnderwearPantiesBlueshield + +### Топ + +- type: loadoutGroup + id: ADTTopQM + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraQM + +- type: loadoutGroup + id: ADTTopRD + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraRD + +- type: loadoutGroup + id: ADTTopCap + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraCap + +- type: loadoutGroup + id: ADTTopHOP + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraHOP + +- type: loadoutGroup + id: ADTTopHOS + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraHOS + +- type: loadoutGroup + id: ADTTopCMO + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraCMO + +- type: loadoutGroup + id: ADTTopCE + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraCE + +- type: loadoutGroup + id: ADTTopBlueshield + name: loadout-group-top-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearBraWhite + - ADTUnderwearBraComfyWhite + - ADTUnderwearBraSports + - ADTUnderwearBraSportsAlternative + - ADTUnderwearBraBlueshield + +### Чулки + +- type: loadoutGroup + id: ADTSocksBlueshield + name: loadout-group-socks-adt + minLimit: 0 + maxLimit: 1 + loadouts: + - ADTUnderwearSocksNormal + - ADTUnderwearSocksHigh + - ADTUnderwearSocksShort + - ADTUnderwearSocksThigh + - ADTUnderwearStockings + - ADTUnderwearSocksBlueshield + - ADTUnderwearStockingsBlueshield diff --git a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml index 0c05b4d5c62..46ed80e3098 100644 --- a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml @@ -10,6 +10,11 @@ - Survival - Trinkets - GroupSpeciesBreathTool + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - type: roleLoadout id: JobADTPathologist @@ -27,6 +32,11 @@ - SurvivalMedical - Trinkets - GroupSpeciesBreathToolMedical + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - type: roleLoadout id: JobADTRoboticist @@ -44,6 +54,11 @@ - Survival - Trinkets - GroupSpeciesBreathTool + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - type: roleLoadout id: JobADTBlueShieldOfficer @@ -57,6 +72,11 @@ - SurvivalSecurity - Trinkets - GroupSpeciesBreathToolSecurity + # ADT underwear tweak start + - ADTTopBlueshield + - ADTBottomBlueshield + - ADTSocksBlueshield + # ADT underwear tweak end - type: roleLoadout id: JobADTSeniorPhysician @@ -73,6 +93,11 @@ - SurvivalMedical - GroupSpeciesBreathToolMedical - MedicalShoes + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - type: roleLoadout id: JobADTSeniorResearcher @@ -88,6 +113,11 @@ - ScientistShoes - Survival - Trinkets + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - type: roleLoadout id: JobADTSeniorEngineer @@ -101,6 +131,11 @@ - StationEngineerShoes - Survival - Trinkets + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - type: roleLoadout id: JobADTSeniorOfficer @@ -115,6 +150,11 @@ - SecurityShoes - SurvivalSecurity - Trinkets + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end # brigmedic - type: roleLoadout @@ -138,3 +178,8 @@ - SurvivalSecurity - Trinkets - GroupSpeciesBreathToolSecurity + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end diff --git a/Resources/Prototypes/ADT/tags.yml b/Resources/Prototypes/ADT/tags.yml index eb068924ee8..c523760fff4 100644 --- a/Resources/Prototypes/ADT/tags.yml +++ b/Resources/Prototypes/ADT/tags.yml @@ -132,3 +132,12 @@ - type: Tag id: ADTMagazineRifleAR12 + +- type: Tag + id: ADTUnderwearB + +- type: Tag + id: ADTUnderwearT + +- type: Tag + id: ADTSocks diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 9528eb40a42..d1508a61e75 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -33,7 +33,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 3050 #ADT_Tweak + cost: 3600 #ADT_Tweak category: cargoproduct-category-name-service group: market diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml index 95f44b2c2e5..07e50d4a594 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/clothesmate.yml @@ -24,17 +24,15 @@ # ADT сумки конец ADTClothingHeadHatBeretBlackCivilian: 2 # ADT Кастомный чёрный берет ClothingBackpackSatchelLeather: 2 -# ADT бельё/обмотки/плащи начало - # ADTClothingUnderwearRedLacePanties: 2 - # ADTClothingUnderwearTopLaceBraRed: 2 - # ADTClothingUnderwearBlackLacePanties: 2 # TODO: Убрать комменты после добавления ниженго белья - # ADTClothingUnderwearTopLaceBraBlack: 2 - # ADTClothingUnderwearWhiteComfyPanties: 2 - # ADTClothingUnderwearTopComfyWhiteBra: 2 +# ADT бельё/обмотки/плащи/носки начало + ADTClothingUnderwearBottomBoxersWhite: 4 + ADTClothingUnderwearBottomPantiesComfyWhite: 4 + ADTClothingUnderwearTopBraWhite: 4 + ADTClothingUnderwearTopBraComfyWhite: 4 # конец белья ADTClothingNeckDarkGreyCloak: 1 ADTClothingNeckGothicCloak: 1 -# ADT бельё/обмотки/плащи конец +# ADT бельё/обмотки/плащи/носки конец ADTClothingSandals: 2 ClothingRandomSpawner: 8 ClothingHeadHatBeret: 4 @@ -84,6 +82,20 @@ ClothingUniformJumpsuitCasualRed: 2 ClothingUniformJumpskirtCasualRed: 2 # DO NOT ADD MORE, USE UNIFORM DYING +# ADT начало носков + ADTClothingUnderwearSocksShort: 2 + ADTClothingUnderwearSocksHigh: 2 + ADTClothingUnderwearSocksThigh: 2 + ADTClothingUnderwearSocksStockingsWhite: 2 + ADTClothingUnderwearSocksComfyBlue: 2 + ADTClothingUnderwearSocksComfyGrey: 2 + ADTClothingUnderwearSocksComfyRed: 2 + ADTClothingUnderwearSocksComfyViolet: 2 + ADTClothingUnderwearSocksKneeComfyBlue: 2 + ADTClothingUnderwearSocksKneeComfyGrey: 2 + ADTClothingUnderwearSocksKneeComfyRed: 2 + ADTClothingUnderwearSocksKneeComfyViolet: 2 +# ADT конец носков # ADT бельё/обмотки/плащи начало ADTClothingFootWrapsWhite: 2 ADTClothingFootWrapsHighWhite: 2 diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index ea4faeaf523..bec4dd73653 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -19,9 +19,14 @@ - map: [ "enum.HumanoidVisualLayers.LArm" ] - map: [ "enum.HumanoidVisualLayers.RLeg" ] - map: [ "enum.HumanoidVisualLayers.LLeg" ] + # ADT tweak start + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "socks" ] #Sirena - map: ["jumpsuit"] - - map: ["enum.HumanoidVisualLayers.LFoot"] - - map: ["enum.HumanoidVisualLayers.RFoot"] + # ADT tweak start - map: ["enum.HumanoidVisualLayers.LHand"] - map: ["enum.HumanoidVisualLayers.RHand"] - map: [ "gloves" ] @@ -322,9 +327,14 @@ - map: [ "enum.HumanoidVisualLayers.LArm" ] - map: [ "enum.HumanoidVisualLayers.RLeg" ] - map: [ "enum.HumanoidVisualLayers.LLeg" ] + # ADT tweak start + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "socks" ] #Sirena - map: ["jumpsuit"] - - map: ["enum.HumanoidVisualLayers.LFoot"] - - map: ["enum.HumanoidVisualLayers.RFoot"] + # ADT tweak start - map: ["enum.HumanoidVisualLayers.LHand"] - map: ["enum.HumanoidVisualLayers.RHand"] - map: ["enum.HumanoidVisualLayers.Handcuffs"] diff --git a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml index e3ac371ebde..26c8628d969 100644 --- a/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/arachnid_inventory_template.yml @@ -8,6 +8,38 @@ uiWindowPos: 1,0 strippingWindowPos: 1,3 displayName: Shoes +# ADT tweak start + - name: socks #Sirena slot + slotTexture: socks + slotFlags: SOCKS + stripTime: 6 + uiWindowPos: 3,0 + strippingWindowPos: 2,4 + displayName: Socks + whitelist: + tags: + - ADTSocks + - name: underwearb #Sirena slot + slotTexture: underwearb + slotFlags: UNDERWEARB + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 1,4 + displayName: Panties + whitelist: + tags: + - ADTUnderwearB + - name: underweart #Sirena slot + slotTexture: underweart + slotFlags: UNDERWEART + stripTime: 6 + uiWindowPos: 3,2 + strippingWindowPos: 0,4 + displayName: Bra + whitelist: + tags: + - ADTUnderwearT +# ADT tweak end - name: jumpsuit slotTexture: uniform slotFlags: INNERCLOTHING @@ -60,7 +92,7 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 2,1 - strippingWindowPos: 2,4 + strippingWindowPos: 2,5 # ADT tweak dependsOn: jumpsuit displayName: ID - name: belt @@ -70,7 +102,7 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 3,1 - strippingWindowPos: 1,5 + strippingWindowPos: 1,6 # ADT tweak displayName: Belt - name: back slotTexture: back @@ -79,7 +111,7 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 3,0 - strippingWindowPos: 0,5 + strippingWindowPos: 0,6 # ADT tweak displayName: Back - name: pocket4 @@ -114,7 +146,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 0,3 - strippingWindowPos: 0,4 + strippingWindowPos: 0,5 # ADT tweak dependsOn: jumpsuit displayName: Pocket 1 stripHidden: true @@ -125,7 +157,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 2,3 - strippingWindowPos: 1,4 + strippingWindowPos: 1,5 # ADT tweak dependsOn: jumpsuit displayName: Pocket 2 stripHidden: true @@ -135,7 +167,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 2,0 - strippingWindowPos: 2,5 + strippingWindowPos: 2,6 # ADT tweak dependsOn: outerClothing dependsOnComponents: - type: AllowSuitStorage diff --git a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml index ff1447931fe..3a9e68cbf8a 100644 --- a/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml +++ b/Resources/Prototypes/InventoryTemplates/human_inventory_template.yml @@ -8,6 +8,38 @@ uiWindowPos: 1,0 strippingWindowPos: 1,3 displayName: Shoes +# ADT tweak start + - name: socks #Sirena slot + slotTexture: socks + slotFlags: SOCKS + stripTime: 6 + uiWindowPos: 3,0 + strippingWindowPos: 2,4 + displayName: Socks + whitelist: + tags: + - ADTSocks + - name: underwearb #Sirena slot + slotTexture: underwearb + slotFlags: UNDERWEARB + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 1,4 + displayName: Panties + whitelist: + tags: + - ADTUnderwearB + - name: underweart #Sirena slot + slotTexture: underweart + slotFlags: UNDERWEART + stripTime: 6 + uiWindowPos: 3,2 + strippingWindowPos: 0,4 + displayName: Bra + whitelist: + tags: + - ADTUnderwearT +# ADT tweak end - name: jumpsuit slotTexture: uniform slotFlags: INNERCLOTHING @@ -67,7 +99,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 0,3 - strippingWindowPos: 0,4 + strippingWindowPos: 0,5 # ADT tweak dependsOn: jumpsuit displayName: Pocket 1 stripHidden: true @@ -78,7 +110,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 2,3 - strippingWindowPos: 1,4 + strippingWindowPos: 1,5 # ADT tweak dependsOn: jumpsuit displayName: Pocket 2 stripHidden: true @@ -88,7 +120,7 @@ slotGroup: MainHotbar stripTime: 3 uiWindowPos: 2,0 - strippingWindowPos: 2,5 + strippingWindowPos: 2,6 # ADT tweak dependsOn: outerClothing dependsOnComponents: - type: AllowSuitStorage @@ -100,7 +132,7 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 2,1 - strippingWindowPos: 2,4 + strippingWindowPos: 2,5 # ADT tweak dependsOn: jumpsuit displayName: ID - name: belt @@ -110,7 +142,7 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 3,1 - strippingWindowPos: 1,5 + strippingWindowPos: 1,6 # ADT tweak displayName: Belt - name: back slotTexture: back @@ -119,5 +151,5 @@ slotGroup: SecondHotbar stripTime: 6 uiWindowPos: 3,0 - strippingWindowPos: 0,5 + strippingWindowPos: 0,6 # ADT tweak displayName: Back diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index 11ffa7e7a08..ca2910f7100 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -8,6 +8,11 @@ - CaptainJumpsuit - CaptainBackpack - CaptainOuterClothing + # ADT underwear tweak start + - ADTTopCap + - ADTBottomCap + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -24,6 +29,11 @@ - HoPBackpack - HoPOuterClothing - Glasses + # ADT underwear tweak start + - ADTTopHOP + - ADTBottomHOP + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -47,6 +57,11 @@ - PassengerOuterClothing - PassengerShoes - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -61,6 +76,11 @@ - CommonBackpack - BartenderOuterClothing - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -73,6 +93,11 @@ - BartenderJumpsuit - CommonBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -88,6 +113,11 @@ - CommonBackpack - ChefOuterClothing - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -100,6 +130,11 @@ - LibrarianJumpsuit - CommonBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -113,6 +148,11 @@ - LawyerJumpsuit - CommonBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -129,6 +169,11 @@ - CommonBackpack - ChaplainOuterClothing - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -144,6 +189,11 @@ - CommonBackpack - JanitorOuterClothing - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - JanitorPlunger @@ -159,6 +209,11 @@ - BotanistBackpack - BotanistOuterClothing - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -174,6 +229,11 @@ - ClownOuterClothing - ClownShoes - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalClown - Trinkets @@ -189,6 +249,11 @@ - MimeOuterClothing - MimeBelt - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalMime - Trinkets @@ -201,6 +266,11 @@ - CommonBackpack - MusicianOuterClothing - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - Instruments @@ -219,6 +289,11 @@ - QuartermasterOuterClothing - QuartermasterShoes - Glasses + # ADT underwear tweak start + - ADTTopQM + - ADTBottomQM + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -234,6 +309,11 @@ - CargoTechnicianOuterClothing - CargoTechnicianShoes - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -247,6 +327,11 @@ - SalvageSpecialistOuterClothing - SalvageSpecialistShoes - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -263,6 +348,11 @@ - ChiefEngineerNeck - ChiefEngineerOuterClothing - ChiefEngineerShoes + # ADT underwear tweak start + - ADTTopCE + - ADTBottomCE + - ADTSocks + # ADT underwear tweak end - SurvivalExtended - Trinkets - GroupSpeciesBreathTool @@ -274,6 +364,11 @@ - GroupTankHarness - TechnicalAssistantJumpsuit - StationEngineerBackpack + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalExtended - Trinkets - GroupSpeciesBreathTool @@ -289,6 +384,11 @@ - StationEngineerOuterClothing - StationEngineerShoes - StationEngineerID + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalExtended - Trinkets - GroupSpeciesBreathTool @@ -305,6 +405,11 @@ - AtmosphericTechnicianBackpack - AtmosphericTechnicianOuterClothing - AtmosphericTechnicianShoes + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalExtended - Trinkets - GroupSpeciesBreathTool @@ -323,6 +428,11 @@ - ScientistGloves - ResearchDirectorShoes - Glasses + # ADT underwear tweak start + - ADTTopRD + - ADTBottomRD + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -341,6 +451,11 @@ - ScientistShoes - ScientistPDA - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -353,6 +468,11 @@ - ResearchAssistantJumpsuit - ScientistBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -369,6 +489,11 @@ - SecurityBelt - HeadofSecurityOuterClothing - SecurityShoes + # ADT underwear tweak start + - ADTTopHOS + - ADTBottomHOS + - ADTSocks + # ADT underwear tweak end - SurvivalSecurity - Trinkets - SecurityStar @@ -384,6 +509,11 @@ - SecurityBelt - WardenOuterClothing - SecurityShoes + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalSecurity - Trinkets - SecurityStar @@ -401,6 +531,11 @@ - SecurityShoes - SecurityPDA - SecurityBelt + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalSecurity - Trinkets - SecurityStar @@ -418,6 +553,11 @@ - SecurityBackpack - DetectiveOuterClothing - SecurityShoes + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalSecurity - Trinkets - SecurityStar @@ -431,6 +571,11 @@ - SecurityBackpack - SurvivalSecurity - Trinkets + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - GroupSpeciesBreathToolSecurity - SecurityCadetNeckADT # ADT-Loadouts @@ -449,6 +594,11 @@ - ChiefMedicalOfficerNeck - ChiefMedicalOfficerShoes - Glasses + # ADT underwear tweak start + - ADTTopCMO + - ADTBottomCMO + - ADTSocks + # ADT underwear tweak end - SurvivalMedical - Trinkets - GroupSpeciesBreathToolMedical @@ -467,6 +617,11 @@ - MedicalShoes - MedicalDoctorPDA - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalMedical - Trinkets - GroupSpeciesBreathToolMedical @@ -479,6 +634,11 @@ - MedicalInternJumpsuit - MedicalBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalMedical - Trinkets - GroupSpeciesBreathToolMedical @@ -494,6 +654,11 @@ - ChemistBackpack - ChemistOuterClothing - MedicalShoes + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalMedical - Trinkets - GroupSpeciesBreathToolMedical @@ -511,6 +676,11 @@ - ParamedicOuterClothing - ParamedicShoes - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - SurvivalMedical - Trinkets - GroupSpeciesBreathToolMedical @@ -523,6 +693,11 @@ - GroupTankHarness - CommonBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -535,6 +710,11 @@ - ReporterJumpsuit - CommonBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -547,6 +727,11 @@ - PsychologistJumpsuit - MedicalBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool @@ -560,6 +745,11 @@ - BoxerGloves - CommonBackpack - Glasses + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Survival - Trinkets - GroupSpeciesBreathTool diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..3aa2ee84f539b49ec258c28b566a4624eafd006f GIT binary patch literal 2414 zcmbVO3v3f*9KXTncx1*v$*D4HjGWKcfI?4zu)iw zy06QNi>9Uy9Xk}mu++kW+!A!oGLOL)^u1NCxQI?ew1U|>hFR0iBPse?W+jGMcFNva z#w^b?0jMFXD5*YZjfOOY#;}acs3wB>(7=5#AS-U7y?Gyj%aWTYb$DoxmIKS>g6c4w zQC;K()$;)_5t&o)jHrMJLeLQLXeg-YLex#fcm;HA-lhmV1~KNliEL94pXDjWbJQ@z zomQ3vG)?19-pcqmhv?)V##x$WDVn1g8_75YJ0~!9JpLh&Tv+l8CAs-=G4#t#lpBU7 zP*fxmu|{lGH5{NAp64l=rC63k2vV<73^7V7dU`iQF4RF-)(lxyaFbE=sS6A@fvk4L z5YiH~iXP7s$`}v)yvgBs1uL> zA%Jr0@gy{Q^%4ptBy=OM5`_^@NUvz!Tcts&1nTO7Fo1cL$Y#13jV9!Tp=hXKuc`*S zD^=WW8E0))2R^Y>RwOl|PwKG%=86V%6R2u7l4eMj_p*#&V+DtEGVKs(x(n)2CD~uq z6Uve-<7I4ugBNJmKcJ{*B+(G>2$q20SHmF@1uTce0Hib}K;Vfq3OQ;}4I^RX&K7gw z@d$;AZiotig}H75#cY*jNnq`Mmncaz$w7%H9X7i}x_C&F4$%%6QR4kR+TOiBR|N~q z%9`uDx?EBL;`m$D$@}agBl<`maQR7}%kCsyG@wZcTsD^FXczGD-E2>UWi)7FuqUhO zNU8KmmY@}c0eYEIcT&xqA-Tb$5H%m5(Pe+B+Hj5 z92yWi*Xvoy^BK7%p`1yOX(VBcJTLy45o^xAny zI!rEbt;x1;uii96L*8PGA%&B%0z-(tI z5%Jq{FO~mKIgYQ7ltV#E;~h+&u=KwWajF{1i1uZxxaTmNrO+vTaJ^HWXn49g5zTCEfQIBVhUUuowTF*p$%mWjieDH4X^g#accSZmUw_f-yrRAaPDaO^b zvhR-!NWXfT-CUG5+CzgeO&d*~y`6GWP-<#GbLz~-tfr3kxtTw0b0%xcny>ws9!Xh|Jafw{ z11F!_y&)-Y=Ue^h&=!E)4=By23Jtk}_VdC;qt;)N+6S6e zkauibYIXMJag8b0z8;2U-MHmOiT>cvV#_g=S+?9VWl{3QJ$E&AUcU#!_hsZX9Iiib z?u9MKl7`gsFM;xf9a(2Or73%Tg5`YKYqz)g_lKm*>#~O|CimwLC>!?nnd{hXjIK|s VYYzX?VE!X2%qz-$>(R0$e*v{4QFZ_T literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..00890e9b52aa00c4a0322077cb50e14693c240ef GIT binary patch literal 2101 zcmcIlO>Em#9Cy2_E1gy-Jx~D?maFkKUi=xycAIr+Qc5SCg zs!5=Up-oHzPQW?|?SMEGAr31$3~dwa!1x$k*kR%}Do&^zHi^Tu@tm&})OEcO#qqQA zf4~3l{rgpuF{?gJ-a(l>4z2Z~UuDM@mR(3X+&AhB3rx<~TqvJ@W=#prP8XB&+5an?|>o{lGac2GeMTWMFI5QK?a2abO)3JyE5XW(JOpWlm9ECCU1zO+)f#qbD7XcsBBw6Dny76I1I?ph*spN}|WaKH% z%m;z1v23|qj+DiSE7}jn7D<){-%Wx2Y}Li=6!x8xhw#`U zwu6CYGI!ny9Dm-q54YCe|6*vMRzkPr6>9Prh{Xk5B-lQQ+6bqUafXnJSeBtdNl{EGDgi;%bztyP6zIGp08v#DuX73)gL;h@ znV)n}DO4hyU-zxyAcE0SQJ%I=;}}F;k)aKwnT}V4 z#6MOM<}mBpxzNo7ovb2d`J{B!#{QVb3yo31qHCtpAPT)6XHZyVO!(GcTbro2J)ZUX z<#|j%wC6*7dR8uEgM^;G^ z6jh^&yn$Cur}}c)t#zqIZaBo7B9qP#4qH8mJhZwRwn;%e(zBkCMpsF{`z@VJWM_~4 z`Ria$TcUsGUw5ycm`RST9`0SBz^8q`ymWc*lZlnJuG0t7=U0!9K);|lev?LQy-*DrS?bOqB`hH!_-IPf6T3-*)u&~cHf@+=~{lFJ=<|h z8JYX)Rh=4s;z;-N-yGpb&+RN+yHt^G+vTpG*9IexZoU;pBMFo^|^2uEXBY)qRJ??_9aD=j`uSsm}&d m%+#CjbkI~=*8!^i>$az^9Nfz;AN?e3?CG(Ic5iKeaq literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/meta.json new file mode 100644 index 00000000000..d37bcd4637b --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_boxers.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user Sadcmb#0262 (400322885526224926)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..0ec42e8a65eecfe760eedda5f68d36868236c1b5 GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!G)eKjv*CsZ*OhnJ!Bxj8gTv?Lyn`f<3T15 zlQR<(S7hGM-PkMJk)kroLa1u}PK&NDwVCgkfch8?m>*W{Ni3HOuI2go^UIm9pKE`X zh?=U)yzBl`@^0e)X?h#??>&@!_W3-oy1a_+Kd-9Zd_8`9+c|cSUIvB-`e#4?NQ#SC z(akmY$(qJocSj|$e)s7{lZxH_P^wu zE;r{|k)EbNgC7hVa+t1jEhx$YbGh6OCNLSlZaiwdVFug92aBxo`6ZffoG1!-x`o|0 plIOpp#3@|ZvoII22WQ%mvv4FO#p)AJ^lay literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/meta.json new file mode 100644 index 00000000000..ed512d8c8fb --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/capitan_panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user SWG#6421 (481693809806278657)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..7dd8e41e3253ac98f1628e33d347c41b2dc8a65b GIT binary patch literal 2369 zcmbVO4NTN#7%u8S#h*AgXH>MSKSM{aKiB(d$AQ4%AbNm;iaHs+_UmzScRjC#J0J{X z%S4IHfpJ8f+nh^`S#$;?5vLH1I=0MdLj0S!MYm}tLrGM&7D-Xj~vk5;d_p%5F69CN>VGNtz}|BSGnL%EU27j$+Wz4};-+qQot;E(!&M zR~D>5RlOWR`2BvJU$2vW4uWD?mLO?@rg4bCl@gE22XK!vyPv@d6v5~8s!rL1YK**H zE>bNRl-lRP?G4jn)H~ zSt*c*pbkHNCIDPpn=Kq;P%UnEIE1367DF4M1sN2r;u?#43kxu}r#ZcyK&5f5! z@c~|yeL1r1>d#bGzhsow>kMe@N~cGZ{mT3S6M&UhfdzwE)8izC(`*h+aeA6FnBF7} z97*;;ZL;W;N(Mq{oThRph9g;+<7c3-W<*})p9>ZRPLh3Y9vXJKc?Tf89tVbomyt`6 zU9t}bhU)Y|6*e1}?om|UBY$ni9)UXpmT+05ex+HSzjdWOPz+Gv8jBB?hR8Pdp@``I#m zPS|L?YapwpN`#ESZk8y@K;veHfwLt>z*$PP<3JKj5-I5=U?#O{ej2%-B?K+{aExzQ4X~VADQ-!UL z6_-Z1800WAeS9U}wrFI2^f%{`p>H)VZ~v%wUG3$oFKq^&UsPMqOkX>TN4`xMnd$d# z_prOKzrMV@{mIVV$c5%EYFy>&A3l3nzQTI*j$!TBpPss(n6b8F_2cCGrxySE;OeQA zF@e}0k3We%eY+#N{l?2vTB16l7Z#14vGeb}6W&ODT(#)ph4Qk4Gq-eixt7!v9JBT! zXr6q&WyY*Em;Q*VTQ_&hrqYY@D6FZ~$Zs+|#Sw#1NdF2acj@x=X zasIA|FGnEPYoNn>J9H=7x?{epBdc$_yK*sy%IC!r^=qW=UTlz>;JTuA@4Ld71m@{hV zM5R)RN^qk^94Z77NEHWEaRCW&AShCA6&&C|MG-2TdMO|-h)Q9+uLRVldttR+kL_>1 z|C|5+#{a%~Z2IV)T@UY)Bx%poWO+uM0M3Q#z&5oRO@x38Q z+VP7&JD1K?o^xqfFJKlDUTD@MftI9$Bh3iYMV`upSN))*-1_n>MfO=qIbl^`B^u`o z{^Ux`kFQM6(v?N(FlFSBe6Z;Xf;vyJ+^pAv#BG+87OyMD*=<#kTaa|Iq>N?(<+;i+ zc|44{TrB8-LI~xeQ_zTQ;i7Xu)}gMe&{j1AXhqkwUCop`A4P_0bBu-|RBd*TyBwUIqKXQr( z>Ar5TXdz6)WFfqZw%+4^DP*)4Fj|Uht@JRe@*1xT?nGd2+#HFWMn!~t_HIBM$&&R&lI=Hr(HB-d| zqh}jB5paNYZUK`CRmgHM@Q7nV&$1kcnu@#;cRZ|xaV2CTyM`h&>Uv>Z$HG5;9ap&; z1=Y;Wf?cd)(oaO`mOK07IDfS>s`+xubS|cu*Gme`ip-hPx$WN}d;RHb(>4~kAl;() zZCDa|X#>Z6v??-vPjjhv6QAHyTTAb+@c*OqPFm>#4ys(dIaMWFjGDb-+C@?STd$3J zcRe#I+?-W2>7-!{S9=LLbZ3h~N8p`LKs*&u>dkmO_<*<0)`nhEZc;(iTdR# zI>f{pCSn&O4-jM)0fH0)PLZMOHbj&-{c>@WLK{;8uq}3>Q8Yb(#7+jt^a%2F2sPS2 z7qxB9nCMof!-17?IUcbAw;d6LT8@S6O}biMXqQyoy7n#Prbg8@lIVWfu-A9RMXz)7 zK$tETeHoqp$ypHG!XXXoCax7XK4)(&sGl>6-Tce#%Shn7}9-ahdt9C~DR>@8A% z=*s%}oB8~d@T+wGLuuegXL#u3Pu~2eSHD=BUtL|5FF*V4 z^?W|Re*g LrpuSd=Fk2ETH)O5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/meta.json new file mode 100644 index 00000000000..d37bcd4637b --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_boxers.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user Sadcmb#0262 (400322885526224926)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..3e1bcf00ec48ba772fede73c1ff983261d0c6109 GIT binary patch literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I#=yXMH_y=n$YCrFa(7}_cTVOdki(Mh=zwf>Jy|99BkU%Ea&v+T;=8Eda? j{lCd9b~ZzUtlD1&?UXpbj`q*FAQL=Y{an^LB{Ts54bh*c literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..473032e46fdda2d818623d7d578ace05f75090ae GIT binary patch literal 227 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE#=yYHQtOojNT^vI^ypt8=N|qV?X*Y6bjBQxA?p=Lq z>eGt>@~n#!M0l(iv}QYOWm++(iL19M(16SBpvD5pgqBM#i~$#GZhkj%zFN!1R+q=d zrs>`BWAkGk9{K%723s_luI5}z-BI(?$n)7G-c?GH|C$Y^Sc5c6bTu?GGL+OvMRk4^ RnF(|QgQu&X%Q~loCIFfMNBsZ* literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/meta.json new file mode 100644 index 00000000000..ed512d8c8fb --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/ce_panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user SWG#6421 (481693809806278657)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..490ff3cf0fba058f6bea2b0232360b04d723d1d3 GIT binary patch literal 2357 zcmbVOe{9rL9Pb!RV9Y2WArMLJAY!!FA9w9t%WiYq0h@4Rjx7V(biMZVcH7;xwB7E; zm<|>cG(;2w$$)?{fTF+%xFIuhU|{kG3x; z`+bFrj79GGyr={$f~0tWB^*#88bQ)B!m1!v0t58`uP^AtdRo81P@m+)iWxWQR+cFsb1SVpjOFQGI^(*(&9lohA!yp8248yY(>Xik%4zQ8pnW(+<# zv2w#ud4dRqLY9!#qG(=%;y8{VX@aJ4h`{xlpdp0upq@Iw-~zg+`BcNF1W}Vw@F-P= z6N6HtJ_OV_ZBUQJ2}X!Yz+v8 zq7^ENe;`x&1CmkNYGKfs#lE1Vg!C5%EdVaT08R{M&5Dy0PIHAc#an5fvA;+%JV{2O zZbkCRHG`ovPE&;x!^6|YJphF@BMFA^NU$XGvZ4h9=&&y!cmbgXy%-t~BcHAK6%87O z>Z}nJZa1GB)D0mhf?SsqgFah)K8a@p*2c&biF+hiD-PL4;|@}$aM59vD1j3=8?Xp?M zAIxg1k|3jOXIKgdBF>Nkg_E4kj&q!3gZ&~q7)F*@hP9d1eBbf_OD6PBhl$i<-I67E zVz6cX!M6X*~&@MaL%hd+%Hr;h&B) zBU8uJ(O))QCXS)aHJ`SVbF$E;HoyP9Uyo%!L* zo2~twH_j(sUE2Cv)ry@-`SqoD4(;#wLCi{eEZnrT$fuy5D=ZqV7ieM)vLr;Z*Ifdwy(5 z%FBMc;PhHm7=MX8*pP$x6WH;{lKQnH+b5N!CNzz@@EB8$En7~W>~u_=mvrvX;mQv5 zJhi&&h_+<@7h+}6t)!!8zV5_2W*qFRzcJ$Ihqt|Q^1QYQ?5GQk$0y2Jsz2?@l={9q zbNN}hmp5&g*1KX#GZorF-V}FK@00qE&1(DjYFFZp7s#j{x z|I~7^(SPTuvkk|WJIiVhllxB3D5mGP_arPxxz&`AxBuJL)#Dlld-F%4gk9c!`kCAC QFAsv`&dzh~$tqj7D?0Ck3Kv*XU=>Nu6Dhv?SkX6D}A zd-KOdDHNh03Mz|~Lhz4dKO!md>W_;41))R*YCnW9ED1!U=*)g;q1XM>vh%smdEV!J z-{+jO`?hU;dT7;yt0YMp8ZDQ`#8u9ZJC=)cIyd*HxU7uJ&!>`f=e_x{M0)T2)snR0 zm!LYHjaQ!WXw)cR77<=(HDZC5r1cwHF{V>IlL@Z{VNtpC#R)|YSW($wR$wI_;gdmm zF5%nfwpQuf6m^-haf7_RHT)Wg(k6_qxxC+_ptsv@@`*;G*(&I8Khm2L7! zlyKQDAV496vh5Z$Vwu=>*U1PXq(V#8bfDRuVR@P%cRz{#7i`2myfr>1>$c76{X|J%$obX%fU)5QTEih)Fb^6%`@1lS3o! z(}rocPNHIJ3&*NffO$?mV5PD+w9)9J(`@sMh|<-2Q{uEb8*_Dxr_ppm`Q{lOW@~%F z;>jqB(#hx++WJ5LOCh8Efbn!vZT+%I`VYmNoaZycAynu1coy_7&u~qKRXDt zQt?K^G{Yg~qotxEL=}R7dEC@p?&=O821mfv44j`_;P|$Wh=UBn;B8%Ed?}*Sc_s4k z9pAEu3XXm?J;+<`Y2;^3 zobchAsPt{krQS+>if0y=K3L=bN9osAX}+M2?2b zftho;KFM=*MG$JbrgLMCZ7+0MsxIF9Hu8pzs%Ipz`{lR&eOEm6cWxdE(A{bV zobw-E_~W6mi)Y{3bolJDQ!kW1-}UGN=c{jPKeF$C9-5Gru3nH%Nbek4H*g)gj literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/meta.json new file mode 100644 index 00000000000..d37bcd4637b --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_boxers.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user Sadcmb#0262 (400322885526224926)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/cmo_panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..ab309dc614659b7a21333e6bab56be49d9826627 GIT binary patch literal 421 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sDEfH31!Z9ZwB1}je&$B>G+x3@NWGX*jn|9IbZ+KkN93k7<< zj?UiEzP^H&>zm?CIu>N+`C@TS0DR;66UOIJdov+EoA9K*a?Q@_0GJMGA^%R%*5 z-L&uT4&Hr#H~PLm&^i$KCwf}CKE+^X+PUk&QC610{~bKib}GC!S-Jgs`qVJ7tsCZF z_kMWby7}LNPtw9}kDUum<>ga^TqBRRFg+B!Yd2MN&&HbP|Fbr$O*Y(kW$CQ1%a|rM ztomsgxijW?-JaN#($jmcuevw+ig@qJx*2by>b!qsoT|7yk0VvRdKN##1t9W=cFoEHYD0tX-LOjBp( zmKHx;e?K&#@YvZzp8C4lak(u6{1-oD!M{Dpcr@(u`c*D$!y>#Kyw-mvFf;27er?{^U+Kt2vCcG z#zm4OQ44FJ1jfu;*oRS?q-la=2+D|47S6fHxXd8nH6>W2DBg}r z<#$*{X`{i6J}^`EOG-$c&}jj1@EWjTuxdt}q;Q%oqAAWub7sp!q?sehDAcJ)va6yq zl*VbQh%#~}mZRBQps;5oUgPfwmPF2_1bsXVSoZO5Km`1542`Fe%T&Bd5DG(g#)u22 zlgsg|8t)fDj>Cq*m<_Tlae~MTyw%9#786b30%HI>Kw^D+DlU86QNi!+%d^9J}&GeuQ2aWf3X4PFu zkkKd!6bURwoM!;QX<%Y;-eMtf%IXpr7hrfn1bR2$RPJE0!}wHKNHsPsQ+Rjm$}3Om z+B7hUB*TjW6f+rdqs8RHtrB2xtH~u;T{KBjB0G`L2L)0@XRv!Nkzs%&!Ra-z05|Jg zEVPURhJ_-cnKfIPPFxYzs72!Tu|!6J%a--nDq=1QL229%8tHzH7xk&OVWQs7K*C}_ z%Ux9du5uh(AMyZ5dYd+ns;i1i3-Lic*@kdBsP+ zEFN!pcE0^VZRqID2`i7^zvRri{IkE7hl6K&pIiOQ>bZwrnek^9QRO+M99$S`Y28zG zY7RPYNkQ^ghmxPDUYS&l@Bh5l{^9e*9`pM(PzepakJli_dw6pZZvrz8*@lctL1M7; z&o?#h95rZ7TFQ&zGvha82%85sV8M6i?H<9U-aGH`ShV`cxgn#|n=gIpIo+e=gRvjh zzT7b9!=A{t6_;~-LvpXaxW39er%&w|^5l+-vwodByU&fw~IFa>+^gIcV#rrXBiC`!CyT z?7ux#+IFQm``E&&t3`#GFZ{Cy-@UM`{j+sV>$a{>m^S_Tk-tkn*&(OT*gSja*7EAX zLfyC(Y1rhyF1Rl}KFl=m^P_3t&2Ln3!|UeCy89-K`gRY1N{#J%GuxM58Cc^F zTz&*Rxutyg$JeT-9v-&s6JzP%B({0@nySjaj~w1`=(iDCYweMJj`Q{sZo$an8};^h e*rROy!ayc;F-NON}A@yWoPHi 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 I_RlW=15-h3cSO>pfIiLl(t+)QDo-D zX{Ves_fC}B`}_JmNbW)LoZrtE7k?|``|clf?rEHK t2Vec1+eNeUei!K;IDd@&FvACvOn#x|q3X%gJ{|3Gs@ioJ*$2p(E3jCI`GQ2pvan-RS uTOL<=+`ahL{Cvuv+T5_6MXVp(FR?mF$Y<|Dabz^gYI!c={ zEO)QwsWa=`FGz|Ww#lmQgSJFCiqIHVQksa$${J|mJ{ZsF79@_BXb#UD1Tq&>{Zfr9s)~3e-BrS>}NiihD0E7TWOT?5DAYv2_Gq|9k#I&fX=@Hywlzn=W z=_HWUv=8BEmNsH!;)EhbCgdnd+bGMY6i`*NxM))>lrpX=Bn-hYjF<+((phXYsGGVG z)W@LCzP`r*imlt7wK1xea5!tiFw2{f8<~KNiZ(ngQApN6LvM;Hu)G<`EVR6dN(*C9 zHuacC*F(dZS~@HlXIPsZf38-GsCwKe8nFPnWD`0Glrh7w*!jvIUuB1US#0# zdY7&=S(&xgr>k7m6~uAZsvtXLmA110(yRakit_^pBRYV}$q+Jrk>lxfOpu!Dn1&in z4vl2BRH=y3&iYh_^NWC`RXgArP6iIB2!QwbIG%%uhxc36eAn_YOBwRdK#4Rm-LgOq zWJV!v-sqwsr%=4C_<+oFEMNsovRwKS zz;1Dgejg7YFCrs~U9>y+5nL(Ov_$g$zNA_~s?aRoS~4n@!^W&0JXQUYtXN&`BowQh zp-N6Qtw85c!%NWYi`aDvF*y1u7)GtCtvw>m-)8s-8^4qW6{JJXI3YxK5xx=whIdc$oCbpyZ7t- z=(JUN9k1b=E}SagR^2}E#0NcnM~}|fawGZ2;^Qrcgwk1w-(3@6-zL!g%{XuV?mgJq zaiO``K5S-wa_p&tKiwYq^ULEW!L_xMJahgYI$iM8uJu3YUPt?PD|@ErR;;MMQM%*# z{wq*ks`=_pZsko|b1%{p2dF=AX;hMg|D)PmwkGV*wcykG{)S_L zj*9D_?8@`*$;sWDXmhmZkAL;>?1HVKX{T-yZ{56jiQl~0XsBOydqq9_VNdmj&Z4gl z9`PSo_2cUw{ZpHq*j?aNa&}KVTZe^m_yTNY@{I>hbxfUqdgi0!zm@MCKAHTiVdFao zFIO9%7MJaxoU=VXVNunED}|S)=RS@P7U%sn$6JfdFBxc<-Mi1WrPy>9)PW5M37*x;q|-2TR{%AVg& z01$9as6Bt6zQ5@DP-)4Kw?N#sp|kk*tfE0Kn029J>V-)=q@(B8V-4S1zbBRDOI$k_ Hcwhb(!TuUf literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..b6d2cf85698d7a33519ef7c13bcd86914ef1aa85 GIT binary patch literal 2266 zcmcImPiP!f7~dpdYfZ)0ODri2Q$$7I&YL&?hiqb!O`2dgjp;(89-8-WHbZu2#+gZW z6A)|BgSFI)C(%=(dJypHYCq1bky;P|v1WSCg{}Lrl_u{a#^XBdMe&6r= zzTbP_zB)g5^6;T!hjO{x;n|tuf_O^VeefRfoosCUAs+WeGtVTs+_W6`pAz~7)rUhA0ZN*TF zy0Agg&XdTP(!i0T=3y37$FNk|-?UciS|{n$n()%*yC-l`UXQr4z>{z_rhICR2kD89 zvuHU?!(=(U1Gnza|6<5!*I~38SDWc!RN+-#6WEEcRh#@GcQWQU4dZecRy&oN?|77u zmN%qF&-wui>&asoqxJ$`#3?VxqG}p|*{7^JuBN#NJq`^Q!j@@C2!Y`g_huY2-&^m+ zv{Z6ugCxZP<+H_tEJ)>jpSeu4n9Vf`2Uf5JFRpX2Nf<(PDRdwQL-bZRTSmF_1dX-M>FF> z%~>^*b{ZydrJIn^y(J1Al@r@Bfrl6qs?rg#RYCx?xecKK3C6I+qUzrbOEo==xTOPX zAP*pv{x+4Av#tu0fgEfAhy_uHl#xQ)YcF(p-qX?GZwZnQwsRD=g4z(Q|&oMu2X1YN&q&+F4U|Hi*Xa!x<_meL8#K6d2wo*oH5a@ zbcX{Y!*axt0J!N0C)98Z+uRjnQwyzgVAjqNl$-TO2PhzC!=r-X6RDWdGH^4`2AM@5=o{tDEl*Odp3s!DB_5SNGF1|6cb?W1Rp_9)Q icO2h1f8=H^_sDw>|GM_YU#GKwAG1?)#rG$cF8l)uc-of$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/meta.json new file mode 100644 index 00000000000..d37bcd4637b --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_boxers.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user Sadcmb#0262 (400322885526224926)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/qm_panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..1530a7fb23a6d47b1d0cd3fc7ef3f8e52836a0f7 GIT binary patch literal 342 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 N!PC{xWt~$(699LLf$snS literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..985d1490f034a327b0b47cac7e985f354edb003b GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE#=yYHQtOojqJjEsyw?MCj5u?`l_fB!SH z^Yyg-(vV?j0ssI2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/meta.json new file mode 100644 index 00000000000..ed512d8c8fb --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/Heads/rd_panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user SWG#6421 (481693809806278657)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..9719f69f285936cf661e62529ecaa6933aa9c77d GIT binary patch literal 489 zcmVPx$qe(A{tMWWoRaL2Zo`2}KaU9=crHb&gEK@~M{NlSS z1m8;l2UwQnwQbuEB0=E8Fx-}9xx{Mxzq(rM)!`dscJ)DZcR%Pv;Aq|nLL!7TA0z-h zthN3!#(cig`A4j->(;*Scbgb209WJB#0^sKnMAm1K>#l0rQjj~Qk>x8fdp_VF9jC~ zkm3Xv4%1gmT0;D*>#RCc8QeFx!5+KD1E*?k#m-13@kpL-9 zaPdF_xRjTIiv;*MK`U{(-<<`h>w2};-dv4Woe`k5IIZOgm(D4;75QI&TYB?Oz~fF{ zYkf7wT-;fK&|Uo&!gLRDpijbc9NhQ59J~eCO7bZ8L4cz;6^kbl5KGyk)I|c0;#4f2 fNI)!Qk5cyznHz6G`5Z=e00000NkvXXu0mjfZJy3D literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..cf645025606d0806ccfb78f7f7f3958f32fa0bea GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}jh-%!ArbCx zr*0HHpupjp$m^c4A!S*LfqMaO(S2(vYn5`d`)zJN`_mgwJzU)Wxs}1hff<4{nbW={ z)b9S>YISVFwOe;ytopU++r9T^y8Ibkk{eiDTGE>rUl(JLV`ovj&pZEvWbEr$hmb?3 m8AN}468|IU2Q|dt1EW;8yyC2i7ABx$7(8A5T-G@yGywnv%0>$S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/meta.json new file mode 100644 index 00000000000..a81ac495742 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/black_panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_boxers.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_boxers.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..5ddda90cb47eb55e62584a30223218d3c9dde7e1 GIT binary patch literal 899 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV9d*Ob`Ho)PG(@xm{>Y-xA)-y zkz@61MdL*sWnE;fLIMK>SPQ3c?Fwn%))YEj?VI8fLlw=S7*=uigN`L1O@GM0(AuHJ z(WKO2Vf8!8<$Z>vMYPZ!;~c<{Q0&9dli+B%m7VvBW;Mjx76rMFe5 zM#CoKbi<)=uj^ia)>uS8DnDALWX4%{)p*L1ExFixVy-!bDJMJ21Fkfc_`WLczd-HoHLd&$ za+%NRou0Lg`}yn(UlW$Txw1Y){r3Em2VQG#QCs+!ZI-xqO>_%)r1c1j3A$?$-SQM#pYX7srr_xVN|VdmnZXIq)%9 z#znARl%1PZyiohf{sU*P-nBnsf6#sjpI@Gmleu}O!E6z6Yl{q@!hk#H_D$9{T-#W_ z((OZaz@)gM_j`Y*)THw;GqMOcFkle>CLicY+q`UqeVFJ}_|yu6a8vfs1K)MWeqV=~YBAJ3cUzv!&} z>Xmw)a3+%b;-`mxWQ#5K`EzKi z`ts-Bc1hnh@m+i8^y#9h|Bc>1=W3o(5mEY2Xz6AV47Z}Vzi}07$le-D`3dj;KR?fN zXP)e;q%6iVzFXT~*c@6S)m^k=*I{q}>C3L(D)$YPEYi3Az4zDL-@13UcNh6So%!U$ zPnGh0aw`Lkuf(sum~k^IH+jn8@2{8I%DRfbs+g7ZclV~3IdS&-Yk$?*2VGrIbyNKl zM`+GJ>y`;;+aK&Uy=k}CURpp#r(mJ|@(wt`icCiWquF(fHcTm=^g!9jHK zHTWOsD!3{Lf+C1GI{R8g;<;96k@kk0^W(esJDhw0f7HV6B4noShf$7Y^r*g8ny;`jTMUoQq5C zmfeFxjA z3+J2A^q6>nXG*q2mUc7fV_FopW*ziFNr!*RZz_eR98T=?56qXce>Z zT_pej010qNS#tmY3labT3lag+-G2N4005*(L_t(oM`K_Z1*0J_8UmvsFd71*Auzxp zz(|Vyg2om9`GuvxS~$3c;97rteFtWLeEW>y{n-wZ%w!?O0gC@GFz8Ev!_*=G5xV&1 z7Q=f?S-c`lcxBNf-@JLnaPi_TuqZYfBu^?J$pOfQ!yH47rKCC%u72stZU0Z7z4-s# zyLbOVY>)(q2Ju1SFfp<%7}Yo$0;3@?8UmvsFd70QG6Vp-9YV7DBP?bB0000Y-xA)-y zkz@61MdL*sWnE;fLIMK>SPQ3c?Fwn%))YEj?VI8fLlw=S7*=uigN`L1O@GM0(AuHJ z(WKO2Vf8!8<$Z>vMYPZ!;~c<{Q0&9dli+B%m7VvBW;Mjx76rMFe5 zM#CoKbi<)=uj^ia)>uS8DnDALWX4%{)p*L1ExFixVy-!bDJMJ21Fkfc_`WLczd-HoHLd&$ za+%NRou0Lg`}yn(UlW$Txw1Y){r3Em2VQG#QCs+!ZI-xqO>_%)r1c1j3A$?$-SQMn|}(i(^Pd+}m6Gvkp1P9QY_K z)57N}%cVO_?C8m}N5wN1+&y~muIHTB(jAN6D?H-XxUtfYwNPM=m$&!Pre;k(r|nbj zAN15H+uHN7SI^q^H$R`t>gbm#TW2o){~_hB{e=x5|LiTFWfQ(}a?7u{-C0}zgv38~ zTM%W&@GpJ+oN4N{seRua-!9l|Ufgp`SpNn08zujLCt|NGWMkq`XkfrgG{ifUCI7WP zw5cpMJih&o=D*eJ?`*$o*mtYuQC9Ja?~i>&Uibg%X*lvIIV)J}%4WZ%i_hs5?`oUl zZ=m@3#LULM$IKood`fKl^H+UV)a^9x%k42R4?kGJTF20Kv0N}o=dcYh+!;Jw{an^L HB{Ts5>8)xn literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6d355d60f6b1868246582a36f8524885e01bc326 GIT binary patch literal 583 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=hEVFy>`CI|pPYCo?c;Oe~$a+xu{U z$g%phqVb}RvMw@KA%Ot`tc6p!c7?QWYYLsN_Dyk#p^9cu468W%LC2Dhra$CgXzkGA zXj1C1u=*Y4@@QvR#>8)Jvp+xH{oQ&_4P*V43!nWGm_9AbKE6zO;m;>dD;~BoyfwLa z(!r~I&CDMmO|xEq=9|B2yYs5>x7DHHr;Bb~Ja}EhW?A$$ZJo;kvBkPaqYurk(%Y(2 zqhXVAy5Uf`*LANyYb>H4l^-orGUKefYCL6a!rG>YdqCA6g{!U!ZpPnpXY= zxyr#U5sjf{LQSa~7^E|u1>+=*vt2^Bp#hqatIkOiO9<8rS)MVq! zQ{3>OfBkz2yM49CKK#pJk9@Z9M~le0mz%}^HydbHxn1pRJCMQA11A==GcepcFLn8G TOXy0VQy4s5{an^LB{Ts5Ly!pM literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/meta.json new file mode 100644 index 00000000000..dba5f3c445c --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/blueshield_panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By Adventure Time Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..1bdb12473502f72fc441684832cbee433a329a6a GIT binary patch literal 497 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|Vn? zPZ!6KiaBp*ZR|SaAkp&t0oTEx3-^vG`6n$rFEHPy+PaqczG7?dUZ+zHbIXNqZ0HEj z+0%RU47;LQ*XQ@s-z@v_nYU1f;ZX#`k&O%;$&3QWnH2h19b~v0EW{YV5)P;Ox8Hu7 zY&3I$2A9wB%kTcYEprYHUGZ9K_St9LGZX&hm>o{qc%a7a{keEO@j2(yW7c1P@<)YH z#^zzd&c9!4^$z_%-pqeoPeITpYazuV7c%1+g-`$%+H;^{E{Va=gEolRUTYrnp}KQTIqhjBUWc(y8q;R zcAM>sD)MaPl1-$x9)JDSDtq;t0t=fR`|rQcn8mjKm1pL3)%%Qv4i$+?Th6p+^iQ^U zzjNM||6X~0Mk;(k|!yDXkkF7f&Frku?)rLRx^$~#d&fGLtiGV4Pj@BZCkOxrIQ zy$?Pd-Tk0$fBy4_%O4!r`EQT2KBIHo+dHN|3^}0T`jc_~>RsXwjm*=5ame85>gTe~ HDWM4f`7YcZ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2ad7290b911d4ab8a5363ba9744b6393bba0db54 GIT binary patch literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCikt0(?ST=g*(NY15{=ckh1w{Q3X?|3G0YFX0j(#a0sJ7Yq~uif!J%WIs@Z zv%n*=n1O-s5C}7hYIrpO1-(68978Pp-<~=s)S$rO8Yp+@|No*1M^Yy5TEm*&$P;&| zmuuI4R+hXrLz%~=9)$(Y3Q894GIx{{8p0d@RvU7kh%vtVJzTWpKKm;6-J69S*={^n Q0UFET>FVdQ&MBb@0H%Xa#{d8T literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/meta.json new file mode 100644 index 00000000000..37fab38d6f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/boxers.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/lace_panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/lace_panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..7b981f4da858cb215d1c2d9926a3312d8df8f5a8 GIT binary patch literal 430 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z{XAV9Ln`9l z&NAdXWFX>vSvcg2K#otx%+6qALuEBHKEW%(B1SGw4uO+?c}Lv$=vZ1hC%xWkNo>Kt zmvi3Rb2LajnA6~Pppx;6`U=4d92V*e1PkIAY*|g1q!^#Gm@u8=Ua;KZD#sf0+biYU z3hZR<-`#%8e_0}VN34G6EK}Ys5&KW(m|fyuZE)=O=j`1d%RM;D;;jGIaW7@b6K+tM zqws`PCwTsC7rsQzKWPlAC2QAv3QRk+oUMUDhk>K(j8qmwaTUk=EQThf&23T#=Exn| zE!D8##F~X{2Fu$&tYcHqFv?!Rc;=eTa-o#NO3!JpSsGL|wdZFwh(?OVnj+YD*$?+*IaV32 kX#xf_UuuMBny)W|7Ld&W#2|1fcru9cboFyt=akR{0N@CoSpWb4 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/lace_panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/lace_panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..f801e86643bf501d8c297b8a20a3410c6a09641b GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}C7v#hArbD$ zDG~_>EDn4#?y*WRVR3Ut5DiNN0xp~WJFl;D8Z!O|prfrEv=;UB9BlT_mamNUv5*1g`Dd;9#ZOT{MfCAG#4cP_-b ztbbPgHZ}5G?fv?a>GSqWUSN3;w`S{)**h+M_h6pIP-A^@_s``b6(&0v&U~KJ_t?XK zVovGyvb$56-v2OV{$bv~)wkl_>2=CH1&kj|8X{hI{tKNi#lWZ zO5qD@D^uS4_Z_ngm@@=zK1nf3+?*?SYf6LM6!&!tS$f|1@#lIu@Sjq?{)6Gq-PY;XQ2F+WRSlG5r@TIHp(;!$#)qs6xO&5I8om;I*B!oVm1M#7B} z$-bI<{~7L6-xvNi#CBSr?U4)TKflt?<`ZyQVflRF{O9+XH#nvSXDRNg{2U@4#GSG^ z?akihL8oL>wr;IS7wTl?XAQ32eB#m<@6Fx`*4#`D3>-idQ|qUtsQ!4`IiTzKQX@Rm be0>?TfNTyR27yb#lR=cHtDnm{r-UW|yx&nj literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_black.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_black.rsi/meta.json new file mode 100644 index 00000000000..dba5f3c445c --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_black.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By Adventure Time Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_white.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/monokini_bottom_white.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..fd4c4834c92835c63e0642f737b819a6828a4ae4 GIT binary patch literal 471 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z%ROBjLn`9l z&br9kY{27kn8koC=fJ=C9ERirEFnJ~RxxRAEbdKu`eUU_XKiKqGWpEsQu}uu`~IGz zfiq(cgZqMy3?Eca2tMF2@oP}NP{Hs+`v92ZV8e8K+uX+%_pTj%xA^Cx-`$Kqcw3dc za_@bQoAz|h^PkJC%l@Bb5N+5nbKB3^J8pdUU=Cr}H&mHXnz-ikI{(X0u9coOQs8cI`CvcqZ0EnF$4wYm zLYN!^w!}1ZZg?Z-WG&pVAY&(+aKcU7mNGR4$BRY0Y6mt|bG-FoXj=4C%BLaqyTGlP z3@omvO=mEiey6y_n31DvTDAe>w7bq3=}bkM&*c1`eR2QNroy1;!o_q|n2Dj#LzA`P zl_pbxtmp6Ip8*D50bCss`t!M77VhL|5O4q2?{}&#I5FEtfcXN)x=LQgD{uTbbA22* zPnmvCV9F|6-eRVKX>e_L+_;XWlmeTO~2#cL)?l|Ci;FVvjw2F3NZkO-_n!Fh_BVH%arCcFv*{VFC$=@pFclrS zp09uK(4Ck^38y_bO5C*BbW@?d!QduaPnHaC<3#}pIKj}yz~Hb}>apBeFFBwi_);T0 c(|mmyw18|5AO?X;!IMFhr>mdKI;Vst03$y`2LJ#7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_blue.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_blue.rsi/meta.json new file mode 100644 index 00000000000..dba5f3c445c --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_blue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By Adventure Time Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..5293aa32a705bf44db9aececf033ef65827a0b38 GIT binary patch literal 367 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV3hH6aSW+oe0yslUsHg{u|ge{ zuJsSxlqP!EG^~H1EwR>Z^~LZHqBRUcoi0hAMRioT-tE4~3kH$k$)tVywA`hVJ1U+_zDlrdzg8%ddH46dwZ+$GX0<(eEjj=7?+dnH z6VCEyeVg=rans+0Y2SQ>Lr!1c@F%YOk!pSTb^Fuvt87zmTEw0ySj2DWtTT~Ap@D%3 zKT)rqa4YzF*^V~lKXHH7>fHUdC5_c&PC-s|@ZJF3`|a{qZiG!eef7?P>%S|^g%?!M zlH;sZd|iC%*Om6IV*lM?{t(mtz~asux_+MCnft)t;!BP2O!M_+&;qhKfEWZW1y2T1 Mp00i_>zopr0Oy>CQ2+n{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..2b0063aed8e89437289f176eae39355a3b08e2dc GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ5>FS$kO>FVdQ&MBb@09b}Ro&W#< literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/meta.json new file mode 100644 index 00000000000..dba5f3c445c --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/muns_panties_red.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By Adventure Time Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..d13813a2d27aa0558dabd1765917c3bd94ae742c GIT binary patch literal 439 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|R5G zr;B4q#hkaZ4)!)1h`6w4p1;$`l+nPpV8#-)Z4y9+2E&fa4B5&$ks0RFi)WlZGkMXG zvME0+jS4>eXR;JxC{kf~;=yoYBEtk_Mg?~!hd!1D8BPX}L=#I%?Drq|dh=Q3zvsVf&VSRL#bE#c#4XFSM}-ag9$(%QaJ{rzZ^8TD>PnBF-~PBs=ftL* z_}#PQRSx9pZx;PtIBVJ4UF)g?4Y&VWU8DXq>)+DZ3&h3#`X4`cJs6kmn9iE>fUWbh z=9=uN9gjpZ*a7TYtr%A2iN}mywNanc6OJ6>Xy!fXK&AAWSJwy z&beZhmSkIE@wC|Brnh%2n(_~(-n_?Po}Rtw^R{CX?sM&9|G`*y_|V+x4Qn6nx!QmJ splQt$wTkaw|DW`+WrYRD7p6Lf702fk1^bz#0Aqr|)78&qol`;+05!w5mH+?% literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6b0f4555b326d23abe8faf60917ed99476821b9a GIT binary patch literal 181 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSK$uZf!>a)(=;i6+7!u+B_S`|v0|p$eiM!k0+0R;cF~LLe zNr*mY%m3XrfdN3xbH4TbIeIrf^lhojmp^A}jkVwEo^}trDgC(i(~F6R85m+*mN059 W(^&O1u1^wZDubu1pUXO@geCx=jyyF0 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/meta.json new file mode 100644 index 00000000000..37fab38d6f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties_christmas.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/panties_christmas.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..36092fffd2e375b8335d8dad6867aec238ecf99a GIT binary patch literal 455 zcmV;&0XY7NP)Px$fk{L`RCr$PnlWkvF%(3##1KeIcMI;)BoJ~0pTjrt5quM$!$$}KyGa*tmofo^ z&6+J_T*zL1X|ynC+^+Wj(VO|+LTX&)zozp2I{{DvDkq>3s5}7r6VwQ31S%(>5vV)> z`U+?SGy;_q&0NYn!K7H*rzq^~M8G4=zd#L`<^H6{D2rSyS?&ImfEx*4m@2+0n zyU+iVTkp5#dR8dt{>g&9kg+y?4a)bPJs;iA-^Ar;NCwcyt$l3V{?NI5V_|hTc0I~~ zWB{>3ORYm0Knnl`Rsc{WS?eePtj?iyD*-5ytaX$CR_9Qih;);dZ6t8*ybN&t!^ zYaJzk)j5=IB>+W|wT=?N>Ksb95`ZGfT1N?Bbq=Ll2|$r#t&^RAlrwo0EJW{Y0R3iA zC$%wP(7j9mLYEVI(f*`%j0+MTc<5L@<)VfOfNvh!C?bwA3Gl!}cM^JotR|QN#EN8D xCjcx?mC~sMlp@PgR|#Nos+3M8pcGk_x@SEDn4#?y*WRVR3VY5p8iCH@LI^v0q&f^kzn0{WoEqqXi${mM*e&+v4;j%R0#G z^?o~XW9OrDPZ#`^)!Ox6zwYPx$Z%IT!RCr$Pnn4Z$K@>#G%G%Zy+{Ph@#Bn6TA>76lY^|+GhfXFFwBJ)BsdU*f zGxe+AuWuIJ6EyyrG`@ZqfD_O-0gpiA0q~!oN5CV{I0279;{otnz$4%hXqxAG%mB=vD>`n0(H5VfvFnEcBqQ0x8NlL? zi|<2V)UN`NjckDX9po`y42sGc zPJnXv7~Y)#21R8JCqTJ-4DU_=gQBvA6QJBZhIc1`K~Y)52~h4H!@Co}ps1|j1Sofp z;oS*fP*m1%0+hSQ@a_aKC@O0>0g>*#+YL^?bv4G`EiToI?pTKs@H!WOd=Mgk?*bV6 zki@r|eSg0+Hv}LFrXu}C))fB5+^2g!)qCfyR3{9eB&c@X0Mt6h_Ui<&iK^*20css% f`*i}?MAh^jM(sL5HeH(*00000NkvXXu0mjflkdHh literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..4266982c24076eb56cb8e622233f8776df011428 GIT binary patch literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}ot`d^ArbCx zuWsaRP!M3fQ2)j65fh*D+TO=EGR_+4Jy7{JN3re5u?dHpX4FLO*nNJn!-WdZ$3GJo zxB?oOL>3&_&$6dD`{j2YL%*fQ=W90~U|J&ZnDK##-uHoyV(@hJb6Mw<&;$VD C_)uH` literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/meta.json new file mode 100644 index 00000000000..a81ac495742 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/red_panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/equipped-UNDERWEARB.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/equipped-UNDERWEARB.png new file mode 100644 index 0000000000000000000000000000000000000000..76a7528fa1c535b129ded24ad8eba2e54ca4f09f GIT binary patch literal 545 zcmV++0^a?JP)Px$+et)0RCr$Pn$1eXP!NTu&=&j&l|~Sh;?{*v6Q7}L@d?By5Z8SM^E58p%0)pi z#Zq)rAu_=Pxm3fXO=jSpt_sP`Irp10$zpDg0{`^_-#-BW5)e26v_Rkiz)KJgR_CV`$GzQy)>7r1%g1q4 zXl1Wir5PW^#s7J>q{(C=(ih$AoV$-k&otNUytc>al!^J+DcU$`XT`3#@NVk z*iZJOosxXo=Ei-XtUr#UstEIJ*;v0305(*b*hIW(Qdpaa5^e{MJrQ*epsD$7uH$!t zwC8>O#tGQwMl_!V0GjkIXd?j@s-Wos3DBf(K^qCMPz6m7NPs4N3))D4g(_%zKms)B zThK-VEL1_$0}`M~--0$0V4(_{9*_V{`WCd201H*n^ne6t(zl>3N&ue^@aO-(&kQUs zZ|Qh;BYLJ3!prnJAKhJ5%hvgkoKX;&T?gQ2Qd=0}k+nozx_Q2zJ@7=jTB%n*$7PXK7 ji&g2;6B5uRZHrppvP+dg$=RMH00000NkvXXu0mjf_}%Z} literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ffda0cf60fe901e086d4df88112b1e0d244a0a81 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ydl>XLn7Rh zQzQ}&SRD9f++&qs!s6zPAR3kk{P^|uaDBwrvsEt{56|BDTGC|_vt-?C%>&t`d3ubK z&Zu~Pe0;or`=?L#$qA`}-<|T^|NJX1zWuyEh-cHLP4|{;G4v>6IFm5JIU+K0PsL9Q zNxS-A=RW-YK0kL!6pwMY4ts-1vy7t3nb%+6y-nYw%RbY28?y&zT1}R_tbr8MVnqn? cK#_sLHe5sTO7_27KzB2Ey85}Sb4q9e07UU!=Kufz literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/meta.json new file mode 100644 index 00000000000..a81ac495742 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Bottom/whitecomfy_panties.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEARB", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e884d54256b1e245bcf0254d3e442382b4f731 GIT binary patch literal 496 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zS9!WPhE&A8 zo#mK!$UwkVcx7x@NXo%u-7yW^UmNxch@Ut#TPH|#;}W5(3JwBEk2daeRQ|7%d%XV7 zv;MssUa$JFUa#h_DB}gjR^bFrkvxXHCLP9U4i8x(m|CS9mNR%as0LVo1lS&EF3@9q z9`k;0eD7T0EO+ZQxwrSdwwkd|%HgufUjv?U#+F+b87}-{S#Vasih2FDaLa_9KVGb7 z{&(|TSa9ww*Q0&s7p`Y|Aol+L^n}-kZ~gzb_U`lB%dD=0<=QEf@ zo|xDe{`xZGM#&u~_x%yM!MsHKxZMPA`%{eNkBk{E2o$|K&NyLi-J{)em>Ty*l%MUj zo@X-i%VLHztQkA!Gw7uA3tG!IEXb(jvpP`pOrD4fEe8 z7iY}!XL7@P`~L=08Q)EP;vjP9!^b%dLV`++bH2=2pT`ws>nY~Kq$0leE;FM70}~Kk a<+RBUs8F1CPR9i3Rt8U3KbLh*2~7Z7DpZ{S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/meta.json new file mode 100644 index 00000000000..ece75de4ae2 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/black_stockings.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-SOCKS", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/equipped-SOCKS-furry.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/equipped-SOCKS-furry.png new file mode 100644 index 0000000000000000000000000000000000000000..7a67cc3ec44f9f9941197ef13a92b99e961eaaf1 GIT binary patch literal 826 zcmV-A1I7G_P)Px%+DSw~RCr$Pn$1hxKp4hnSuuWrb}tHAh1T}wsq|LpMLl>B6!ed*2cd^v>ZQ8Urhg8cw{i7xoDkzHe+m099C$@HDf><-K;h>&F8kKg;uGjWre2>hoOc>jU{umS=n zz)K)-0k8@365u5eI00S)feV0l0bT;U1Og{OS^}?D-n5T?d><)draNDibrwI(@)y>u zJFm)50)PN$a;DJ`(~X&4yk>kMF5*~}!KvE3{5+bRR^)F!-r$SwERM}lBAYg-K4Go*v?M| z00p4gf4~1?PwoPkeLmlXGAISu%ufbjdjgc@fhAx&KN$ckAY>1KT-UdE)9Y62P8wcb zma5%>B5~cd?>06&@S42g=JVtD*H0hox;Xjsq$Pk4qKJOCmqk#MQwqhk*lLTKlyIm+ zAOjfYjSzAJgzBHJvU6pi$pENR^Zj}T;QNGJ*T)KQP1yJNtN`C9xEZ_B}o;!1oEcu8$Sqny~NjD=A=54@Ao#R;_^qK$UEDYd1xK&G?0bB0K>8dpt0l-6uxy6Ng zG#ZKIHW97M>yFF!0#v~8G-_;WqF2M&uRk4=x73UQEG@sRqj^Bcw!onP$hN{>4X4LH z2Md4|zzPW11K_^66_p;)e>-Z+<#lmz8=mtaqut2J1m!k}zr)%BB^(T+N*%@kkaUPx%_DMuRRCr$Pn$K(0KorMkSuynowC<&XKMGpCd6M2NUg|}mr3d>*)*hyDD6b<2pVWz+KsaEe+|a?_C3M9iI%qbqA<`T*oH^s4}{y4Y1?^S|c`%PXYk? zFu%=>XJx2B<{4LSTvR3x-b~xxuxbW8NOSpO9O z+y>`D40I1&XaowSK9Cs$FzH~3*D!z(yW%q^R)A01A;w|_gxD3IIk5tK(he~eD{ljwKaK`Xz89bahApwF%NK_^9DLr_ZkW`;HU=;^f4hz10YNT-{{(U^?yT;uum9 z_jcA!KW0OLHrb{d1s)Dk6LzSq>*ET%e1JLNfV0y<<_T?5ffoxsV}wk&Ct7UMP^=J> zY3(gHf4sFUQ>PcGyde~Kaz|K_&&^G=xun;>!9YL?4bO>l2MBB zymUhukODF|7q}&)=I*U5EVG(%Oy_-7;I*2+X4n0DE#L3*k!NKPYfw>N6>1hY_r;oU z{`ec-5}R}^TqldqZ&x|4`s=HFZHe6r{+ygVbN{~ns$B|iOJh5`OG{oaW?b`$YmT?a z^1bV%8}e#R819N5V7j!npKU@~$uiyzrTwmt>oEbE){?1!>-$xmIy9;DRT9F zHcN`qqkHi+<^r2DnVLNR?qhJ6WVBgmx5F*do`b1-uP>>KXDCs9^vH_kz|mDVdOEER zsO5@pUBMi)rt9pC70fx8$^yHsa7wKXV82nNFpG6v29E}V(Z;oN_nNUp@X!BQe4&Affuw%4^_~BdnZ-D`8cup8C?rlk6D7^6;2n`3P-#$dtdWVK@#Fjz4;eES zZaeM0Vg73)j!ic{U2|ggaM}?0GsWocEv=J>tGpOkSPX0pmZZ2p3A|n^J4sKfS%{$` zz|ht{ny-yXtk!MK$6xo1D)k)Lc;<8*dmw15woQf@FGsC^g~QqhpB>?8GHJ-_B#w^M2-&T~&cICrP;akmU^C!@-J z%tvRl*so8x&QhPRbn4ISfYsHrgKl;id}lqmnQ2ecT#1k^`x$Kx?~PY{cjy!_jq{~O dc&7RKGH3zW96$^Lmx3pQC{I^Emvv4FO#lM(O-cX& literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..059050222aea6d76212da4df1930bc7df5e39a49 GIT binary patch literal 405 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^TEDn4#?y*WRVR3T?5^Z4|H>!UBZ=X8HeqYUD4HwIb9S@S)x96#xDt6Iin#r~4 z&(p=~F4ONkDl+0ZV$qbrKI7KzfA+Nn=2x!@=PsDF?qmIg^$rZt9}YLMiSaJDu&eZ^ zj^k%eEeF2h3CbP4%t<=zGhHV!CroR;#JugtQPsZl7gekoW{Ca!z|Cp!CUXBQ*1HMQ z4_vU9zh9fcuuPQ4GNw=AG~=5)b9!Xny!kJGZ|CuX-=8AILSrA>f70^ev9J4=^5^GQ zYmJSUt}!kUV2J$o>Eq@92J9WDy_#iBrI-#|vp85XOkvn*VKHOh-ya|Or#(n`w7|q6 z%SpvbJYn;b!@J8r#3(4J9AP*uy9DH$hD}o2_VAo$-SLED>KqsAh6#>OPW6KVhs}nC rK||}JVpMi?7ceyWQX@Rme0>?TfNTyR27yb#lR=cHtDnm{r-UW|ZGNEB literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/meta.json new file mode 100644 index 00000000000..946708c4de7 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/lace_socks_thigh.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + }, + { + "name": "equipped-SOCKS-reptilian", + "directions": 4 + }, + { + "name": "equipped-SOCKS-furry", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..9c9de33f258fdecd1745e84ae53d8ad11bac687e GIT binary patch literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zH+Z@@hE&A8 zowc#>umO*&=J&iiOHT<&9^lRpIRD_5amoap2aJ1Mw8|w9etPI<@wsA3{{jaN%YRdN z*7DobIIxg;W^6%rn%A# z`HY3!GUdB(fBpEwYwqTfb#D!FYZ)eldF*D2e%&qOaPl}~u=bO4OFXCE^WR#u|Mb@9 zyPyBhW{_ePV6_1(MEez`JKTw3mU zEWh#2|1At#uIMu@nA&mtIYYzoRT0Nn*ds1|Tfxd+v8F54r=USKw?C?Y1c^|-6K`KG zt^T>yGwUb=gXz=FzUFR&uYfFVaxjEE-z*?dOBU&ee0J0v<)vDm8PU@1V$u- Mr>mdKI;Vst0MEDn4#?y*WRVR3VAcp|VNJ!w|uhx_|WzP#!7o)cguU&`RA$iS8MM1j?n)y&Z8 zV4sft78!%q#zf;yuZtxlYBqLW)M0UxHCUk7kY}keZ{t$N85SE~HmrzgI9pW1r*Krz x`7q-VHg(Ha9bAk>JZfR*S1`LdgKYy6494Crim9E#Vn8=Bc)I$ztaD0e0sw(hLQ4Pu literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/meta.json new file mode 100644 index 00000000000..ece75de4ae2 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/red_stockings.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-SOCKS", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..f13a0500c1c158c4f74ae52a3ffbf074b9186118 GIT binary patch literal 499 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9Gmi6G3l!hU%s0|Vny zPZ!6KiaBp@8Rj(wNU(pf_kFJCE6jJm%}dIn$yxtFg42wGFANU^zbMRjz<5h!`#Pz` ziH{jnjveLR!^g(dq{)Af@9%%Hr%#{O%IjPGwQuM^0{_@u(>^a>)bZ%^ZUL{mQR2OK zSMR%$rs%SA#v%=`yR**BtdITgnD+V3d?nwcC7wL_HjE4vk3IL9eP3>L-1GI~y2sod zha4={@rGVzWH_(yztlhU^1~fwiwp$9`FA!7I9aTldtK|=`KqFr-Ji67`Yr~k=4n%A zaF}%@z*KfwDg%Sh>4sG=Jtj*q7)bP4?QhZGaVguk>SctkxP_b_L&M{TEmw;s#yibA z67*GmcFwIeex7r73(t|;wW=l}fmL+`7D3la#qsLnJ0~P&zXL` zSr~e`lrv|3F=Oqw3mP(ew?yeJ*uVGL`HyAypUs$Ea<%zNgG<`xdru2Z3i^(u&%1v* z#$oQv=g$jm3;NF7R=c!TZ-L%qbKS+;A9gI#;AzQ}++n7#u=;8|gGTzNnboPEkIrOS eV5P6{m|aNXL6p3$^>1J-GI+ZBxvXR2FEcw%gq%-#c1UH;G0tDx-0olNXcAx$V12lE`mxTF7MoeS zY!*M?y&;F4VZ*&OZp%}xKh%i3&inXug1=~`+oU(Mx?+PTsn49+ oC|9-nuh`e6HK#!K)xTwX7M!g4^wq@8Krb+Oy85}Sb4q9e0L5ElTL1t6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/meta.json new file mode 100644 index 00000000000..4d1063c16c7 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_beige.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:dion_clawed", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..8a2566ec1739ae30092854cb7f9ba5ed9d345cbd GIT binary patch literal 423 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9Gmi6G3l!hU%s0|R5E zr;B4q#hkad9Q_Uj2(Uf)@4JUd`bN;BHti`z?D`H%YQ;Zr%uri2(U6NF@TJbpIdg;eSw4A~ zDDd*eYzBsXcJ>eA^$3I`k(GSjMc$ca|6^CowHY|y$jf@aRSL<0f`QymHFM>IA0~ghkTET8-brTL zGf(~3wtMely!2#g=B%U%&!=uqe#`nM=)BYu%Vn9j!vCE2*|$ghL3`ozYR3B1--$6d zLo+r{zVL#L;q}ZvNn(e(5=^%H+F!nrk(cPYA!Fy{54@)%olPdJwfYSVc?M5cKbLh* G2~7YL^13Gg literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..698220ae9054afa4b44fc20588352226c2a22272 GIT binary patch literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJWu7jMArY-_FKy&)cHm*Xkl)X! zo5;hm`+y;*sK=L^Pj;P|xTNf$kiD;iqgSDaXXBIbfB7%hOlEvOr}&-EA`bCTy;VF) zEDawf9xX3xk&!(2>cFEQCWd+a)^EzD=HI-iI_d9Y_DK`($VG)@rm-*>-+ro6zu)Dm z@0nKzLPZj<`o`?m*i;%RyG^fk8K2m6p~}n2VMj0Y?as?^KeOt@Y`NFA7C?)Ze`IRC Xob}|Lm-9rRiy1s!{an^LB{Ts5=m1;V literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/meta.json new file mode 100644 index 00000000000..4d1063c16c7 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:dion_clawed", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blueshield.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blueshield.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..95a1c207e4ae494800b005db593873265fa17df8 GIT binary patch literal 1017 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV9d#Mb`Ho)PG(@xm{>Y-xA)-y zkz@7S_N}#e@gV!ff=3G!xE^VUmISs(9lSninZBZ@^CYE5T01O6WL(7KoBubiYg*l; zpwZMZd-r-*FPrNeq8Fv}&h@{)_rBm0tJCDRyj@clCq&H?p5Nj6{F(S7Q~xU$-CFoo zncm&HJnfk9pWXNJR|I_B760|u|9kUSD^4vdU9mz`?pp3~;c1yOVm{^^oqb5R%Fmng zJ@794@CEJ#JH)k!b^-R3E(1&ea|H4AKS?d?n8J>9cd(Pr$k2NRtceTuoeKGO3 zulM|4uQJ$QK4Y!`20v$kM`SSr1K$x4W}K?cC(XdXWbEnU7*Y}Uc9yNTv!O`ad0oD` z(2ZdSySz4*332IKy;^qZXyDQKh0Q;Nj~qOC^6tTlu4`rovv0hxwa)PWdQe0{p`o-UG^0VE3ul}@66JO-!pK|xjyRU)S?d|i5 zBu~k#*L6=B*U;ySO0md@J&5%Y7SH2f1RmIoIYMFDCe7zd~m|Heco>X`cr8yBqJpQ0DXM?QBkhkD&jmTx zGWzlS44qNxy1ya#P5AvK_t=iIe%qdA&vAbJu_F`O`nO+S)=`?xD{Zx?{uxWbN2_-t zx(r+Mzv{%i7Qb+l^{V9}^@q0Xvhht*>>Ydzp7)0RW%$!?%a}81#ddv%D^EYBA1(H? z@_o&h&@2+!^l{JfRgvG=RwP8+fBk~HK&xXfliq0&)vVi=nOn?j^7RiKN&dGBn5Gy! MUHx3vIVCg!0C{Q6%>V!Z literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blueshield.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_blueshield.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..370a60d089f4366b6baef2cbca821f7e1a147cf2 GIT binary patch literal 714 zcmV;*0yX`KP)FI! z|ADT8tAZdXf{2^DuSH5c*9aBS8*a{z@80il@&!VZhHko*qhMN|6Q77h=jIopHBZ#h zMuZNkHQlwRX2uizyWVf8Q1!ZB_4@zbpQ|C2c6F$z6&}`Y#}k%mm|XE}#hbz{dQM9T z?+f=iGNAB<(vtx{D$WM{s@O@y#~`G7MzcRS`GfVGV+!{QcbP^(|DH#ENhEE}&PZ*S z-HA(_31UP^QeYVakAA6^WcIgj;LA5nUOc+IZB}u_ktHYIK2ZzOH7zwGdRiWXRh9ei zJl)LDV9-4hgQ^GLf9ZyrEhrUz|Kq^-ONS7?hcm0}&r41tZ=x5=TGt*lt;5NASxaui z=?1jk*_xw$NnzQcOa`8hp>ZCXub_T0$m;u?qgzO<$uGKuon7dW`%O!q`s!#0>E;7? z00009a7bBm000ie000ie0hKEb8vpF6XAut*OqaiRF0;3@?8Uh0x z0*s{CFJ<5LpHE1N;m6l^3?JV+7q5W9;I^TMTdBykdCt=p3V*oY8*~5itg2xpU`s5bZH0V$uM}5_HS|C`N#_f@qLq zK#l?dkUEfhV$21pVIfB0XHhqX;~#V&O6AQM{_s9y`2OV`m=B^kfsXhFOq|C*K$LtI w~6@vd$@?2>=kdfO7x< literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1af16ad3c441516fa73f922bb1e6934ccf450ede GIT binary patch literal 179 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}xt=bLArY-_ zFKpy&aNucu7{5UvPcpkuuf1TowBwaTJ|EHB&H;XF1d!sH#AbSf@bZV$2i5P^?%zH&G}M4F1tuuN*&`#S?77bOi4*e bsE}#rwd!yO literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/meta.json new file mode 100644 index 00000000000..b8bd4faa33d --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyblue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..383b6495243832654e565a8df7d1dcdea312e49f GIT binary patch literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|j(WN{hE&XX zd+Q+Q5e0$PhvGMk-kg|rXH&0{MB4n5m@{<))!v{7^%PTjKOB_ zy4=0r-}s+jR(oGHHh+J5?v(iF%rGMvegvob)|JIOyq0$RqGq#d@%5}vm*(ti2>WNK z_nS5BNqF`rZ7Y|)H&O2{zghRMAt-Y4^lMk2x~JDOu1GTIyUcfP4#*@=S3j3^P6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..93ac38b1340427a67893337cd5cf4ef37d418895 GIT binary patch literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}$(}BbArY-_ zFKpyJV8G#WF<&#eLOJYH)R}`qaZO!YJSTQ6*%!{_w2N6#Q1GXMl9sWyv9{8y%x_0u z$jypmJY>qx$i?!)IPuF&BLQc7Iy-sqJk4ObSc-u0zopr0HNPKPXGV_ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/meta.json new file mode 100644 index 00000000000..b8bd4faa33d --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfygrey.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..0415cd9ec806febd09ff5fddccfbe1ebd8c25068 GIT binary patch literal 290 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|?s&R5hE&XX zd&`ik*+AmxNA(ho9be^I&+YZef2g=;vU`Bmyv280(!A6i?USU}2rl`5U#0U&=dN0R zCZJ|0Sez&Qe$MA}mhszr=SSZTt`nk|9Q#1FVdQ&MBb@08+hr<^TWy literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..198082ef5e95162a4eccbb4089c0fcc5c88e8225 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}g`O^sArY-_ zFKpy&NZ@I?=)XbW%^l|rWs=(qILeDyj>>=EAnYR=tve;7cD;|&13niQmnY4dXYbP0l+XkKgkM9p literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/meta.json new file mode 100644 index 00000000000..b8bd4faa33d --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyred.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..68d786e94b3f52ead679acdf5be03f1086ab013a GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|9(cMqhE&XX zdutZNV@GwSv&-a7X@^fAvx^rvdr_DE{S1;n66!I+H^U~we@Y~lTLroI*sCnkb zyU(xg`13LP-#6Bvzno@=cfM1u&$9paCisl+_0ztWe82hXzs*gxjMw^{zNrRgIs-%f zsdG<)zcW3Xm)Mvi03H4cmE{<37kRPgg&ebxsLQ0O-+s@Bjb+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d8fb08f50e3a305eabddbce27ebf2d4e8cff3f2b GIT binary patch literal 185 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL|>AJY5_^B3j>G z*vQ$Cz|(Tke}jO`A<;Flhht?9T#A)BD9G|(P{zq1G{-ey@z=dZoQ>83f`SwIgJ#`5 zbLWiB(wpzo;!`dj-XOkumJYD@<);T3K0RV?|LsI|% literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/meta.json new file mode 100644 index 00000000000..b8bd4faa33d --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_comfyviolet.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..9bd481bb02eb9ccc7c40387c819a812853f920a2 GIT binary patch literal 315 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9Gmi6G3l!hU%sQ1Gp% zi(^Q|oVT|w<~BPBv^&B=4uzMhx0cI~gVl4XCHCYAW^(F@6mom>}NAGG`0`tQ~0 zFpC%t1e*3vx@KIt@_n4cd7d}yTlSa~sXtIQ);WH0`_YQ3lE1U(zC8NNH+RkB7rW*J zF^I=HwTIUnM=?d|bI&&3f>&n=x~b2!Q~@AUS2fjM4` zY?qhcRaqyuzk&D0?|BEc>~c?P-h2@JDI+#?-u=YYd;djFws=z+>+a%mri7W@Th;mS T%IO<{b~AXo`njxgN@xNAKkY&5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/meta.json new file mode 100644 index 00000000000..4d1063c16c7 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:dion_clawed", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..9eb9bb295f30fa709575c271f1c02485a2099b61 GIT binary patch literal 759 zcmVPx%u}MThRCr$Pnn6fZQ51&H(-Fa-EE~chv4seZmVyLH3k6q(v`$joxTuW_T`1x* z!WOoejV;>9B;#5lSAs4?L4>p#L0l-xh>VsA3enh=Gw?)SZ)DEZ^WbvNY+THE&VT>& zo%a^^cfj(GWBK_(3=je=cR*IaascEZC@UZ2z9ctS8~e@*?!~4v=b6{O9OT5?k3(r%K8T zpnFQe-QLdZVNuk6>=TSXci?3AA8aMQlWI~7;OI{hJ5u#fRouwHP_z&Z*AL z@xCgpE`_(rQ`kNZ!QjR>Qca2h9Q{dR-3biO{5?OcE9y;aQD6jIXMd6b9g(Q2FDZoC zS7or3`Uz|ASDl)^N2)S%2U%%`lDd(V2xyKJ``a8w%Z}VXHc&G_zar#QKz02JY!vP%c&{-Xhx_3_h{4_Rab@+oT4Z^QtTrp2LE2;gwlq?$s2Nz>xcDg@IN(Jo<^uX3ykreV_?d(nMmHz2Sp~ciY8~v> z(x7Dk-okt-KZ2lg0e%K}vjWd{Z))94YZ-vI#IKi}>_ue|xd1-{yf@WjkCj$BMauvr z;OmPJ1eFW$Gr*e_Xqe0h0Xq4lD-*z-3-Fu1UsfSd0#Fnph=1`-z?}=o^{RBU3i!S5 p)w~t~uArcD0l5s&%>-PmcLohQyigk8e@*}Z002ovPDHLkV1j4uQIP-u literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0cb91206322132294151a2e9f901f9afdb3afb83 GIT binary patch literal 385 zcmV-{0e=38P)Px$J4r-AR9Hu2WEfz;IKcKZj5=U61V%$(Gz3ONfaDOEGpX~xwy_0+ikcRKsHiAh z|LfPU|KGWFjp6Fq6AUSN&As?yppG%U7A%4?;29dlNuw@`ey_vLxVWA%* z!?)-E7#=RaLbSO=D}*_qLq+$$EcYLVDlKM)54S!rd_4Pvk>6P6zkr$mL)*2#43EFE zFjU;ROtiT~D?|^0n!Uf_mcbm=;>=3>5Qvo0`mfK$%y1w>nBn2GcMRA2E-`8r>HU|N z5@K+e@s{D@x4#U_pIsx`V?-+)6d_aDG3l{E?Eu$S%&UQSm=-v|71IWn(aukLSWPZqaiRF f0;3@?tU>?)!{Ln~-I@M)00000NkvXXu0mjfp+cw> literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/meta.json new file mode 100644 index 00000000000..6eb8279c0e6 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_fingerless_stripped.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_gnome.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_gnome.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..0ef7af27cbb36f60af3811c67dc4b56bd62cf426 GIT binary patch literal 402 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9Gmi6G3l!hU%s0|TRr zr;B4q#hkad4D*^D1X>@uPZ26NxznJh?vbjwl)quU_{C-Ji<~lbFaBg%cJthq*M}N6 zFh)8=EYbLXeT^fxanHh86M;rUzz2JlVzb*eThATMk2EOD>pilq>;D$Fr23m{n650F zxX7W4X>Wav*QMIOR^hXcc~7!??622wHdtDH_q&S!zaFibB%;3iVD>JtYAe6)daH9? z_A438{MRadzudL>LZo%zhAP3jd+Y7uL#IqtS*f9Y_4(_=fBS9xZ-&fv+j!_*xpc&? z{Y`K8Ul2QddU?Vdg|gKe+HapegE@_XVTah)PsgkB?VdB$JUdWxU{d$5+F!cQfSe7d zqy^NiV>dNV-`QX|{mp|jTz`%&ViHMJmHb}$SmTSC%*FK2SNNhH9OH|67VJBVU*ht7 o?u^{4v)B77&wT%QDZjp_c~Irl;O%{P(?Pa*y85}Sb4q9e0L%`pVgLXD literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_gnome.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_gnome.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..39520e413ffd5cac21a578151d770c0314a4152f GIT binary patch literal 215 zcmV;|04V>7P)VjGxr?1P{HWE{(-4Q`%UZ0hTLt28y7dGIj_(- zc<2C=5VOwtl*j+CGwAD|F{lhN76KX%0rw8)oJbS?;rjRIr=Pa3qh>2@3_m*Gf8vdL zvlR@Hb50k_R<2w8Vvfh8Ma4mDQw#G{J!gNc7C*pJmsqy?Rprh|vvreF%2u~0TTMNj zd0+eA!!7b6`@-uzPciAAl(yU#ck8^At>x*pe&r#J%3c3w_S?yrxR{I_0swZpt)?^zF^!4Pm@|Ae{0F&^{Y&-1;sdP?uyziG|ar|93WyuSDPwVf(g zuYFB__fDL9zIDCCqj$B;NB6DYH*xl9dA8#poL>ER$ek;H?a$OdyMw#ty$Qa?vR8Nd zCbbp0&2gu^CT%$-o^^Y{@lVdzSR#eDoRgbm_a*8xBh1zY=?Ny@{mmy&KKtZeCGjl# zl$=@W)8KckJ(hPwZ%hdd;#c==KfdNutIErp`&DZDHw51=)hqvQ!Pxh6a+mpoOVy0Y neQ&wW6fr-War*xj?FmWTS2LPtKAXw36=Z>@tDnm{r-UW|)UKH< literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_heart.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_heart.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d3a9208f91bbc8006703357ccbe8415b546e8ebf GIT binary patch literal 508 zcmVE9Rj7(KPD7k+lF`ybv82!#n+Mzy~((?Z#RLB9L(gA>zX!G^zgVwRh68U!SXqu1MA>*IFs y%f~#^+u_j1=e-`c7q18g=Vc)9*0$V?YXbAq#cj0d?%Y#>U}OTVG4x*1CTt?YaDOn>kB%E_$KmnKjG%{f($?=k7n{v+$`k=rdOL z3@n*c690CWo%|z<;`7OqLaskQ`TlQbP5spNeFvnh51wCf>XGXH*Z;1R`&%(jGMPT* zbo|SW)!vfl!*>+JtYl#Le`Niob+MxFW*-)s`ZDq_CZRelJJe~YfIl0&HFQh@rqU3 ye_qSHpKBZIXK~zhuoqcSaPQ0Y*+8RQY8d9!c2>#lyVVbL4uhwwpUXO@geCwk8-ltQ#Y*p}m!l@Jxvjs0RY_&*nLAPw)g+H18J13VvZllmC9^>dI*YD-aR$rDBNS?CfRa|s+`Lx}i;TC<^eyZ!u z)zF96WX`SddB02E;C0mG_?gWm!M-1+haFgGRkc=4KekwZ!Bl(u>EBtao`h$Avd!x_ pb93vRcj*mZe*FsCZ(C9JO_<$z)tZyn-?)Mt@9FC2vd$@?2>_iBgc1M% literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfygrey.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfygrey.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..52c4cf9a124a8ab5412aa5c9114c40240cfb1987 GIT binary patch literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}g`O^sArY-_ zFCFAOV8Fq8A^wHL%@b2&PFuz(c~@+@zRl#INYU^2E0lf+H*|DlH11A!NpV@S`}vA( zk76XlLbqIFVA%UTF?Y5sr_5DHK~IMM?6YqKCf2AYq&?lM`dvGn^N;7EFYFt`+wPq zzE6>UkDl6c0u6+KA4lKE7;H{RJNQ1vqt|z8e%jv8^MBp>^YPod!=JlVUVi?qZ5ejz z%Fm*GmhZQG_Vwts4f?0^{n*(WL6ywPjkjN4uG=Hn@mvv4FO#ov7p(+3X literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..163bf909ddac239e2ffc88d0a1a3204c6bb0be5b GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}eV#6kArY-_ zFKy&(aS&j=pfACZ_DxYj{(5(KtLu%4jjC&QMI2R4JLGGUw&>8QH3c{8AKp)V$j>Yw zDCqiOaj;;ZV4%GfZ>r&?84ut6J!r1Yz;HRAGp+vdpAFkf>n;R{DR1Q4R=JWPK=zi| z>p5F0S6)qJK5I4mzp3T6J+}``_MMTpp#JKM!o2)SWhEu0Zr*t}JHISmS#b^MG6qjq KKbLh*2~7Yo2vbx5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/meta.json new file mode 100644 index 00000000000..b8bd4faa33d --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyred.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..383ef063a31c211aa795f1ab444e917420de0f9f GIT binary patch literal 355 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zWj$RSLn`LH zy>&46kb%gtkNlm?Le3kQo_FcqXl1n6#I2mtqVbhOc7gkneUmLOc&yy0$hlGZ%K!Hw zmVtJs{c0-xnSdrjz`GsGzNI}oduI2tZ!0(M{B$;_;9t>+!^dNno_!TP>C4y8Gi6Sv zzN@jkev|S0Zsv&_%TL9BsV&%VSLu0c&9+H-t84eki2eS0vi!Kp%Nolsb?>8}l!yPk z$oJ%z&>^1Zuk3$r{9Swh?rR>4x{yg)t=fOz+zXlaeDxhmnC%P=|5espe*TWz<7{Hr zy%xv6jB6K}{$wwnkhY4m&GhG;TE>-@J{M;jtm>0nebT$~7gNyBx1~4q1C;EeChK2R vyp(pl=y+PcHFMLfJt6Ppd8%3C&hBGU*}jEmsnfg*AWJ-5{an^LB{Ts5u)Ckf literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..80e7fc2a4f6a11d00da29fe3c587260c483cba5f GIT binary patch literal 217 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}lRaG=Ln2z= zUfRfe$Uva=p}mmn5}t{oD+Hrcrt?fN+MUAEFTmP=fMLqS9j`PNY!Kiy6T18R)bq(p z%dG?i1vLex-#mNf?3u?#zr(^F1sK`PVa}~(eo(bPC#_yM`I6Z_vk!{eflv9$&c0yC zt!0^)yL{{VU1?uTm}gwG`+Z+0^YmWcKbtz&NK5!Ja_lkx`%O(rNy$>K`gzx~YcId- Q2Re_z)78&qol`;+0C|j5W&i*H literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/meta.json new file mode 100644 index 00000000000..b8bd4faa33d --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_kneecomfyviolet.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..05478dcacdedfcbe17135840ed085c8c506c6930 GIT binary patch literal 692 zcmV;l0!#ggP)Px%Zb?KzRCt{2+A(MoQ5XmCe?-h0EUg-nViPDqgwS?zOAzd&gAlrOF(M)k83ds= zRWU>z1cwYFBB_g;(7{d-q_??*5D*E4B$9^ct5~vLhCY{EsG1A+UUH|y|F6O z6JXqWi*P?^uhWLr1>^qKp!xt%b?F4Sm9NyPqg@!*0k^vEX1>xr;Aj^_ztW;m#fjig z0Pc0)&3v8!rwdEzqHN?00QSGZgZ{eZ&Fd2{f?N5H3Xp&BR3@^kc=q@?u3TNl;kO>< zF#~J^^S3YH5J2zD6y9%@aQEdMTp0KmlaiHL}Zh=_=Yh=_>#+?)yUB3J3% zpvB9XfKi6c3#jg)_42^0nSfF3<^@#u(K-QM%><0R2Ag>SPgE;qDTI(h2x*$8Twlw2 zeh*k*%SzKU2iH-pl(nuw>jeDyPJX}L)Y)b%`{m})c>z^g1vr(7<77WL5=da@VIBCO zm9K4PX%2};tFZ0^z0MS{slLzH_kaTcNfE^posGtj6j2PD7f_{D0K1uhudOCtzj@{A z)8NLnoAT`J9PH*5RB07p_r)gwz_IBFQkfMrat2bV6@1)r|97w$U&O`ar9oz^U|@HQ aC%`X1JIPM{Q2TEH0000Px$FiAu~R9J=Wl(9>fmcRr6S=yB0_kd?LEHy-tYT;KYpOmXfztlt`K^G2)#i3 zR`Z>G6|rOI3B5oJU&jD6pM0ZpaV-E!hbK68o=GxQDTyH~Tr3u1KA&&SFUgeC@|iK{ z$KuG&Z|*J2!Zc0ky3z?mSNAySLz866I)&)wapN9f@K*`I*A#wAK-E1c&cNpsW~tLz zXTX8|2B^D-T}mMI0x`agfbBEzp6br;E~T5;lM(r?wy1XN^fEC^H_NJ)qu8hbP;69K z)p9J|EWJ!jwOhw;wWW7~RHwuKNQj3KhFjpd6R~X%95<`1b)|Aa=_@oEjppC@0AlTs UxoHN$$p8QV07*qoM6N<$f=mvmlK=n! literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/meta.json new file mode 100644 index 00000000000..79981322bf0 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_liexer.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Unknown author from Adventure Time SS14 server", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..b590b4cdc756c0065cbcc2d4ce505bcc199e2c59 GIT binary patch literal 517 zcmV+g0{Z=lP)Px$zez+vRCt{2+OckeKo|$`Kdosuu4(!Lb*h%Qva&aQ6raW?X__v+0V}zJliiqv zXt$c0>(D@yfaTz*A^v}h`g!5|{5a0x4j>{TA|fIpA|fIpDz!@2s`$Pv)~EazW=iX? zfzDttU*=sF^JQhMPqb!$H=80!QY1+VZ#J!rb!od(YP(bFuUK7{&fwxRc6WPYmBpGA za;p5=Yk-szQp!JLeWBH@?M|uB%?1Eq3xTUk%PNbRFZ0(bU8}6oj^pGrpcvD+X6+de z$WSe!2(}Qgg}@?;006~UAj3}n3IiFcIF9qrwh#xe01(HqcK%x33S_A6heLcU4_En# zGq#EevvCt=Y-}cUnZMScukZ2|_IhAh$G)p`?K-Mf`0Np^`p#5-A|fIpA|fIpA|g6# z#r?Rh&joZ@!`Yt?Fw%fioC`3OQ|o}lzWpiZJwF*KMu#_>8hP|u%>du`0RS(rZ*A+) zmgUT9XsT5MT-R+~KpVdA!*$(O*J#v$>_?j@ppE?-(DX($+Cj~>q#s5j0Lae@nA{To zul$W0P_|zW3z$51+l1gfR46QcZO$Y#D)!iktgiRvP3QgrINT?-|DIW+00000NkvXX Hu0mjfm*DPV literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7318b3a2f145797b177cd82739043db0b4557d5f GIT binary patch literal 339 zcmV-Z0j&OsP)Px$4M{{nR9J=Wl0isz}kVEhkNq8AkPb*ciov4b1^4L5-~H^ebx~GXsrQwe0rwW?R*p1^NeLDV?B}T zU8L>+tUF=u%i+k{iAEh5>xlroPN!T%(dK}ECmLB*u0*P; literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/meta.json new file mode 100644 index 00000000000..4fdf067f6d2 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_rabbit.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by discord:Qti.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_red.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_red.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..7223ea43b4edc9259c02dfa38e93b6d06a469bad GIT binary patch literal 410 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9Gmi6G3l!hU%s0|TRv zr;B4q#hkad4(1**5IOeoykPVO2Yt(egh}rXh)A|;GjDJ%N@~3^ZN&|SmtUKjXJ68C z@l?6>|GiM6^E}ZvG56FNfhI%1{T2b8m9KB9tX%gxPp2heec1jPbu;U4T(qd)_zOV+8ch^WYUslnITo{_s(3Gd%L#W zYh_vLvQs{WZmj|;o{B6-C3f%J0`ffsBrsL_*LB7mP_7J9IL~eK`u=m~u;jXun|WU+ zZe8Vn*{qq}a_#k~)a)HSF^5;k7EB2F%5_e*@5kD()MbZ*jxPQEbGEhkhZFvhtsCDj y4767G`o#PF{x46azc~Fovh~%p&=a4T&i`V$=9gn>*&KfZWTmI8pUXO@geCyF#<^es literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_red.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_red.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..745483e55d66931059ecbd6beb08827311cc5598 GIT binary patch literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJnVv3=ArY-_FYe`SHV|lg_}#`= zifdYu(X<5iYVQ9YXBxgN?G*G9?wG{%a^A5|>90%dnv2g_maA_KD>ZauJR}M{P)Px$@<~KNRCr$PTCqw4K@gooLD14JU>5`BNuKi&M>m?n!x66-^`o$c8i&e5`VJ9^Cu7h1tiV@EReVW za0tQzut4GrzygU20Ji`v01G6}04$KW0B{Sy0ges*$v6y}$fDXy=qw$)UnfiDVnyU_}ZlVkMo@lE~DK%KYetUWy!8WS1C^|O9g zw5LRY8u+4M51R{NX6lPx-^YJR;ACS^as8n8DB4p(fCj!OSd9Sw4FNHE4!BGK@jnd} zXyI2?O*d&GhQJXXarCMdv?ZI4(`fXAv> z#smdevh5KI3h-DJ%b1`5OSU~?)l$ID)@E4SSSPEwfI-9+X9cb=ujusrLY$BI0}duX z6QI!wtD=-*yDYZqs(hP&rxpSEnE>95yTuwE;bF;?b&ElOkb#jDz*t%>aY^+@v0*I& zif4c&31zbare^>Xz^wCd6hB&X0fSUfHY>pI^3ayh0rUfbT5C{$O(`OLn7Rh zQzQ}&SRD9f++&qs!s6x(BRu#TAG`Da3lF@Uw4?a7)Zwd})g^*HosxX+^Xkv~+?<09 z!rQlOQ@<6nNc2$FSr5&%|9{1t;St~eH?`v1XZynkw_lfh+iLpXd!w<@fg{uHce`!b z>7w0Yxxm@=`+lA8@@>cCBMgTe~DWM4fpmcG+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_redwhite.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_redwhite.rsi/meta.json new file mode 100644 index 00000000000..6eb8279c0e6 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_redwhite.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..626a860c5e4f5a22c389fd5a256a5824d92c21d4 GIT binary patch literal 693 zcmV;m0!safP)Px%Z%IT!RCr$Pnmb4XK@f)LP*AkgDj+sNNF*p&s8~eN!pdM7R1mbVvPogel(Epl z%0fZVkW#d=h-eB?3qd)|fus>3m6nQvvND%!jNyvgV>htuTp2F&_~xIvV#Wf)AItFk zfdG&K3@1P>V7LHi2vQ4B3m8s-TEK7t&{u$3fLg$C0@MPA3xK`?)B@B3h7+I`FkAp) zUxDkZA`1^hq5M>W$GaO?UEi?wb~f4I$Qbb7$0y>-RHeedP_UiTz%tJVvMpp&6o731zJulT>xm|8x7r9`sH+Xq zYc}K#)j?3@-yeV!FiadDtbTU)uLU3l3|j&pY!4+$Q0U(m0IV_&IX(bU^6`U6eF)wT zJMI8PC1m<->BCT^e_sGZ`c$`f34m@DlN~Q9KsHg`?2!U=tC;L~NddBn>Sm7=pj*Xc z$4d&3O;k5~qyXJ2COckIfNY|=*&_w$Rx#P}k^*EC)y*C$K(~s?j+Yc5o2YK~0x4i| zZkA2XOhK#e0=%F$-wIq7F5u|&OgJCmKVUGp5?8qj^P{5Xbs4ViKF`Hh^ML?x=lid< zg{k7Z08bzd3)7X}>TWW~aYkSO?n+$MHrR&*a9z%iG8zvyeEjv_D}ey;s}QuL`YymL zp?dPQRXx6gTj`dy0Nw=^mmT+1#)Z&AB{Wx_`{(QWmM8!Lpd;0H0ba>?4ZqR*>MX*e bEl~i!7od+&we^+#00000NkvXXu0mjfO{+An literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..87ad6edba0629be2a704ced86c3729c1a1869aef GIT binary patch literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^TEDn4#?y*WRVR3VY5gvSvkKOtIg$G_v+EM&k>hRUg>JmYpPDwuZdG%*~Zq7jl z;q6zmoL5TKQDi&q+Z?c(;wbEuWxJ4UvGSiJNw`Cr1X@C^_9JfA9jfy z{*->b!)$s+s{wn-iWmRZf7pNK!bZVI91~Iv+)oz$PwXh$dG5dk?;2h2Y0L-2j>e^T zylMVn7UcE%|ECk#Jl@|kjBNg$Iuua&-00#np|t`cOa}K4>wenL^G){z&bV>eeUc|!UaM9VzL*OmL1bxR&o@oq@j(PhX zgy(ViOU1COI|O)`oQPMmG8B5t5Vcj-UDiN~X|W=hU|^^YX;R#MXA3hh2pK$G{an^L HB{Ts5S9y~S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/meta.json new file mode 100644 index 00000000000..6eb8279c0e6 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socks_stripped.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-SOCKS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socksknee.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socksknee.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..1b1c84b9a7a39768466302af1a188de241d31c32 GIT binary patch literal 536 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|VnJ zPZ!6KiaBp*`T8Gn5NNya>VL#Tu`3~e!OM#h|Nr|N97|4q;uYX5ZT~?<`+d^vt|c$S zPNhEES+ebB*{<{NzHKVzc({Ur!=2T^LW|*0AfrGZS3^MvL(5_&1sPEWbg2(7YwF9h zyWg&UExq}zoYbPuKlii~Or#WRYmfhVs=5EV^-E<7yF)2Pj+cA%l~p`Hsn>76ee|*O zo4kn@ZmbhG$`z`r@>_6_VW_8b5hi-kn_PosCm;y&r>Az5W zdCsZf4wKG&R+0Jg{P^td%DLwrs7xsNTIhSAF>Uj?gZg6J;-7EjZLk0OdEumnO*eBs zt)CxgHv9kGykEjCxc!R~6b)AVx${m=uAL)b`jK~Q_yN0Yrc*b<)<0;@Yqa9OSan)v zM{?1z7}ni(Li)rvq&2;QBcf{^H-7L=@9N2tkNyPdG-nxvlO&OQ0 n+|`h45FWPLq3bKxz8dD}XM4`BN?ouK7}X4(u6{1-oD!Mtn`KQ*h zqPF1W1A&h1Oo2=6ZKw7uA&X z;=Oy`m(RSJ_~h*GvpjOoWSuQV7@h_&OmSum;A3?lz;QV7X0FRGFpH`P%!_=9_1}F716>ksQadl;zE>vsUl-q+ieb_kGvL zc!pC888q6N7RYcl6lvh)G-%mRx_e2NFdSN^zhY29`0mLSgqWxfpo;jsteJ#^w%E35&Eed0dbP0l+XkK({tr} literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..803d7a0da167408f0bd7824ac6101be8b517a231 GIT binary patch literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij?1AIbUFP=a9< z(}PBJpLN0sy6z^wr%v_U-g4#UYOiSwdo5m`@{e74RdAlNjZ?hn>unD?Cv&qDF>r4Z V_uTt*jSSFW22WQ%mvv4FO#s*tQ}6%) literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/meta.json new file mode 100644 index 00000000000..a02b5d23220 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Socks/socksnorm.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-SOCKS", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socksshort.rsi/equipped-SOCKS.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socksshort.rsi/equipped-SOCKS.png new file mode 100644 index 0000000000000000000000000000000000000000..89227d75aa7d7b830e6454398e0df4d6999ebea1 GIT binary patch literal 438 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|R4* zr;B4q#hkaZ&Uzho5NY*4(kr-7uztduAXRU{`~L-9V#IQ`E#*)PiYo8BGjU?XEF;d| z*~R9f$zUnOP^7}}#Dn3)M1~22nSCF3=5Ky)lI*{W`!5UeZkJS1xN}ndq~Np9 z*YE%Qze9ufce_o@b^f>B5-JK`SX!8Pv>#olW!#-{`u(bv{LL&m-&rJ*zp}nL^o?sT gm)q|6h5Gj$u1}hDY_hixFd`T{UHx3vIVCg!0NB5=uK)l5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socksshort.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socksshort.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..01837a8b4a93d81cf1ccfcd48ba383a63782cd5d GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;>1s;*b3=DjSK$uZf!>a)(nC9u?7!u+B_M9VEgMvWo!-cUf(?9$R?|dO5 zsB7dBC8eyq!)Uthzx>bh`c7~#Fud5h)|>15)K^;qi@&9A$hpKnw|M7tndO$twf5Fs z-tBUo=~Q*TZ;HKNWzvSpPu7*Y{uN_j_%r7O_d{FT=-bw;on>zhjscrpDAY;QU zwqtyTJHOvH2zbCFe|WBII{TqOMu9%AhJp}=mc>j8GNKF*S1@q6vpQI4F(63=dmngv z_QtgD`s>%7%|HHtQ~u{x_X7nMF26ptJzw5_b>qE{oK1_Febj`1q?HINdQOu6c{fk| zdwJp8-!IhzzB66Ex3=`p{>91+hgRw+^d(ETC0=`{%gxu#ml&9Ib8F@7=dOWUzRo-l zUZ=|VwBSkNnjmL>0#I>@|xbZr}t|D z&OJXo{j>GlbK5_^3h+FjHruYPdh*XG7DZhCKzQ-E=Ye1KpN>4=#W26NK#sBcce{o4 zTk}n73Bob!4d&WDdi?k5%c{RD;1IFkOn8_%(@gA}arS0`O{Tgbbend z-!*+QLs;xNhGSbc{k`}?=9-?=!~;Bb6%&1bDBVyOpTkmcYUa5Ko*EvPMSKsgNpfWQ ddD`R$tDE&6hZjp<^Z+B4!PC{xWt~$(696Kh-(CO! literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/socksthigh.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/socksthigh.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..530b2ae4b583f5db56b68f0ea77b24c73ddda682 GIT binary patch literal 232 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_heart.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Socks/stockings_heart.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..deee7f1ac2b6ce6fe45cb4c0e841efa184848182 GIT binary patch literal 541 zcmV+&0^{+asa2MRVL|O`v|#0 zT;vM2d;zL7)H^Mq&PbD*i!@7$h8|R_W>N@Ckdg>eQo8U1h~+F6Gyl$Gp`)YY2ttr! zeY`q0_#Li%=Zyf|I%%|}$ez2@9!(IYHkR+J_a2Y)p`#0;BC{}=ha*5-FAh`H9JrIKA zxBzIK0`RB*aZ3b1mMs8y3W7$zwF1I*xkW_8n5pErTt?4mo$|BauLR#kQ|fC8K|+u_ zTrp-U#!MxOeoI-9h*WI*AA(FKbD2!$tskV7j@Pv@Xr0#Hw48FNHsOQ!q4k9; zDKchSc-1=P?9Au%^escBwgPT4RH_&|&wJN8^;Px$!AV3xRCr$Pn!!o~F%X8cpqG}?q9BL_JbLmed;qb}S@8jU3Qrz|AcCN@l=h-f zi5LiL5+<{oE}i_nEZq&6nQ#6-IV6p${MS@ozXAX#pmGARK;;6!A_xn>0+kbh1u7Q+ zb^%xb7O0#6EKs=sunWKfut4PmV1XO~Y_`kY=f_%|oKBQ|YONb%%+CF{&+%wh3~DG= zD5sp7vXb3wmkT%fAAq_4&VCz@X7ii`a>j<@8)Ft0y!++G2Y{{}fC4;Qh_*o6Yq2$; z6ogp(*n6t7Noznmh@CtIpl=AN_^EFc2xI`E$+Xu0b^-2coJ!Uf8H=C#)*ArIM29+t zq<}*$j*>S3P$)?r0|iL#E~PdofI>;~7$`t;cPX_&0TfD-$3Ov+yGyAJ3ZPJuJO&Do z++9j-PymIJRc zj%?dU(p@CTjqh7EDn4#?y*WRVR3T?6AeoQe*AiS_k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1k1^9%xGB_16__Z^nu4S-D*glhi!8&bbJp)7Do~A6I3WgPiS!aM0S4ogx z@P8O!*mOqcJW!Ogz$3Dlfr0N32s4Umcr^e8mwLK5hD5l(y>^@HumVp*;^Zv8_x}&| z#%joEIhPq~{7hV6VSnqcj%U4214C9mv)ydl&40}vOf;3}*f(GMUuG5~(~~nCPkw7U zr5*dXgY^i@rr(c#8+u-^e06TOxS8Yi@A{5yzi02i;mpVqz^%{_#lUzaj#K2+zFDVC zc-XJ8D1552OK^$5*XyuRG5P0zJ+s=L^9GEp*FHCLP02q{2GaE4f5R(I&9!~5JCzo_ Q20EC*)78&qol`;+0Jkc9!vFvP literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d2f812bf365c3bd77fbe58337a6d2cc170356741 GIT binary patch literal 286 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE#=yYHQtOojknZY*T-Ihi0eW7h0V4PP`QSe1Djyoxezvgj>$SZd98fMsc*!(<;- z=H?kz7S5IPB2OCxYe{GsbGaP^s$JaRbzmh&xiIT|8NLG?OFNksJhJ^;W6j*WLyDPM z-TrV{uK0!>&#&6@@Z7gIGT5`{sKMn8lN9$(G%5CETHq$N<{+CWQ+R^H#*1usfTk^B bW@BT>{9=9AXiJ_G(D@9Wu6{1-oD!M<2l`vt literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/meta.json new file mode 100644 index 00000000000..97552d6e864 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/capitan_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user SWG#6421 (481693809806278657)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..16bd502e128ff965756f266b1a707c6159b3dff2 GIT binary patch literal 630 zcmV-+0*U>JP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!~g&e!~vBn4jTXf0t-n*K~!i%?be%?Q=ONUe{rH@+NaXMM0gEQ%@-qaJ^c+RwbGT(38Ish#Ili5T@nL_|bHM3KRci{Ia`!~tyzvKus|%RrE{ zykyE(Lu77NWaBv8=Xr&xubuPq#Sqgp1LqCZV9di4i5Ydgy|XK;3(sn7@7dcEu!bL*qG-w*QCkbbn!6pwMb`P(eqhXUl`DSFir%_d2Q2ykgEQ_k$V= zLKA|t3>-5>6!i4?QXLtp_9<{UWXeC`3Ruf)S$$-MqIiQ>SbcqcfhMFDhIEdX~Y{)z4*}Q$iB}#kzRk literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/meta.json new file mode 100644 index 00000000000..97552d6e864 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/ce_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user SWG#6421 (481693809806278657)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..21a4181bd67ab1a0c753302802947719fd5debd9 GIT binary patch literal 367 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`1E2l#}z^2|^duIT)qoBRI#d;X$&zMRTq$BsQnNO=16>9NpI?yv-&*bJcB z&P{fyK#I2{$S?Rm5@4`>q0|PH;4JWnEM{QfI|9OtQ?>b|fr2|cT^vIq+}~b1$ahFV zz%`KV{$hvU|L?DM@oCt&G)vgLSXg>l%i_Y;+jVCcn7zcAQ>~QdR!DyP{V~j5{tDwI zoAcM094xgD6x)Pz3w(IQcrDVk(*@a4dhx`o@mnk&7%XQ1+Obu-h6C$EE^3SYgO$nweS4fBIp wuYXNt+SFb8bJ>eeJU=X$c{C(H)F<42XK1jObzh#gC(sWJp00i_>zopr0J$QR#Q*>R literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..22a85bbb5212162d5905b210bffa579624f22230 GIT binary patch literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE#=yYHQtOoj6Sz0VMh5e!PObLe7j0<``Kfi9?_J8Nj|MDs-fBye}Egq64($fUg)F${~ z=EA-}t0dvYoCmJAs4TDa42ovI5|@;c%)HtDPu+2aL%Pgq`+xpoxl_l)7;y1_rkC~G zTLB9euvtENd3pK&{?@i8!wz1d#nC1p^LiMVnHlb~_;Yqw{67iw7lWs(pUXO@geCwC CU3Jm` literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/meta.json new file mode 100644 index 00000000000..97552d6e864 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/cmo_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user SWG#6421 (481693809806278657)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..9de02df0e73e2d106668aeaa8da8c2ca291a67e2 GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I3?%1nZ+ru!7>k44ofy`glX(f`u%tWsIx;Y9 z?C1WI$O`031o(uwCIcBxMGRi`3?`8U3=HK!u0(0%?#3`lX51o;L3hX96q&3hw( zVw?pYk;M!Qe1|}oQB=dL0Vvq%>Eaj?;r@2&U9JWN9=E$`zy9UVG3KtH<`K*CQPy$U zx#qZ9y?rc993mW6jh92`U0b=kb7tR3w;6w*&0M<1c&kH)1#gy=Roin@>2sYYy7g_C zKuQ$?6dD|UE=>?yckJc{ga|AXSbGzkP9m|mr@w4P(Bo#DNb>iagcOV%?ovT(87 d=T5rAsHUB_$#mi-eW0TlJYD@<);T3K0RY!3W&{8L literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hop_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..6a4e2f810007002d6f00a741d379427c10719310 GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE#=yYHQtOoj+4Y$Z_n#N|xBNK|Px`dSVfI{Z2Mt(HqzdmV;;MdT(D~>50d>yA!$w#3 z?Yr1x0+iH{U~Lwg5ax3DmbXGf%#p`J>P!=2+z)6i->Eh+!H!2|ek9+r=aUkj0o5r> c8W=DzBPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0kla(K~!i%?bqNOalqF4Asi?1TDz zqcJ!Najx-{{#j`5KIA+(D31#`pB736zkqO+-Kt{+2Bnuv(Xa6_oR0eSB6`Z8)ZHMbnY&M-nV%FdYZO(h(NGe?ecUxzB; zUVz+Z$K-2p6IrT!s?wcjzfIcz`D4QIL_|d6P-2lkYxxqlWc-1YfFyQKxp9%oTE2=r zB;3ytOCS*u5fS|xq0lZX^oxWx+;+O^sz7*YA3>NZ4Q15Fgr6l~*$nNqbMsMe!Em?@ z;q5+h6(XZyn^4yE*r_5cxuLz6g{d%5Mtx{8l8A_ih=_<%;gM0!^s^S6Q_AD4thYEY z1wEOItX3lLA5GomqVAg^w(}46L?#oFr>nH5S5|fh9M43aubVR7>#6-}4Cegy9U$9w hP6rSX5z)31`2y=#tKx|M!chPK002ovPDHLkV1jO=@zekS literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hos_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/hos_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..c311471acad1bb085a3f60b3a7c0b834983a56f8 GIT binary patch literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE#=yYHQtOojTmd>W-HD_uC*K zjZJF770+fFpVbShI(kbQ<|Qri7__I$ zbV*3;xFI1?Q7I{rw0h&}qnr+s9G1?Gt?makBv=|Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!~g&e!~vBn4jTXf0!B$hK~!i%?V3SL z8$lGu-=+pz>rwP1v<9@Gpl1=i1O)NcZ_wWS4E+eL&_fIHODIGIH5Y?;7i>X6@F0Sr zc(S%-Lq`9@jI7(Z?rf6H2L3+?Z{H5PZ)SG#_PsYN?PGB=r_7-ytf#@kxTJ0~$lQeY z$bPr`(`D9I->UGG1nI^S$s(91b4WS@R^fBA9A1q%BQ>x4Jo!>OH`@Q;;=g{wXe6UV zd861wdG+O~HW(m1M9^&{d7%ZDWYqF}1hD-898w=SRc4`XiFRHw+2gG!a4wAw5Priu_Tr zKrE2oA-ddprj>|)<bX z%sW3vLI@#*5JCuX2We@RJ}O6Fl5RsKN~3Jf4WnOIM)dYoT163CkbzCuwgY#q16W!v zUf7j@lo;vo{%Py?i~EsHJ?%oSj%vV`$x^3(`i9Ly$v0|W zh=xpQY@FN5s8jahhIX6&eo4u)xWDdOcB)u6h_2+EJ!c8SvghZj8J0Od_+EcWreUky zLDsrI|Jb)NJV_R)`}&SwqWOkF;e=U%23&589~&AO87gO`uLy|0oDU2M22WQ%mvv4F FO#p)2i-7Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!~g&e!~vBn4jTXf0yarRK~!i%?b^Ri z!ay7c@E<0O4T)hO3=A$^+%#xdWHT|kIXU7z1fy+^XMt zmy}Xk?n+yP?Ss4|vrHm>U? zzAjF*$t}Cbo+=lh$xS8`!DiF^Zrlf%PN%_!eIl~rO2@~hs#daIAM^peUeEX@7#A^9 zEo~Z8;!1^xwt?vJmCe!t)M&+py^CF(ei^LfIDJ+52{;-P-<)(wuM zj^j3SccTZ;Y&O-N$m7ZLTnXXxc?jPhza@uD$UFW5PSc5qh=_=2=V0lnm!HwRKoNAz z@cSqQ5)t?b3wZ(SKj;`h48%fA+aySsQ9d9FPacVgZ~2KW-qvKC`LWeZ( zzd!>KMxDEpW1AYhiYBB5XmT4d%vbaYkYc^FtF*gux?@M<)TvV+9_<$A34C=lKvIa| zMA!swH||4$23&3j6IgG|l2kFbJ;AtO8P^m}w(Hv?{<0@(i1S>y8X(%>l^XCe=b*r+ z|4&X%{{QsJlLHb**g7W$7bUOtFJRQv)YRy1TzIEOYf9@Ww=m~ohE?m^>h7nA^b{O8 az`!8cUZMERBXuRvw+x=HelF{r5}E)!@Oa7q literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/rd_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/rd_bra.rsi/meta.json new file mode 100644 index 00000000000..97552d6e864 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/Heads/rd_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord user SWG#6421 (481693809806278657)", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..8cdc406ce6351d6223580bff4809aaedfa61f694 GIT binary patch literal 472 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zCwaO!hE&A8 zon@HcY#`Ed^34K8~mwbpZ0FO z@3WcD*D=gmw)4y~)MtWL(;E5ze4xa$o>CuU-&>NgVL?i*o)iV zs{M_?fNni9FZp$wZUcRqi% z!r|hz0A_>tccK^s1fr~FGkC}z^$874d(OOW`-$U)e=HXlyuWa5@%?SS40585a_$T# qUPe?TGwWz5XK!G{$3DG}@xCqVB1iqFU53D@V(@hJb6Mw<&;$U2wACvB literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..40a38919d9a0b9098e237ac5118bcba3dc74c05e GIT binary patch literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}b39!fLn7Rh zQzQ}&SRD9f++&qs!s6x(B--LQK79Us{?Ct($yQaIUEXs7JiUuJdaN4e&;S4bc)z@% z6W?@;(8UZQe}aO7GSAPmo!vTzub@+SlZ=Xgkko}MSN`xDi#*|wkba^e@%z`;*D5nT zCncq@H|XpU-!a`WbFXoid*&;Kq^2n$rYfxrE8Bz@*Ii*;tY{#`1SJ?4p1RvB`cIzM Q19T^Yr>mdKI;Vst0Drqswg3PC literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/meta.json new file mode 100644 index 00000000000..c0f3c160305 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/black_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/blueshield_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/blueshield_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..478572c3bab6ee6906388949da1bb4cefe3daacb GIT binary patch literal 916 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEV9d*Ob`Ho)PG(@xm{>Y-xA)-y zkz@61MdL*sWnE;fLIMK>SPQ3c?Fwn%))YEj?VI8fLlw=S7*=uigN`L1O@GM0(AuHJ z(WKO2Vf8!8<$Z>vMYPZ!;~c<{Q0&9dli+B%m7VvBW;Mjx76rMFe5 zM#CoKbi<)=uj^ia)>uS8DnDALWX4%{)p*L1ExFixVy-!bDJMJ21Fkfc_`WLczd-HoHLd&$ za+%NRou0Lg`}yn(UlW$Txw1Y){r3Em2VQG#QCs+!ZI-xqO>_%)r1c1j3A$?$-SQM#mXX7srr_xVN(m^;sN6jz4!% z4D1N?;81iCvFg=#a9S?Fy02+g+`?~?8X;CfT610232;pmcJdGj6PX^f{g1iY&O2{Y z^2-8p>L$mOy?VDx&9zS!?~1-yoc!F%_wtJCHJ3!ch4S9o;w&{@wM-hN*`%e z6_gyiBeynu+4S#|w=bVvBEL(}PFm~LYN;jp)4%-p-kovwh$92CuaG>5#8g#S@Uy|9 z@ACcl{Nt~-oYN4w%KPrws^Hafd#C;S_DVurciCi%(#6tWElRJ}IAnxdtcWB_EU(l_vxyy5II=jRDwi{F0!PC{xWt~$(69Dz%nTr4b literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/blueshield_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/blueshield_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..017f3906d09807b068814366b3648d9a1bee35f2 GIT binary patch literal 668 zcmV;N0%QG&P)wt`icCiWquF(fHcTm=^g!9jHK zHTWOsD!3{Lf+C1GI{R8g;<;96k@kk0^W(esJDhw0f7HV6B4noShf$7Y^r*g8ny;`jTMUoQq5C zmfeFxjA z3+J2A^q6>nXG*q2mUc7fV_FopW*ziFNr!*RZz_eR98T=?56qXce>Z zT_pej010qNS#tmY3labT3lag+-G2N4007iUL_t(oM`K_Z1*0J_8UmvsFd71*Au!ZJ zK*4R&e_U?HCx=T96D|pQiIePrk8hvhbQ?Z7T$&hhNnjH{efHx2TX&u^sHsRZm>TP& z=*1_8%`BK0Ne%$TF$cF0Sntb6R~X)(?Evc+G_LqBE~f()|MB%5!-HLUM4QV3)bhQAhzI$Jn;np2HaDoJdh_a$ASbY2L6AaP2z)Ye5(JqCV2J$V44f64g^)X=m z8i7mxgF*xZV4(t2KT3~=z-S1JhQMeDjD`TA5C8z+IXgw0ZP(=h0000G+x3?Tu9WoGUefXp7;>>jm@BZhy zW%^>tTca$#J04R!-f&-U`Xld=C-iWMp@k)<|`nsvk=}$ju9#0Q&o43*wY*~Y>(+=iq W$K@ExBfq=?iFmsDxvXzopr0CliasQ>@~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/bra.rsi/meta.json new file mode 100644 index 00000000000..af6c326d3f1 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..5ba88dea614ef5a81f735ba87a3ce2579ba3f169 GIT binary patch literal 718 zcmV;<0x|uGP)Px%h)G02RCr$PnlUKEQ5?tLMG2F*MOh?;bc2NqS4-Vmw7gE3Xzx(ym|My?6?(V(s_kDif_x{8Cg;c@@8)HMgp8IQ*5KTrTI`-CnD%?&!Zu z6w2^gYSF7)-_)ULTwc`+1|at{G5y`!!ZvL z)wg<)sxs|)^6W&X0II*<)uX@5ynd*?>@{jm3;?6wP@VrV?BS){Ngri4THE5)R}_W- zi0IamN{`KIVR*9do=QL6pytE?F#4tl_E_-XqK`HUCi-d$v{RY1ibtXv#?f=Wq>DF; zwToZ_a9KQzM+1O;c%0nQw3COcD$yTPkc!^K7<&Iim#h#6aWzZzDUy`<R07*qoM6N<$f-?P1 A;{X5v literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..db30ef13b9af67f3524109fa0c2458b79b9b8128 GIT binary patch literal 340 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^TEDn4#?y*WRVR3VY5hu7BAG`Da3lF@UbYn-2+#bEp{XR)MieF1LFWqYEnKo&O zM9S?so^$_OKG$Q2USpEW=G+?3=6rmaB+vIvMhBAaPZpL4`gE$(YA!b`MQ7U7C*jOU3@0AR$%8trlOYR3fwm?d5ZHJJ$ZS%S$6Z^zw(oG*k^i9 zV|I9%kbm51L%!ojelPX~0fp;2)HVN|EMxFcF7i__XAgM7khN9yWEWFbq@5JgVnqWm dq2a{9@Kz;Mkt<`OA2660JYD@<);T3K0RW;Jg7yFa literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/meta.json new file mode 100644 index 00000000000..348a31160b4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/christmas_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-UNDERWEART", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..beb27fc0d2245928b17b40739ad2edbc08b8f601 GIT binary patch literal 586 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zUwOJXhE&A8 zon`BH*g>GxT)pE1V}?UXNXINTK8M4KnHCHtS30`*91k=06fqq>(i0K6ds|w)+U8H* z!pH4D->dt4?QF{9uzxq#)coaRn9wj)_<&eMCBp}yBVq@{1O#^M*(Dh_Pk!;r$X$99 zxb9Vz)fw*Dzt`>S^mXlBUE22?Zx4wg~dC$du`umZ)E@WxO&oyZXpN#nYq{h zGQPO`@nz@lUqAl5{quk4&goN*M7)T*_I>sP`S-u>d46?eI3Y4q;<24xmCF71`AM#{w6SCaY+KXF67jCD&0NKyc~dH{ z%7LPClRb)zQd4xZ6&R=OUi^@k^TL9hNM_CrcVv0wYeoYjYSD&aBntFx|3=;lsb# zeW$W}PyW4Vv9$M_UFLI!^K1v)D)O&J*<64AU;RQpTfG6p()%ykS4^MU;4GoHmXl#= z=e96@&WyFmOaCe{;^M5cW3+!W@uK6NKQ8&eB*2#%;hE;^%b*2ha{w_2Tne5HqC8#w KT-G@yGywn_P6ZbL literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e547c1968e4dc46bc5f3c434cf49242c23dd405c GIT binary patch literal 273 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}8$DedLn7Rh zQzQ}&SRD9f++&qs!s6x(AzrjLtlazh|7G^_$0Zhum0xzXKM^S4?P0N9f=Sz+7O!M_+&;qhKfEWZW1y2T1p00i_>zopr026gs^8f$< literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/meta.json new file mode 100644 index 00000000000..348a31160b4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/lace_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-UNDERWEART", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..b664428cf8fa98cc8310a739d350c7abef340484 GIT binary patch literal 544 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z4|uvbhE&A8 zjWS%1O$_6d1BZDV)H;M5I5|XK?0RQ={`13mpYt70EYYpKzkl^At8Z_9%Pq?k z+G$yN`D)_-=oXcub$fUigQlwdzBunj(fw;dkE8a^f6}ny+m3hp)<(*@HO*FGxLSGH zgq_b+NvLUlX{_@d8P%4$w}~}*4K1?u(;ujFIy~uMsh#(q^<4I?_Wjy%n;6OkH+FF| zu9@<^iJQIRWQ!=j#R0EM{T&4j(|sa7HZYSevEJ))9S-s#ZZpWeJJSNJ^J z$|($jQPWhnzpKvzaW%&I#JwW^^%=o3mrL{09p^zsJG4jBE4qMBR@v zhCMMYP;6-HQa#?l>~(G)Te*dU^U+Dk2N+e;{hO_27A#CUY51UF(&ps{|9<5A!7QdQ o-%;4$z#U-3@})+2ruq6ZXaU(AKnwzxf+vG0Pgg&ebxsLQ00cwmfdBvi literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..cb9e86c43f5261ad20c459b80cab985aa447dfec GIT binary patch literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}^F3W0Ln7SY zPIcrvARyox8EMrnz2pBW-Z_UadHr6x#M9LDZpV|`CT)iKajILQY`#4D)x}`qzzjsy zQU&LxN+j32o!e>keE%##_1L5GmH8jnAJ4OAcwg%nuGqq7-&I?B@0u%HzzK=q;^K3n zNg}g#`)ZXK{-kH;+RGa-WGXLJ+1I1QAi~75?|Za;*V!lm<}-3OyZfP5oaUAB-Da5uRzjz6@GGHU|)cz@^~HAj;F#&t;ucLK6VH0#tqg literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/meta.json new file mode 100644 index 00000000000..bdfe88a0b6e --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_black.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By Adventure Time TeamBy Adventure Time Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_white.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/monokini_top_white.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..64e8df3e847e29c255a020e968e583507fb3d32e GIT binary patch literal 577 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zA9}hthE&A8 zon?5c#Xz9-E_a4*g#Hcfh-zm4SG;Rj-?C;OjM9H_o=cb500c~**EGCBLHZvXZf z``+(0@$J2{M)phm#&wDrg1GXIbXL844U`74zr4>^uE+-!$eG0r$U$ul;PZ zUck=wvDPt_^mrd!qh)^Su#2Tc<6G!9&Jz!TZPi z4}6^Y_R)JOf9V6UPCJgVGU$B@`gDjf$m-xyX1)hX`l|Xe3QL7!tR9dd5&S7NQZG^B z-Y)S9H|gA~y^mjrx+Y%nS-fDc!7bT)`BUc$=DwDd-l@;LAnD3ahF$xl+up`ZXMA&> zU4Wr9??Bk}{=DGZ54RP?GC90v;5_-c=BnqTTiZKW0Y}x8*E{ zmADz53se#u76?i>HMuT0rM;k{O)HL3gvq2CU>b>C{1=>1Ezmd|RA8AVT8 zGtG16-AmeYvpd3SyuUByVBV0xU{DgzsJQJ&NB+xwF^&vklSRY7%{r;K_vFSq_tx>` zzqEUeEHfWxtq%^8#*119yq$w&-(wy$~}8C-pb8Q{m*mj&*{IV1$&Ze zve(sAUHw{nz3uCo$=5f(+W6<9B9dRQGXH5eJ_x(CCOWZ{Z`qA?s~-#RbyJvPVHJ?V zaCJlZoxgLfu1u6|Ur_m^&gc6_nNzlQ=5uYin{GXJ{r~-o>2Cc8ZflD&XPMhhQEp#n z&AHKXF~bvap%9OI>++-;9_8niY?`*iZ2onF+AKlLSZBur1F87LNWY}~m+g+nt@!Hsv5qKc(M+%efm{V+4btO=%*o-|y~*Ef2= zoistlgIBXbg}s4i+Vs-nuQ(<=Rj>?V9GBH@svh@7;Vu>5jM|`Ofo@u_m3|c@o2M~k6rQpdR N%G1@)Wt~$(69ANuU?Ttk literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_blue.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_blue.rsi/meta.json new file mode 100644 index 00000000000..bdfe88a0b6e --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_blue.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By Adventure Time TeamBy Adventure Time Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..fec705ebfaef11a188e79f3b04dfe0c81f25633e GIT binary patch literal 521 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEVBF^E;uuoF_;!|J-eCs;*SV{> zxH1C*9F{IvutGs&O}NHOQ7&(8Z|>^WxP|E)TwGmKw5PDN?)W?L+Ny2I{d2dj^{CaB zeDmk-&&TT3Cv&D5Dljl|I502?G%&CzJP@jwd;aq(*LiVUxA#4J`n}}z<5OJIj^?!; zHhL-Y{mZGdrY`#Xmq&{+Y*-O;bY8mgXLF72@Ta?2)?O6I*eX^(6{x#3Kyx$j9 z{ItEh>g_F{=9CTgGMjdP{K4|D%tY&1*Zg3InbSqX|9wBIRDUanZR5HhmjCL7j&?rY z>36H(#tH$+?A|l++ioBG`RLC*n;)y$Y(Me(%m0h3eF1hLl3OvD)4diHYHP-==W;y#UlYeg)P7mkR z{3*TlxUTYD?jMq_?Kh$>r}^xU`|;_@vgTVALG2%c}oDG85MV}1Vz`wzvK5GDCF7tV!seSf5h*-`tb+&n2*|f@M<=su)nGN$TaW51YKrJ zrX%iR%EuIYj%YZAF>_@_c&*=ACAwz6YqaznTgPeN@9p#5H1ou>{!Q-A2_`IVU?Pr# sf#E-o(T>e_`~L!+&zBnEnda-upaoFVdQ&MBb@0F#1J+5i9m literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/meta.json new file mode 100644 index 00000000000..bdfe88a0b6e --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/muns_bra_red.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By Adventure Time TeamBy Adventure Time Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..a5cf90e144f301e645a6e2029746e3ceb432483e GIT binary patch literal 595 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zKYO}3hE&A8 zou%mE94OLuepQA*p`*xcoo(X2Y`bTe+;C~$ksx*A(kbt@>C1dwQd|QsY|4?;>DSe4 zN>pMy`s+!|4x_fV-P?=zwtwIMMbGBk-}B%9mves?(Rl8!`24Rhg94+adV}(W&kPUT z1>70j6`r#cuoTHLe6MfJ$Ti=3;nvy9hdx9}2P{|Kuwm2GI8{+At9@p*`@Y7nxY?2U zS;6r2x#a2dLJZMQrc*ruzPDltwfF}>o( zWU@nLr6A{oC94;j2`xCN>e=hjpc2cwbs__=o@bT|lgi7i6}>DO1)f35LI!-hzFnJ^ z{qf8Ji>!a4htDbZ6bb){K6@r<=g%E`eABn<2G37tTcS|#xlFF{yCi#y4?~1Nyf^=O z9uHnm9<|)k%6YHK&5wjXjciC~N?_eM!)_4mPRf!`zDkRfNQjA%i zmNwi}2$&*tU_xB<=?_n@MS>L;ZP1I|`L_P(lA{R=zpu|XJd=}`#_-WGCrF3=rTS^c qB}WVuw=U+B;BCAp03kjIFfe4Q7%6I8c6I>zgTd3)&t;ucLK6TSu4Y64 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/meta.json new file mode 100644 index 00000000000..24e248f7700 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/peabra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord:prazat911 для Времени Приключений MRP", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..972f306061df1af0b98b28edc2d43687139f7fc2 GIT binary patch literal 592 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-HD>VB+$0aSW-5 zdppa}@34b_>;Bx6vaVVxeGK9Y9`l8021zRxGVx6iR#4pSH?hll$z!I693CN>FLZ8p ztDTApED$+cWh{B}aodqKfB*0Kx%sTx!4vCKo_syb5W(c;cfc*-3F8Le3vLJ88ay9J z7QFvqZ*}~gaeRGIWlrrkjtPzHbykP@etvS-E+w+^wu!6!jLD*g;wu;&T7xdK9Q;4k zi{Ycy6{$tCQyA`N#@Ec(OiPYDt{iceI69r>ftmH;I{6Qu z{kN+#JhPQfap>LKFOc!8J-;b_%m2Ajhc71gAJFlox z^+#?0sW&~sclljyC$oo}rJspu?7hd}A$)yVI_HIJf|>Ty7&0H-`l7>l%S!3(aUliY znA!7G9irWr{Ec8*(wTjEGfT$njxF-u4JL)TRnr)9WhZ`1=A59m&iA~~g0;$*>U0=4 zc3hq~^T$ZO&JY)WwU*9dRH*qWB6Wl>~dn0P_!~vL*%S!-*cnaFt*IOP;_iU zopb^F17qLSuD3V!9r|6u#<<|~FX@D88^5EMRT&#fIGAGZ@0QOlPm)~BZ8uQb OVeoYIb6Mw<&;$V3paA0l literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d503939f8f80442286b2a2142f42ed6327268ae5 GIT binary patch literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}$2?seLn7SY zPT9!IWXR*X|8npKHlBk@SK24cXkeVdzr;J)v%vi{GRF zf0JATDm)TvFEDUUVBq{C->AC4dQV-#`$x6*xicC#=LTi*S?b&T)LB|JsrYK@8+A6H z6E0_4&NmBv@QS^&O6JG`u@(IermV9>FNFP_6CY9Igr literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/meta.json new file mode 100644 index 00000000000..c0f3c160305 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/red_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..48223a0861c9107e8bdc7341cc35dad629cb3cf9 GIT binary patch literal 399 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fA0|TR@ zr;B4q#hkaZ0=b$E1YDM1h|hn(y61o5o(A&|47$-A9vPR^X1k<5`^(`L^F6iK=^JN} z3d0i*h7%JRCMYv1xHEa_#a;ipRp<2LvOC>(@AutLdUCAj&MGDyOK%gg*x7pmRTAbs zf1-1{Qu@8G&cVrh0z(;BN=kH|y!ZXDaQW?RuYQYgZg5DP*6-O~Jdge7^!%yQR-cIv zSa)~FT6c3_&buT zGBgTe~DWM4f#Cx7? literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbra.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbra.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..08db2302cc895305bd7467f4aa21f21e368c1629 GIT binary patch literal 216 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyjKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$1AIbUuV26Z`SWKWZ|0BsULeI>666>B|3Aa^Q@lX644efXk;M!Qe1|}o zQB=dL0VwF{>Eak-;s3VBkPl=X_y77WqEgD8$9%=}7q)VLV2=0D<5t$6{zPL2mri;> zYsL+(Jq;&>Ri%3hGA_*B`B4B5yI-JE2Nw0&xv!iMws zbCh}Q1^T!e3PKoK7BeZxh%!7}!7$z4+;{Vp(%R3x?Lx}?CpRq8XnM5p$cgtV3v|47 z&TqNrSJOZC9Dnk&X5G)TAzPB)f4{B0e=@_m4KbOyoMj&k%NeZg_uu|}SLFTV z`<2orM>l8up7#8s@ixcF^IdQMcvilTxj@nI)9c9!2xoG*vpQI4F&qkH#P9*f@yLcu z-`KkH+r8BA>eEl`*#{Apaq4POsFUgr48v4|f@4e=MmecZo&Z@oqTW9Zj%z&r+ z?%Z#>^H|n0n#@<>lxP%I>hDmICk$aI{5!02*aR>C3;+~2=GAz6d Pj7tVjS3j3^P6666>B|3Aa^Q@lX644efXk;M!Qe1|}o zQB=dL0Vo*g>Eak-;s3VBkney22Q%;g`jWQ^p^jctR?aQzJ~+ogZimyy%^%L4o+Q)y zp=pIoNn*|ou00JmjC1)|5_brEUL!74^<3mv{0@P$afPjqiWNUI-i~Eo*&;ee2WU8h Mr>mdKI;Vst0Mfxs4gdfE literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbraalt.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbraalt.rsi/meta.json new file mode 100644 index 00000000000..af6c326d3f1 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbraalt.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..8b7aaed2fe6bb206b634683ce7cf1c93241d72ba GIT binary patch literal 548 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zk9fK`hE&A8 zon`2MIDn_+@=6{};i(CXYTNw&{GWf|N-t-GgO>1Hhvf>&mQ`I%BFA^W2+)gOD*pS= z&p%cctFs=S&wBVZoJoOQXHJ7#!b7$Tsw)I9aP%k?)E3{a*|UG^yO;mu1dYCQJ&j(k zf2;i5^Y^Q+2y=?bG5Xi-yt$=vU*B;pWhJGGSDO_XQa_f)ZjbU?9{e?4v4!EzU3-&j zKQ~n@e;^PSKhN24`MV60IFC1v7{8p|FFZe)Wf!l(^_|kktqh(pXm6`#wr<#|=XiSm z-dq2cnZBr#l(*ww{Ezbx!y@Bjb#V+gtXre0(}HC2S*Et?MbpYme=Ey))YHB#pS(4xW?zplNr?gHb|h#@`-> z4donb{rMb()B5$<@v+~tPgOnP80zW192mKLsS%!OzP=1vKsE;ugTSTW$so$p)z4*} HQ$iB}{s`pX literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/icon.png b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..70e9b41b73532fb90216984e75802ffa22a1ff81 GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}i#%N%Ln7SY zPF3VSsxtwv}eI8o!WDCG9|IFqix- z*gd`dq0d2q&n8{(Ma7FeiW=7cGrps*Tad`}QEpRwTY%BcSyEqlGW4cjVParQU|^dh aUBRFq=b~sd`@28TwG5uFelF{r5}E*89#mBT literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/meta.json new file mode 100644 index 00000000000..24e248f7700 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/sportsbrablack.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "By discord:prazat911 для Времени Приключений MRP", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/equipped-UNDERWEART.png b/Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/equipped-UNDERWEART.png new file mode 100644 index 0000000000000000000000000000000000000000..21063efe703416b313b28d1b19707c00d0f397b4 GIT binary patch literal 568 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zKY6-1hE&A8 zon`2EIDn@uo}I0WDfBYumm{nbA}pD>d7g58;qy^AchT5{Sx2UkxqwmRpvz(>7G@4s z%dCJYY^r|qR<8Loch!}x_4WV$PTMo@<&WjpKmOxoIKU{Y-XQv72V((866*#gAEx*6 z-6^Z>BMQ&OpP%_s`*7^_^z{wdj8kRBnPRSovn%i%zIoyMu}X2FDH(F?*KQf>U2tRQ zI(o{bu=PrByf%ZEUe{O+g~xLVra0+iY1WO|gbVOgeUMk}+*imX$d>>0DB zwS-wXG_6`Tr+`d}(pL;srFWl9Vp?u^-EJyc`^?p{($=b2* zCKp3&ghJr#zZ!4D~qPq#Lruv73*X*LHWV7{nfu` zI);T!Q!(}o;^AVPplaY=bLM^egZU90Wdc5PmMMOCc)4@y8XYN~{r~SUM0fS-9!O{O vmu`6^ui_uXA&{)FGRsZYK#FOxB8*_*mG@BeOo_Ar`h&sK)z4*}Q$iB}x2#w3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/meta.json b/Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/meta.json new file mode 100644 index 00000000000..c0f3c160305 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Underwear/Top/whitecomfy_bra.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "equipped-UNDERWEART", + "directions": 4 + }, + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/meta.json index 35f7cc1d4fd..7ab0ee53c7b 100644 --- a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/meta.json +++ b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/meta.json @@ -25,6 +25,18 @@ { "name": "head", "directions": 4 + }, + { + "name": "underweart", + "directions": 4 + }, + { + "name": "underwearb", + "directions": 4 + }, + { + "name": "socks", + "directions": 4 } ] } diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/socks.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/socks.png new file mode 100644 index 0000000000000000000000000000000000000000..5981d3a6f113d11631d78cde1e3c41cb93171f02 GIT binary patch literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z9X(wfLn`LH zo#mK!*no#6+;#rT{VjjH|F4`Aw8Eh<skv!?~+Pi;btvWC-aFxZe765%Yxz2HA#V zOfMKr#2nZcY-F%v=w-dYn4#0a=a9@;!XU-H0H&l*uP5MijJbDc?R%K2Wh^c$O5ggg zH+`GRyJ6G5a-dPqCNvzsw(ID<+1r+9?=t&)mKH?uK9|;73cgC?YMB;^R4>JTmL#{{(STFKYPvkdkJ$+-cQOFEERtK saZQ6t>YGDT)NV9hPyF*qyY>a&mydZzgqQ362Zk(zr>mdKI;Vst0Cp>n^7U&bvB%NU{@f*EudXf}vl z5OLtn;99_H!g_&e7E=br(rVr3BY*2n%r`8}VOl0V&xSSp&a&_aAMMX9>-#OvSE|03 c5!Grt)^?uyS$0d;1O33@>FVdQ&MBb@0QhB90ssI2 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/underweart.png b/Resources/Textures/ADT/Mobs/Species/Shadekin/displacement.rsi/underweart.png new file mode 100644 index 0000000000000000000000000000000000000000..19d64cb73f10bce8f88c76781967d88a605bbc0d GIT binary patch literal 359 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z6+K-XLn`LH zofXJ+$bpAdSpS-E#qx?}^A@N_*NglKn7)IP`PGX%$-#$Pm@w z#+bn<#kznsL!?1$fhTK+LA>QYuj4iTe?`6>&dJ#?AHOuQ?w!~S-Fuavd_QkxUt(w5 zxApOAlQZXYo3_9Gt!4sJ{pX9W!JFFD{~zj1uL9LvU^3ZxpRxYL%k>N}gE4HvDzHq) zp{4RWvyg1D7IV+>?C6%~x2D!Vn{tn7uAr6QJ)dfaScdI;-$qx(8Xu~;5w~sKI-vWP u=^WUQeKja}PrRVDuRO2 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 g6UHaK=$pn63$}IYYUDbaHpBun$f7FUOx%+5i9m literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Default/Slots/underwearb.png b/Resources/Textures/Interface/Default/Slots/underwearb.png new file mode 100644 index 0000000000000000000000000000000000000000..5cc9beefae87efcada7176e9379574b6f7ec6ebf GIT binary patch literal 5711 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 QP!?faH&0HU%i6gA0rNW`wEzGB literal 0 HcmV?d00001 diff --git a/Resources/Textures/Interface/Default/meta.json b/Resources/Textures/Interface/Default/meta.json index 6111696883d..4b449a51813 100644 --- a/Resources/Textures/Interface/Default/meta.json +++ b/Resources/Textures/Interface/Default/meta.json @@ -84,6 +84,15 @@ }, { "name": "web" + }, + { + "name": "underwearb" + }, + { + "name": "underweart" + }, + { + "name": "socks" } ] } From 5b010f4afac4daa4d7d727b06b9e6b929017de3b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 00:19:30 +0300 Subject: [PATCH 20/34] Auto CL update (#638) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index 5bbfcb586cd..0f28bb040f6 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3592,3 +3592,14 @@ Entries: type: Add} time: '2024-10-13T17:10:46Z' id: 444 + - author: Котя + changes: + - {message: Удалены "описания контрабанды" при осмотре., type: Remove} + time: '2024-10-13T17:23:36Z' + id: 445 + - author: Filo + changes: + - {message: Возвращено нижнее бельё. Время проверить лоадауты и одеждоматы., + type: Add} + time: '2024-10-13T17:27:42Z' + id: 446 From 1b7806a6c10e10d55e6a659e80adc72cef014f36 Mon Sep 17 00:00:00 2001 From: Inconnu <177014427+Inconnu1337@users.noreply.github.com> Date: Mon, 14 Oct 2024 02:07:45 +0300 Subject: [PATCH 21/34] =?UTF-8?q?=D0=BF=D0=BE=D0=BF=D1=8B=D1=82=D0=BA?= =?UTF-8?q?=D0=B0=20=D1=84=D0=B8=D0=BA=D1=81=D0=B0=20=D1=81=D0=BF=D0=B0?= =?UTF-8?q?=D0=BC=D0=B0=20=D0=B8=D0=B2=D0=B5=D0=BD=D1=82=D0=B0=D0=BC=D0=B8?= =?UTF-8?q?=20(#637)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Взято с [AdventureSpace ](https://github.com/AdventureSpaceTeam/AdventureSpace/commit/4308a7801e61b42b38da1a3396f56b51a846cc95) ## Почему / Баланс Попытка пофиксить спам ивентами при заходе игрока/возможного юза эксплоита из-за этой хуйни ## Требования - [х] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [х] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре **Чейнджлог** :cl: Inconnu - fix: Исправлен спам ивентами. Гойда? --------- Co-authored-by: Schrödinger <132720404+Schrodinger71@users.noreply.github.com> --- Content.Server/GameTicking/GameTicker.Lobby.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Content.Server/GameTicking/GameTicker.Lobby.cs b/Content.Server/GameTicking/GameTicker.Lobby.cs index 61d9fd99cae..2e766c519e5 100644 --- a/Content.Server/GameTicking/GameTicker.Lobby.cs +++ b/Content.Server/GameTicking/GameTicker.Lobby.cs @@ -184,6 +184,14 @@ public bool UserHasJoinedGame(ICommonSession session) => UserHasJoinedGame(session.UserId); public bool UserHasJoinedGame(NetUserId userId) - => PlayerGameStatuses[userId] == PlayerGameStatus.JoinedGame; + // => PlayerGameStatuses[userId] == PlayerGameStatus.JoinedGame; + + // ADT-Tweak-start + { + if (!PlayerGameStatuses.TryGetValue(userId, out var status)) + return false; + return status == PlayerGameStatus.JoinedGame; + } + // ADT-Tweak-end } } From adc9dbd24bc171bc2ee857bd559b947bd709289f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 02:17:50 +0300 Subject: [PATCH 22/34] Auto CL update (#639) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index 0f28bb040f6..a6a27fd7423 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3603,3 +3603,8 @@ Entries: type: Add} time: '2024-10-13T17:27:42Z' id: 446 + - author: Inconnu + changes: + - {message: 'Исправлен спам ивентами. Гойда?', type: Fix} + time: '2024-10-13T23:08:02Z' + id: 447 From dceb66203b92c9a06ba7beae2db638d5959f42fc Mon Sep 17 00:00:00 2001 From: Inconnu <177014427+Inconnu1337@users.noreply.github.com> Date: Mon, 14 Oct 2024 09:29:14 +0300 Subject: [PATCH 23/34] =?UTF-8?q?=D0=A0=D0=B5=D0=B2=D0=B5=D0=BD=D0=B0?= =?UTF-8?q?=D0=BD=D1=82=20=D0=B1=D0=BE=D0=BB=D1=8C=D1=88=D0=B5=20=D0=BD?= =?UTF-8?q?=D0=B5=20=D0=B7=D0=B0=D0=B2=D0=B0=D1=80=D0=B8=D0=B2=D0=B0=D0=B5?= =?UTF-8?q?=D1=82=20=D1=88=D0=BB=D1=8E=D0=B7=D1=8B,=20=D0=B0=20=D0=B1?= =?UTF-8?q?=D0=BE=D0=BB=D1=82=D0=B8=D1=80=D1=83=D0=B5=D1=82=20=D0=B8=D1=85?= =?UTF-8?q?=20(#635)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Ревенант больше не заваривает шлюзы, а болтирует их ## Почему / Баланс Потому ## Требования - [х] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [х] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре **Чейнджлог** :cl: Inconnu - tweak: теперь ревенант болтирует шлюзы вместо заваривания --- .../EntitySystems/RevenantSystem.Abilities.cs | 22 ++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs index fb7c8d61920..1a502e6fc12 100644 --- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs +++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs @@ -435,14 +435,30 @@ private void OnLockAction(EntityUid uid, RevenantComponent component, RevenantLo return; args.Handled = true; + /* Revenant tweak + + foreach (var ent in _lookup.GetEntitiesInRange(uid, component.LockRadius)) + { + if (!TryComp(ent, out var door)) + continue; + if (door.State == DoorState.Closed) + _weld.SetWeldedState(ent, true); + _audio.PlayPvs(component.LockSound, ent); + } + } + */ foreach (var ent in _lookup.GetEntitiesInRange(uid, component.LockRadius)) { if (!TryComp(ent, out var door)) continue; - if (door.State == DoorState.Closed) - _weld.SetWeldedState(ent, true); - _audio.PlayPvs(component.LockSound, ent); + if (!TryComp(ent, out var boltsComp)) + continue; + if (!boltsComp.BoltWireCut && door.State == DoorState.Closed && !boltsComp.BoltsDown) + { + _door.SetBoltsDown((ent, boltsComp), true, uid); + _audio.PlayPvs(component.LockSound, ent); + } } } // ADT Revenant abilities end From d3684f553d4a4e8fa51f39eba1b56532c49fffee Mon Sep 17 00:00:00 2001 From: RevengenRat <138193222+Ratyyy@users.noreply.github.com> Date: Mon, 14 Oct 2024 19:45:37 +0300 Subject: [PATCH 24/34] =?UTF-8?q?=D0=BF=D0=BE=20=D1=81=D1=82=D0=B0=D1=82?= =?UTF-8?q?=D0=B8=D1=81=D1=82=D0=B8=D0=BA=D0=B5,=20=D0=BA=D0=B0=D0=B6?= =?UTF-8?q?=D0=B4=D1=8B=D0=B9=203-=D0=B9=20=D0=B6=D0=B8=D1=82=D0=B5=D0=BB?= =?UTF-8?q?=D1=8C=20=D0=B8=D0=BC=D0=BF=D0=B5=D1=80=D0=B8=D1=83=D0=BC=D0=B0?= =?UTF-8?q?=20-=20=D0=B5=D1=80=D0=B5=D1=82=D0=B8=D0=BA=20(#641)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR черри-пикнуты пр-ы: https://github.com/Goob-Station/Goob-Station/pull/755 https://github.com/Goob-Station/Goob-Station/pull/726 https://github.com/Goob-Station/Goob-Station/pull/723 и добавлен перевод экшенов ## Почему / Баланс **Ссылка на публикацию в Discord** чтоб еретикам жизнь малинок не казалась ## Техническая информация ## Медиа ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: Ratyyy - add: Древние боги перестали принимать в жертву случайных людей! - tweak: Еретики научились грамотно выбирать ритуалы используя круговую голограмму! - tweak: Сила пустотного втягивания ослабла и теперь наносит только в 2 раза больше повреждений! - fix: Еретики приняли решение стать более гуманными, и потому больше не используют органы внутри тел для ритуалов! --- .../HereticRitualRuneBoundUserInterface.cs | 39 ++++ .../UI/HereticRitualRuneRadialMenu.xaml | 13 ++ .../UI/HereticRitualRuneRadialMenu.xaml.cs | 101 +++++++++ .../ADT/Heretic/UI/LivingHeartMenu.xaml | 16 ++ .../ADT/Heretic/UI/LivingHeartMenu.xaml.cs | 97 +++++++++ .../UI/LivingHeartMenuBoundUserInterface.cs | 34 +++ .../Abilities/HereticAbilitySystem.Ash.cs | 2 + .../Abilities/HereticAbilitySystem.Flesh.cs | 3 + .../Abilities/HereticAbilitySystem.Void.cs | 2 +- .../Heretic/Abilities/HereticAbilitySystem.cs | 69 ++++++- .../Heretic/EntitySystems/AristocratSystem.cs | 2 +- .../EntitySystems/HereticKnowledgeSystem.cs | 8 +- .../EntitySystems/HereticRitualSystem.cs | 47 ++--- .../Heretic/EntitySystems/HereticSystem.cs | 147 +++++++++++-- .../Ritual/CustomBehavior.Sacrifice.cs | 13 +- .../ADT/Magic/ChainFireballComponent.cs | 7 +- .../ADT/Magic/ChainFireballSystem.cs | 16 +- .../Antag/AntagSelectionSystem.API.cs | 14 ++ .../Heretic/Components/HereticComponent.cs | 24 ++- .../Heretic/Components/HereticRitualEvents.cs | 22 ++ .../ADT/Heretic/Heretic.Abilites.cs | 9 + .../ADT/Heretic/Prototypes/Heretic.Data.cs | 17 +- .../Ambience/Antag/Heretic/attributions.yml | 4 + Resources/Audio/ADT/Heretic/attributions.yml | 9 + Resources/Audio/ADT/Heretic/heartbeat.ogg | Bin 0 -> 9088 bytes .../ru-RU/ADT/Heretic/abilities/heretic.ftl | 5 + .../Locale/ru-RU/ADT/Heretic/rituals.ftl | 3 +- .../ADT/prototypes/Actions/heretic/basic.ftl | 11 + .../prototypes/Actions/heretic/path_ash.ftl | 14 ++ .../prototypes/Actions/heretic/path_flesh.ftl | 5 + .../prototypes/Actions/heretic/path_void.ftl | 8 + .../Objects/personalization_items.yml | 195 +++++++++--------- .../ADT/Heretic/Actions/Heretic/basic.yml | 26 ++- .../ADT/Heretic/Actions/Heretic/path_ash.yml | 20 +- .../Heretic/Actions/Heretic/path_flesh.yml | 8 +- .../ADT/Heretic/Actions/Heretic/path_void.yml | 12 +- .../Entities/Clothing/OuterClothing/armor.yml | 1 + .../Objects/Weapons/Melee/heretic_blades.yml | 6 + .../Specific/Heretic/ritual_rune.yml | 4 + .../ADT/Heretic/Heretic/heretic_knowledge.yml | 39 +++- .../ADT/Heretic/Heretic/heretic_rituals.yml | 82 +++++++- .../Prototypes/ADT/Heretic/radio_channels.yml | 2 +- .../Entities/Clothing/Masks/masks.yml | 1 + .../Prototypes/Entities/Mobs/Species/base.yml | 2 + .../abilities_heretic.rsi/living_heart.png | Bin 0 -> 735 bytes .../Heretic/abilities_heretic.rsi/meta.json | 3 + 46 files changed, 932 insertions(+), 230 deletions(-) create mode 100644 Content.Client/ADT/Heretic/HereticRitualRuneBoundUserInterface.cs create mode 100644 Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml create mode 100644 Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs create mode 100644 Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml create mode 100644 Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml.cs create mode 100644 Content.Client/ADT/Heretic/UI/LivingHeartMenuBoundUserInterface.cs create mode 100644 Content.Shared/ADT/Heretic/Components/HereticRitualEvents.cs create mode 100644 Resources/Audio/ADT/Heretic/Ambience/Antag/Heretic/attributions.yml create mode 100644 Resources/Audio/ADT/Heretic/attributions.yml create mode 100644 Resources/Audio/ADT/Heretic/heartbeat.ogg create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/basic.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_ash.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_flesh.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_void.ftl create mode 100644 Resources/Textures/ADT/Heretic/abilities_heretic.rsi/living_heart.png diff --git a/Content.Client/ADT/Heretic/HereticRitualRuneBoundUserInterface.cs b/Content.Client/ADT/Heretic/HereticRitualRuneBoundUserInterface.cs new file mode 100644 index 00000000000..38b3b49aeb6 --- /dev/null +++ b/Content.Client/ADT/Heretic/HereticRitualRuneBoundUserInterface.cs @@ -0,0 +1,39 @@ +using Content.Client.ADT.Heretic.UI; +using Content.Shared.ADT.Heretic.Components; +using Content.Shared.Heretic.Prototypes; +using Robust.Client.Graphics; +using Robust.Client.Input; +using Robust.Client.UserInterface; +using Robust.Shared.Prototypes; + +namespace Content.Client.ADT.Heretic; + +public sealed class HereticRitualRuneBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IClyde _displayManager = default!; + [Dependency] private readonly IInputManager _inputManager = default!; + + private HereticRitualRuneRadialMenu? _hereticRitualMenu; + + public HereticRitualRuneBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _hereticRitualMenu = this.CreateWindow(); + _hereticRitualMenu.SetEntity(Owner); + _hereticRitualMenu.SendHereticRitualRuneMessageAction += SendHereticRitualMessage; + + var vpSize = _displayManager.ScreenSize; + _hereticRitualMenu.OpenCenteredAt(_inputManager.MouseScreenPosition.Position / vpSize); + } + + private void SendHereticRitualMessage(ProtoId protoId) + { + SendMessage(new HereticRitualMessage(protoId)); + } +} diff --git a/Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml b/Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml new file mode 100644 index 00000000000..425ba588c12 --- /dev/null +++ b/Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs b/Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs new file mode 100644 index 00000000000..4ab95b8f9e4 --- /dev/null +++ b/Content.Client/ADT/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs @@ -0,0 +1,101 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.Heretic; +using Content.Shared.Heretic.Prototypes; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; +using System.Numerics; + +namespace Content.Client.ADT.Heretic.UI; + +public sealed partial class HereticRitualRuneRadialMenu : RadialMenu +{ + [Dependency] private readonly EntityManager _entityManager = default!; + [Dependency] private readonly IEntitySystemManager _entitySystem = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly ISharedPlayerManager _playerManager = default!; + private readonly SpriteSystem _spriteSystem; + + public event Action>? SendHereticRitualRuneMessageAction; + + public EntityUid Entity { get; set; } + + public HereticRitualRuneRadialMenu() + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + _spriteSystem = _entitySystem.GetEntitySystem(); + } + + public void SetEntity(EntityUid uid) + { + Entity = uid; + RefreshUI(); + } + + private void RefreshUI() + { + var main = FindControl("Main"); + if (main == null) + return; + + var player = _playerManager.LocalEntity; + + if (!_entityManager.TryGetComponent(player, out var heretic)) + return; + + foreach (var ritual in heretic.KnownRituals) + { + if (!_prototypeManager.TryIndex(ritual, out var ritualPrototype)) + continue; + + var button = new HereticRitualMenuButton + { + StyleClasses = { "RadialMenuButton" }, + SetSize = new Vector2(64, 64), + ToolTip = Loc.GetString(ritualPrototype.Name), + ProtoId = ritualPrototype.ID + }; + + var texture = new TextureRect + { + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Texture = _spriteSystem.Frame0(ritualPrototype.Icon), + TextureScale = new Vector2(2f, 2f) + }; + + button.AddChild(texture); + main.AddChild(button); + } + + AddHereticRitualMenuButtonOnClickAction(main); + } + + private void AddHereticRitualMenuButtonOnClickAction(RadialContainer mainControl) + { + if (mainControl == null) + return; + + foreach(var child in mainControl.Children) + { + var castChild = child as HereticRitualMenuButton; + + if (castChild == null) + continue; + + castChild.OnButtonUp += _ => + { + SendHereticRitualRuneMessageAction?.Invoke(castChild.ProtoId); + Close(); + }; + } + } + + public sealed class HereticRitualMenuButton : RadialMenuTextureButton + { + public ProtoId ProtoId { get; set; } + } +} diff --git a/Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml b/Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml new file mode 100644 index 00000000000..fd06facd081 --- /dev/null +++ b/Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml @@ -0,0 +1,16 @@ + + + + + + diff --git a/Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml.cs b/Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml.cs new file mode 100644 index 00000000000..a85077584ca --- /dev/null +++ b/Content.Client/ADT/Heretic/UI/LivingHeartMenu.xaml.cs @@ -0,0 +1,97 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.Heretic; +using Robust.Client.Player; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using System.Numerics; + +namespace Content.Client.ADT.Heretic.UI; + +public sealed partial class LivingHeartMenu : RadialMenu +{ + [Dependency] private readonly EntityManager _ent = default!; + [Dependency] private readonly IPrototypeManager _prot = default!; + [Dependency] private readonly IPlayerManager _player = default!; + + public EntityUid Entity { get; private set; } + + public event Action? SendActivateMessageAction; + + public LivingHeartMenu() + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + } + + public void SetEntity(EntityUid ent) + { + Entity = ent; + UpdateUI(); + } + + private void UpdateUI() + { + var main = FindControl("Main"); + if (main == null) return; + + var player = _player.LocalEntity; + + if (!_ent.TryGetComponent(player, out var heretic)) + return; + + foreach (var target in heretic.SacrificeTargets) + { + if (target == null) continue; + + var ent = _ent.GetEntity(target); + if (ent == null) + continue; + + var button = new EmbeddedEntityMenuButton + { + StyleClasses = { "RadialMenuButton" }, + SetSize = new Vector2(64, 64), + ToolTip = _ent.TryGetComponent(ent.Value, out var md) ? md.EntityName : "Unknown", + NetEntity = (NetEntity) target, + }; + + var texture = new SpriteView(ent.Value, _ent) + { + OverrideDirection = Direction.South, + VerticalAlignment = VAlignment.Center, + SetSize = new Vector2(64, 64), + VerticalExpand = true, + Stretch = SpriteView.StretchMode.Fill, + }; + button.AddChild(texture); + + main.AddChild(button); + } + AddAction(main); + } + + private void AddAction(RadialContainer main) + { + if (main == null) + return; + + foreach (var child in main.Children) + { + var castChild = child as EmbeddedEntityMenuButton; + if (castChild == null) + continue; + + castChild.OnButtonUp += _ => + { + SendActivateMessageAction?.Invoke(castChild.NetEntity); + Close(); + }; + } + } + + public sealed class EmbeddedEntityMenuButton : RadialMenuTextureButton + { + public NetEntity NetEntity; + } +} diff --git a/Content.Client/ADT/Heretic/UI/LivingHeartMenuBoundUserInterface.cs b/Content.Client/ADT/Heretic/UI/LivingHeartMenuBoundUserInterface.cs new file mode 100644 index 00000000000..d39372539d0 --- /dev/null +++ b/Content.Client/ADT/Heretic/UI/LivingHeartMenuBoundUserInterface.cs @@ -0,0 +1,34 @@ +using Content.Shared.Heretic; +using Robust.Client.Graphics; +using Robust.Client.Input; +using Robust.Client.UserInterface; + +namespace Content.Client.ADT.Heretic.UI; + +public sealed partial class LivingHeartMenuBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IClyde _displayManager = default!; + [Dependency] private readonly IInputManager _inputManager = default!; + + [NonSerialized] private LivingHeartMenu? _menu; + + public LivingHeartMenuBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _menu = this.CreateWindow(); + _menu.SetEntity(Owner); + _menu.SendActivateMessageAction += SendMessage; + _menu.OpenCenteredAt(_inputManager.MouseScreenPosition.Position / _displayManager.ScreenSize); + } + + private void SendMessage(NetEntity netent) + { + base.SendMessage(new EventHereticLivingHeartActivate() { Target = netent }); + } +} diff --git a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Ash.cs b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Ash.cs index 2bcae414d19..36e2127f301 100644 --- a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Ash.cs +++ b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Ash.cs @@ -51,9 +51,11 @@ private void OnVolcano(Entity ent, ref EventHereticVolcanoBlas return; var ignoredTargets = new List(); + // all ghouls are immune to heretic shittery foreach (var e in EntityQuery()) ignoredTargets.Add(e.Owner); + // all heretics with the same path are also immune foreach (var e in EntityQuery()) if (e.CurrentPath == ent.Comp.CurrentPath) diff --git a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Flesh.cs b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Flesh.cs index cec3512d4e3..8976a576eb2 100644 --- a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Flesh.cs +++ b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Flesh.cs @@ -86,6 +86,9 @@ private void OnFleshSurgery(Entity ent, ref EventHereticFleshS } private void OnFleshSurgeryDoAfter(Entity ent, ref EventHereticFleshSurgeryDoAfter args) { + if (args.Cancelled) + return; + if (args.Target == null) // shouldn't really happen. just in case return; diff --git a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Void.cs b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Void.cs index 18c0e36959c..4b821e3ff5b 100644 --- a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Void.cs +++ b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.Void.cs @@ -90,7 +90,7 @@ private void OnVoidPull(Entity ent, ref HereticVoidPullEvent a // damage closest ones foreach (var pookie in topPriority) if (TryComp(pookie, out var dmg)) - _dmg.SetAllDamage(pookie, dmg, dmg.TotalDamage + .5f); + _dmg.SetAllDamage(pookie, dmg, dmg.TotalDamage + .2f); // stun close-mid range foreach (var pookie in midPriority) diff --git a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.cs b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.cs index 52d924463c4..9cbf5bc64ce 100644 --- a/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.cs +++ b/Content.Server/ADT/Heretic/Abilities/HereticAbilitySystem.cs @@ -27,6 +27,10 @@ using Robust.Shared.Map; using Content.Shared.StatusEffect; using Content.Shared.Throwing; +using Content.Server.Station.Systems; +using Content.Shared.Localizations; +using Robust.Shared.Audio; +using Content.Shared.Mobs.Components; namespace Content.Server.Heretic.Abilities; @@ -56,6 +60,9 @@ public sealed partial class HereticAbilitySystem : EntitySystem [Dependency] private readonly PhysicsSystem _phys = default!; [Dependency] private readonly SharedStunSystem _stun = default!; [Dependency] private readonly ThrowingSystem _throw = default!; + [Dependency] private readonly SharedUserInterfaceSystem _ui = default!; + [Dependency] private readonly StationSystem _station = default!; + [Dependency] private readonly IMapManager _mapMan = default!; private List GetNearbyPeople(Entity ent, float range) { @@ -86,6 +93,9 @@ public override void Initialize() SubscribeLocalEvent(OnStore); SubscribeLocalEvent(OnMansusGrasp); + SubscribeLocalEvent(OnLivingHeart); + SubscribeLocalEvent(OnLivingHeartActivate); + SubscribeLocalEvent(OnMansusLink); SubscribeLocalEvent(OnMansusLinkDoafter); @@ -105,9 +115,6 @@ private bool TryUseAbility(EntityUid ent, BaseActionEvent args) // check if any magic items are worn if (TryComp(ent, out var hereticComp) && actionComp.RequireMagicItem && !hereticComp.Ascended) { - if (hereticComp.CodexActive) - return true; - var ev = new CheckMagicItemEvent(); RaiseLocalEvent(ent, ev); @@ -159,6 +166,59 @@ private void OnMansusGrasp(Entity ent, ref EventHereticMansusG ent.Comp.MansusGraspActive = true; args.Handled = true; } + private void OnLivingHeart(Entity ent, ref EventHereticLivingHeart args) + { + if (!TryUseAbility(ent, args)) + return; + + if (!TryComp(ent, out var uic)) + return; + + if (ent.Comp.SacrificeTargets.Count == 0) + { + _popup.PopupEntity(Loc.GetString("heretic-livingheart-notargets"), ent, ent); + args.Handled = true; + return; + } + + _ui.OpenUi((ent, uic), HereticLivingHeartKey.Key, ent); + args.Handled = true; + } + private void OnLivingHeartActivate(Entity ent, ref EventHereticLivingHeartActivate args) + { + var loc = string.Empty; + + var target = GetEntity(args.Target); + if (target == null) + return; + + if (!TryComp(target, out var mobstate)) + return; + var state = mobstate.CurrentState; + + var xquery = GetEntityQuery(); + var targetStation = _station.GetOwningStation(target); + var ownStation = _station.GetOwningStation(ent); + + var isOnStation = targetStation != null && targetStation == ownStation; + + var ang = Angle.Zero; + if (_mapMan.TryFindGridAt(_transform.GetMapCoordinates(Transform(ent)), out var grid, out var _)) + ang = Transform(grid).LocalRotation; + + var vector = _transform.GetWorldPosition((EntityUid) target, xquery) - _transform.GetWorldPosition(ent, xquery); + var direction = (vector.ToWorldAngle() - ang).GetDir(); + + var locdir = ContentLocalizationManager.FormatDirection(direction).ToLower(); + var locstate = state.ToString().ToLower(); + + if (isOnStation) + loc = Loc.GetString("heretic-livingheart-onstation", ("state", locstate), ("direction", locdir)); + else loc = Loc.GetString("heretic-livingheart-offstation", ("state", locstate), ("direction", locdir)); + + _popup.PopupEntity(loc, ent, ent, PopupType.Medium); + _aud.PlayPvs(new SoundPathSpecifier("/Audio/ADT/Heretic/heartbeat.ogg"), ent, AudioParams.Default.WithVolume(-3f)); + } private void OnMansusLink(Entity ent, ref EventHereticMansusLink args) { @@ -190,6 +250,9 @@ private void OnMansusLink(Entity ent, ref EventHereticMansusLink } private void OnMansusLinkDoafter(Entity ent, ref HereticMansusLinkDoAfter args) { + if (args.Cancelled) + return; + var reciever = EnsureComp(args.Target); var transmitter = EnsureComp(args.Target); var radio = EnsureComp(args.Target); diff --git a/Content.Server/ADT/Heretic/EntitySystems/AristocratSystem.cs b/Content.Server/ADT/Heretic/EntitySystems/AristocratSystem.cs index c0060d42af3..f5d4b8cb44e 100644 --- a/Content.Server/ADT/Heretic/EntitySystems/AristocratSystem.cs +++ b/Content.Server/ADT/Heretic/EntitySystems/AristocratSystem.cs @@ -61,7 +61,7 @@ private void Cycle(Entity ent) continue; if (TryComp(look, out var temp)) - _temp.ChangeHeat(look, -100f, true, temp); + _temp.ChangeHeat(look, -200f, true, temp); _statusEffect.TryAddStatusEffect(look, "Muted", TimeSpan.FromSeconds(5), true); diff --git a/Content.Server/ADT/Heretic/EntitySystems/HereticKnowledgeSystem.cs b/Content.Server/ADT/Heretic/EntitySystems/HereticKnowledgeSystem.cs index bc6030e8a21..f4fa55a893c 100644 --- a/Content.Server/ADT/Heretic/EntitySystems/HereticKnowledgeSystem.cs +++ b/Content.Server/ADT/Heretic/EntitySystems/HereticKnowledgeSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Heretic; using Content.Shared.Popups; using Robust.Shared.Prototypes; +using Content.Shared.ADT.Heretic.Components; namespace Content.Server.Heretic.EntitySystems; @@ -31,6 +32,8 @@ public void AddKnowledge(EntityUid uid, HereticComponent comp, ProtoId comp.PathStage) + // make sure we only progress when buying current path knowledge + if (data.Stage > comp.PathStage && data.Path == comp.CurrentPath) comp.PathStage = data.Stage; if (!silent) @@ -64,6 +68,8 @@ public void RemoveKnowledge(EntityUid uid, HereticComponent comp, ProtoId e.Key, e => e.Value) ?? new(); var requiredTags = rit.RequiredTags?.ToDictionary(e => e.Key, e => e.Value) ?? new(); foreach (var behavior in behaviors) @@ -71,22 +74,11 @@ public bool TryDoRitual(EntityUid performer, EntityUid platform, ProtoId= 0) - toDelete.Add(look); - } - } - // check for matching tags foreach (var tag in requiredTags) { + if (_container.IsEntityInContainer(look)) + continue; if (!TryComp(look, out var tags)) continue; var ltags = tags.Tags; @@ -102,11 +94,6 @@ public bool TryDoRitual(EntityUid performer, EntityUid platform, ProtoId 0) - missingList.Add(name.Key); - // add missing tags foreach (var tag in requiredTags) if (tag.Value > 0) @@ -167,6 +154,7 @@ public override void Initialize() SubscribeLocalEvent(OnInteract); SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnRitualChosenMessage); } private void OnInteract(Entity ent, ref InteractHandEvent args) @@ -180,22 +168,22 @@ private void OnInteract(Entity ent, ref InteractHand return; } - if (heretic.ChosenRitual == null) - heretic.ChosenRitual = heretic.KnownRituals[0]; + _uiSystem.OpenUi(ent.Owner, HereticRitualRuneUiKey.Key, args.User); + } - else if (heretic.ChosenRitual != null) - { - var index = heretic.KnownRituals.FindIndex(m => m == heretic.ChosenRitual) + 1; + private void OnRitualChosenMessage(Entity ent, ref HereticRitualMessage args) + { + var user = args.Actor; - if (index >= heretic.KnownRituals.Count) - index = 0; + if (!TryComp(user, out var heretic)) + return; - heretic.ChosenRitual = heretic.KnownRituals[index]; - } + heretic.ChosenRitual = args.ProtoId; var ritualName = Loc.GetString(GetRitual(heretic.ChosenRitual).Name); - _popup.PopupEntity(Loc.GetString("heretic-ritual-switch", ("name", ritualName)), args.User, args.User); + _popup.PopupEntity(Loc.GetString("heretic-ritual-switch", ("name", ritualName)), user, user); } + private void OnInteractUsing(Entity ent, ref InteractUsingEvent args) { if (!TryComp(args.User, out var heretic)) @@ -214,6 +202,7 @@ private void OnInteractUsing(Entity ent, ref Interac return; _audio.PlayPvs(RitualSuccessSound, ent, AudioParams.Default.WithVolume(-3f)); + _popup.PopupEntity(Loc.GetString("heretic-ritual-success"), ent, args.User); Spawn("HereticRuneRitualAnimation", Transform(ent).Coordinates); } diff --git a/Content.Server/ADT/Heretic/EntitySystems/HereticSystem.cs b/Content.Server/ADT/Heretic/EntitySystems/HereticSystem.cs index 4b4410b8ee0..0678bd6dcee 100644 --- a/Content.Server/ADT/Heretic/EntitySystems/HereticSystem.cs +++ b/Content.Server/ADT/Heretic/EntitySystems/HereticSystem.cs @@ -13,6 +13,16 @@ using Content.Server.Atmos.Components; using Content.Shared.Damage; using Content.Server.Heretic.Components; +using Content.Server.Antag; +using Robust.Shared.Random; +using System.Linq; +using Content.Shared.Humanoid; +using Robust.Server.Player; +using Content.Server.Revolutionary.Components; +using Content.Shared.Random.Helpers; +using Content.Shared.Roles.Jobs; +using Robust.Shared.Prototypes; +using Content.Shared.Roles; namespace Content.Server.Heretic.EntitySystems; @@ -23,6 +33,10 @@ public sealed partial class HereticSystem : EntitySystem [Dependency] private readonly HereticKnowledgeSystem _knowledge = default!; [Dependency] private readonly ChatSystem _chat = default!; [Dependency] private readonly SharedEyeSystem _eye = default!; + [Dependency] private readonly AntagSelectionSystem _antag = default!; + [Dependency] private readonly IRobustRandom _rand = default!; + [Dependency] private readonly IPlayerManager _playerMan = default!; + [Dependency] private readonly IPrototypeManager _prot = default!; private float _timer = 0f; private float _passivePointCooldown = 20f * 60f; @@ -32,10 +46,15 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnCompInit); - SubscribeLocalEvent(OnMagicItemExamine); + + SubscribeLocalEvent(OnUpdateTargets); + SubscribeLocalEvent(OnRerollTargets); SubscribeLocalEvent(OnAscension); + SubscribeLocalEvent(OnBeforeDamage); SubscribeLocalEvent(OnDamage); + + SubscribeLocalEvent(OnMagicItemExamine); } public override void Update(float frameTime) @@ -77,34 +96,82 @@ private void OnCompInit(Entity ent, ref ComponentInit args) foreach (var knowledge in ent.Comp.BaseKnowledge) _knowledge.AddKnowledge(ent, ent.Comp, knowledge); - } - private void OnMagicItemExamine(Entity ent, ref ExaminedEvent args) - { - if (!HasComp(args.Examiner)) - return; - - args.PushMarkup(Loc.GetString("heretic-magicitem-examine")); + RaiseLocalEvent(ent, new EventHereticRerollTargets()); } - private void OnBeforeDamage(Entity ent, ref BeforeDamageChangedEvent args) + #region Internal events (target reroll, ascension, etc.) + + private void OnUpdateTargets(Entity ent, ref EventHereticUpdateTargets args) { - // ignore damage from heretic stuff - if (args.Origin.HasValue && HasComp(args.Origin)) - args.Cancelled = true; + ent.Comp.SacrificeTargets = ent.Comp.SacrificeTargets + .Where(target => TryGetEntity(target, out var tent) && Exists(tent)) + .ToList(); + Dirty(ent); // update client } - private void OnDamage(Entity ent, ref DamageModifyEvent args) + + private void OnRerollTargets(Entity ent, ref EventHereticRerollTargets args) { - if (!ent.Comp.Ascended) - return; + // welcome to my linq smorgasbord of doom + // have fun figuring that out - switch (ent.Comp.CurrentPath) + var targets = _antag.GetAliveConnectedPlayers(_playerMan.Sessions) + .Where(ics => ics.AttachedEntity.HasValue && HasComp(ics.AttachedEntity)); + + var eligibleTargets = new List(); + foreach (var target in targets) + eligibleTargets.Add(target.AttachedEntity!.Value); // it can't be null because see .Where(HasValue) + + // no heretics or other baboons + eligibleTargets = eligibleTargets.Where(t => !HasComp(t) && !HasComp(t)).ToList(); + + var pickedTargets = new List(); + + var predicates = new List>(); + + // pick one command staff + predicates.Add(t => HasComp(t)); + + // pick one secoff + predicates.Add(t => + _prot.TryIndex("Security", out var dept) // can we get sec jobs? + && _mind.TryGetMind(t, out var mindid, out _) // does it have a mind? + && TryComp(mindid, out var jobc) && jobc.Prototype.HasValue // does it have a job? + && dept.Roles.Contains(jobc.Prototype!.Value)); // is that job being shitsec? + + // pick one person from the same department + predicates.Add(t => + _mind.TryGetMind(t, out var tmind, out _) && _mind.TryGetMind(ent, out var ownmind, out _) // get minds + && TryComp(tmind, out var tjob) && tjob.Prototype.HasValue // get jobs + && TryComp(ownmind, out var ownjob) && ownjob.Prototype.HasValue + && _prot.EnumeratePrototypes() // compare jobs for all + .Where(d => + d.Roles.Contains(tjob.Prototype.Value) + && d.Roles.Contains(ownjob.Prototype.Value)) // true = same department + .ToList().Count != 0); + + foreach (var predicate in predicates) { - case "Ash": - // nullify heat damage because zased - args.Damage.DamageDict["Heat"] = 0; - break; + var list = eligibleTargets.Where(predicate).ToList(); + + if (list.Count == 0) + continue; + + // pick and take + var picked = _rand.PickAndTake(list); + pickedTargets.Add(picked); } + + // add whatever more until satisfied + for (int i = 0; i <= ent.Comp.MaxTargets - pickedTargets.Count; i++) + if (eligibleTargets.Count > 0) + pickedTargets.Add(_rand.PickAndTake(eligibleTargets)); + + // leave only unique entityuids + pickedTargets = pickedTargets.Distinct().ToList(); + + ent.Comp.SacrificeTargets = pickedTargets.ConvertAll(t => GetNetEntity(t)).ToList(); + Dirty(ent); // update client } // notify the crew of how good the person is and play the cool sound :godo: @@ -153,4 +220,44 @@ private void OnAscension(Entity ent, ref EventHereticAscension break; } } + + #endregion + + #region External events (damage, etc.) + + private void OnBeforeDamage(Entity ent, ref BeforeDamageChangedEvent args) + { + // ignore damage from heretic stuff + if (args.Origin.HasValue && HasComp(args.Origin)) + args.Cancelled = true; + } + private void OnDamage(Entity ent, ref DamageModifyEvent args) + { + if (!ent.Comp.Ascended) + return; + + switch (ent.Comp.CurrentPath) + { + case "Ash": + // nullify heat damage because zased + args.Damage.DamageDict["Heat"] = 0; + break; + } + } + + #endregion + + + + #region Miscellaneous + + private void OnMagicItemExamine(Entity ent, ref ExaminedEvent args) + { + if (!HasComp(args.Examiner)) + return; + + args.PushMarkup(Loc.GetString("heretic-magicitem-examine")); + } + + #endregion } diff --git a/Content.Server/ADT/Heretic/Ritual/CustomBehavior.Sacrifice.cs b/Content.Server/ADT/Heretic/Ritual/CustomBehavior.Sacrifice.cs index 8ce3f7a660a..a43b7d61013 100644 --- a/Content.Server/ADT/Heretic/Ritual/CustomBehavior.Sacrifice.cs +++ b/Content.Server/ADT/Heretic/Ritual/CustomBehavior.Sacrifice.cs @@ -29,6 +29,11 @@ namespace Content.Server.Heretic.Ritual; /// [DataField] public float Max = 1; + /// + /// Should we count only targets? + /// + [DataField] public bool OnlyTargets = false; + // this is awful but it works so i'm not complaining protected SharedMindSystem _mind = default!; protected HereticSystem _heretic = default!; @@ -62,8 +67,9 @@ public override bool Execute(RitualData args, out string? outstr) // get all the dead ones foreach (var look in lookup) { - if (!args.EntityManager.TryGetComponent(look, out var mobstate) - || !args.EntityManager.HasComponent(look)) + if (!args.EntityManager.TryGetComponent(look, out var mobstate) // only mobs + || !args.EntityManager.HasComponent(look) // only humans + || (OnlyTargets && !hereticComp.SacrificeTargets.Contains(args.EntityManager.GetNetEntity(look)))) // only targets continue; if (mobstate.CurrentState == Shared.Mobs.MobState.Dead) @@ -72,7 +78,7 @@ public override bool Execute(RitualData args, out string? outstr) if (uids.Count < Min) { - outstr = Loc.GetString("heretic-ritual-fail-sacrifice"); + outstr = Loc.GetString("heretic-ritual-fail-sacrifice-ineligible"); return false; } @@ -115,5 +121,6 @@ public override void Finalize(RitualData args) // reset it because it refuses to work otherwise. uids = new(); + args.EntityManager.EventBus.RaiseLocalEvent(args.Performer, new EventHereticUpdateTargets()); } } diff --git a/Content.Server/ADT/Magic/ChainFireballComponent.cs b/Content.Server/ADT/Magic/ChainFireballComponent.cs index 0947fb6dfdb..a629f7170f6 100644 --- a/Content.Server/ADT/Magic/ChainFireballComponent.cs +++ b/Content.Server/ADT/Magic/ChainFireballComponent.cs @@ -3,15 +3,10 @@ namespace Content.Server.Magic; [RegisterComponent] public sealed partial class ChainFireballComponent : Component { - /// - /// The added chance of the ball disappearing (in %) - /// - [DataField] public float DisappearChanceDelta = 0.5f; - /// /// The chance of the ball disappearing (in %) /// - [DataField] public float DisappearChance = 0f; + [DataField] public float DisappearChance = 0.05f; public List IgnoredTargets = new(); } diff --git a/Content.Server/ADT/Magic/ChainFireballSystem.cs b/Content.Server/ADT/Magic/ChainFireballSystem.cs index a2544d726df..5909b28a94e 100644 --- a/Content.Server/ADT/Magic/ChainFireballSystem.cs +++ b/Content.Server/ADT/Magic/ChainFireballSystem.cs @@ -30,7 +30,8 @@ private void OnHit(Entity ent, ref ProjectileHitEvent ar if (_random.Prob(ent.Comp.DisappearChance)) return; - Spawn(ent, ent.Comp.IgnoredTargets); + // spawn new fireball on target + Spawn(args.Target, ent.Comp.IgnoredTargets); QueueDel(ent); } @@ -43,7 +44,7 @@ public bool Spawn(EntityUid source, List ignoredTargets) foreach (var look in lookup) { if (ignoredTargets.Contains(look) - || !HasComp(look)) // ignore non mobs whatsoever + || !HasComp(look)) // ignore non mobs continue; mobs.Add(look); @@ -60,17 +61,14 @@ public bool Spawn(EntityUid source, EntityUid target, List ignoredTar { return SpawnFireball(source, target, ignoredTargets); } - private bool SpawnFireball(EntityUid uid, EntityUid target, List ignoredTargets) + public bool SpawnFireball(EntityUid uid, EntityUid target, List ignoredTargets) { var ball = Spawn("FireballChain", Transform(uid).Coordinates); + + // set ignore list if it wasn't set already if (TryComp(ball, out var sfc)) - { sfc.IgnoredTargets = sfc.IgnoredTargets.Count > 0 ? sfc.IgnoredTargets : ignoredTargets; - if (TryComp(uid, out var usfc)) - sfc.DisappearChance = usfc.DisappearChance + sfc.DisappearChanceDelta; - } - // launch it towards the target var fromCoords = Transform(uid).Coordinates; var toCoords = Transform(target).Coordinates; @@ -86,7 +84,7 @@ private bool SpawnFireball(EntityUid uid, EntityUid target, List igno var direction = toCoords.ToMapPos(EntityManager, _transform) - spawnCoords.ToMapPos(EntityManager, _transform); - _gun.ShootProjectile(ball, direction, userVelocity, uid, ball); + _gun.ShootProjectile(ball, direction, userVelocity, uid, uid); return true; } diff --git a/Content.Server/Antag/AntagSelectionSystem.API.cs b/Content.Server/Antag/AntagSelectionSystem.API.cs index 23e77c21028..bbb38f01558 100644 --- a/Content.Server/Antag/AntagSelectionSystem.API.cs +++ b/Content.Server/Antag/AntagSelectionSystem.API.cs @@ -78,6 +78,20 @@ public int GetTotalPlayerCount(IList pool) return count; } + // goob edit + public List GetAliveConnectedPlayers(IList pool) + { + var l = new List(); + foreach (var session in pool) + { + if (session.Status is SessionStatus.Disconnected or SessionStatus.Zombie) + continue; + l.Add(session); + } + return l; + } + // goob edit end + /// /// Gets the number of antagonists that should be present for a given antag definition based on the provided pool. /// A null pool will simply use the player count. diff --git a/Content.Shared/ADT/Heretic/Components/HereticComponent.cs b/Content.Shared/ADT/Heretic/Components/HereticComponent.cs index 7422a662a8b..dbf23d7cceb 100644 --- a/Content.Shared/ADT/Heretic/Components/HereticComponent.cs +++ b/Content.Shared/ADT/Heretic/Components/HereticComponent.cs @@ -14,13 +14,23 @@ public sealed partial class HereticComponent : Component "BreakOfDawn", "HeartbeatOfMansus", "AmberFocus", - "CodexCicatrix", - "CloakOfShadow" + "LivingHeart", }; #endregion - [DataField, AutoNetworkedField] public bool Ascended = false; + [DataField, AutoNetworkedField] public List> KnownRituals = new(); + [DataField] public ProtoId? ChosenRitual; + + /// + /// Contains the list of targets that are eligible for sacrifice. + /// + [DataField, AutoNetworkedField] public List SacrificeTargets = new(); + + /// + /// How much targets can a heretic have? + /// + [DataField, AutoNetworkedField] public int MaxTargets = 5; // hardcoded paths because i hate it // "Ash", "Lock", "Flesh", "Void", "Blade", "Rust" @@ -34,19 +44,13 @@ public sealed partial class HereticComponent : Component /// [DataField, AutoNetworkedField] public int PathStage = 0; - [DataField, AutoNetworkedField] public List> KnownRituals = new(); - [DataField] public ProtoId? ChosenRitual; + [DataField, AutoNetworkedField] public bool Ascended = false; /// /// Used to prevent double casting mansus grasp. /// [ViewVariables(VVAccess.ReadOnly)] public bool MansusGraspActive = false; - /// - /// Doubles the eldritch influence if true. - /// - [ViewVariables(VVAccess.ReadOnly)] public bool CodexActive = false; - /// /// Indicates if a heretic is able to cast advanced spells. /// Requires wearing focus, codex cicatrix, hood or anything else that allows him to do so. diff --git a/Content.Shared/ADT/Heretic/Components/HereticRitualEvents.cs b/Content.Shared/ADT/Heretic/Components/HereticRitualEvents.cs new file mode 100644 index 00000000000..a883af4fd0c --- /dev/null +++ b/Content.Shared/ADT/Heretic/Components/HereticRitualEvents.cs @@ -0,0 +1,22 @@ +using Content.Shared.Heretic.Prototypes; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.ADT.Heretic.Components; + +[Serializable, NetSerializable] +public sealed class HereticRitualMessage : BoundUserInterfaceMessage +{ + public ProtoId ProtoId; + + public HereticRitualMessage(ProtoId protoId) + { + ProtoId = protoId; + } +} + +[Serializable, NetSerializable] +public enum HereticRitualRuneUiKey : byte +{ + Key +} diff --git a/Content.Shared/ADT/Heretic/Heretic.Abilites.cs b/Content.Shared/ADT/Heretic/Heretic.Abilites.cs index 1f1ef18e7fa..2b458adc7b9 100644 --- a/Content.Shared/ADT/Heretic/Heretic.Abilites.cs +++ b/Content.Shared/ADT/Heretic/Heretic.Abilites.cs @@ -66,6 +66,15 @@ public sealed partial class CheckMagicItemEvent : HandledEntityEventArgs, IInven // basic public sealed partial class EventHereticOpenStore : InstantActionEvent { } public sealed partial class EventHereticMansusGrasp : InstantActionEvent { } +public sealed partial class EventHereticLivingHeart : InstantActionEvent { } // opens ui +[Serializable, NetSerializable] public sealed partial class EventHereticLivingHeartActivate : BoundUserInterfaceMessage // triggers the logic +{ + public NetEntity? Target { get; set; } +} +[Serializable, NetSerializable] public enum HereticLivingHeartKey : byte +{ + Key +} // for mobs public sealed partial class EventHereticMansusLink : EntityTargetActionEvent { } diff --git a/Content.Shared/ADT/Heretic/Prototypes/Heretic.Data.cs b/Content.Shared/ADT/Heretic/Prototypes/Heretic.Data.cs index 5bd113a4df4..549d077f136 100644 --- a/Content.Shared/ADT/Heretic/Prototypes/Heretic.Data.cs +++ b/Content.Shared/ADT/Heretic/Prototypes/Heretic.Data.cs @@ -1,12 +1,12 @@ using Content.Shared.Tag; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; +using Robust.Shared.Utility; namespace Content.Shared.Heretic.Prototypes; -[Serializable, NetSerializable] +[Serializable, NetSerializable, DataDefinition] [Prototype("hereticKnowledge")] -[DataDefinition] public sealed partial class HereticKnowledgePrototype : IPrototype { [IdDataField] public string ID { get; private set; } = default!; @@ -27,9 +27,8 @@ public sealed partial class HereticKnowledgePrototype : IPrototype [DataField] public List? ActionPrototypes; } -[Serializable, NetSerializable] +[Serializable, NetSerializable, DataDefinition] [Prototype("hereticRitual")] -[DataDefinition] public sealed partial class HereticRitualPrototype : IPrototype, ICloneable { [IdDataField] public string ID { get; private set; } = default!; @@ -64,6 +63,11 @@ public sealed partial class HereticRitualPrototype : IPrototype, ICloneable /// [DataField] public ProtoId? OutputKnowledge; + /// + /// Icon for ritual in radial menu. + /// + [DataField] public SpriteSpecifier Icon = new SpriteSpecifier.Rsi(new("ADT/Heretic/amber_focus.rsi"), "icon"); + /// Please use this instead of editing the prototype. Shit WILL break if you don't. public object Clone() { @@ -76,9 +80,12 @@ public object Clone() CustomBehaviors = CustomBehaviors, Output = Output, OutputEvent = OutputEvent, - OutputKnowledge = OutputKnowledge + OutputKnowledge = OutputKnowledge, + Icon = Icon }; } } [Serializable, NetSerializable, DataDefinition] public sealed partial class EventHereticAscension : EntityEventArgs { } +[Serializable, NetSerializable, DataDefinition] public sealed partial class EventHereticRerollTargets : EntityEventArgs { } +[Serializable, NetSerializable, DataDefinition] public sealed partial class EventHereticUpdateTargets : EntityEventArgs { } diff --git a/Resources/Audio/ADT/Heretic/Ambience/Antag/Heretic/attributions.yml b/Resources/Audio/ADT/Heretic/Ambience/Antag/Heretic/attributions.yml new file mode 100644 index 00000000000..904fa35f354 --- /dev/null +++ b/Resources/Audio/ADT/Heretic/Ambience/Antag/Heretic/attributions.yml @@ -0,0 +1,4 @@ +- files: ["ascend_ash.ogg", "ascend_blade.ogg", "ascend_flesh.ogg", "ascend_knock.ogg", "ascend_rust.ogg", "ascend_void.ogg", "heretic_gain.ogg", "heretic_gain_intense.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from /tg/station" + source: "https://github.com/tgstation/tgstation/tree/master/sound/music/antag/heretic" \ No newline at end of file diff --git a/Resources/Audio/ADT/Heretic/attributions.yml b/Resources/Audio/ADT/Heretic/attributions.yml new file mode 100644 index 00000000000..571127c8b52 --- /dev/null +++ b/Resources/Audio/ADT/Heretic/attributions.yml @@ -0,0 +1,9 @@ +- files: ["blind.ogg", "castsummon.ogg", "disintegrate.ogg", "hereticknock.ogg", "repulse.ogg", "voidblink.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from /tg/station" + source: "https://github.com/tgstation/tgstation/tree/master/sound/effects/magic" + +- files: ["heartbeat.ogg"] + license: "CC-BY-SA-3.0" + copyright: "made by whateverusername0" + source: "https://knowyourmeme.com/memes/source-i-made-it-up" \ No newline at end of file diff --git a/Resources/Audio/ADT/Heretic/heartbeat.ogg b/Resources/Audio/ADT/Heretic/heartbeat.ogg new file mode 100644 index 0000000000000000000000000000000000000000..acd8dbeb82b0295ff6e6c9d5156ceb333b72cf95 GIT binary patch literal 9088 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 aDQWe$9v%$s?Mr6Y4r6$RrC0&i4)}k^r;05A literal 0 HcmV?d00001 diff --git a/Resources/Locale/ru-RU/ADT/Heretic/abilities/heretic.ftl b/Resources/Locale/ru-RU/ADT/Heretic/abilities/heretic.ftl index 021619e29ad..8d48956375e 100644 --- a/Resources/Locale/ru-RU/ADT/Heretic/abilities/heretic.ftl +++ b/Resources/Locale/ru-RU/ADT/Heretic/abilities/heretic.ftl @@ -17,6 +17,11 @@ heretic-manselink-fail-nomind = У этого существа отсутств heretic-manselink-start = Вы начинаете связывать разум существа со своим. heretic-manselink-start-target = Вы чувствуете, как ваш разум куда-то утягивает... +heretic-livingheart-notargets = Нет доступных целей. Посетите руну. +heretic-livingheart-offstation = {$state} в направлении к {$direction}у! +heretic-livingheart-onstation = {$state} в направелии к {$direction}у! +heretic-livingheart-unknown = Он... не в этой реальности. + ## speech heretic-speech-mansusgrasp = R'CH T'H TR'TH! diff --git a/Resources/Locale/ru-RU/ADT/Heretic/rituals.ftl b/Resources/Locale/ru-RU/ADT/Heretic/rituals.ftl index 70d53c412e1..c84715508f1 100644 --- a/Resources/Locale/ru-RU/ADT/Heretic/rituals.ftl +++ b/Resources/Locale/ru-RU/ADT/Heretic/rituals.ftl @@ -8,13 +8,14 @@ heretic-ritual-noritual = Ритуал не выбран! heretic-ritual-basic-sacrifice = Сердцебиение Мансуса heretic-ritual-basic-focus = Янтарная Призма -heretic-ritual-basic-codex = Кодекс Цикатрикс +heretic-ritual-basic-heart = Беспокойное сердцебиение heretic-ritual-fail-sacrifice = Нет тела для жертвоприношения. heretic-ritual-fail-reagentpuddle = Не имеется следующего реагента: {$reagentname}. heretic-ritual-fail-temperature-hot = Здесь слишком жарко. heretic-ritual-fail-temperature-cold = Здесь недостаточно холодно. heretic-ritual-fail-sacrifice-ash = Недостаточно мертвых или горящих. +heretic-ritual-fail-sacrifice-ineligible = Руна отказывается принять эту жертву. ## side quests heretic-ritual-side-knowledge = Ритуал Знания diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/basic.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/basic.ftl new file mode 100644 index 00000000000..fd1525f3153 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/basic.ftl @@ -0,0 +1,11 @@ +action-heretic-store-name = Открыть магазин знаний +action-heretic-store-desc = Откройте магазин знаний. + +action-heretic-grasp-name = Хватка мансуса +action-heretic-grasp-desc = Направьте силу Старых Богов через свою руку. + +action-heretic-heart-name = Живое сердце +action-heretic-heart-desc = Используйте свое сердце, чтобы определить местоположение жертвенных целей. + +action-heretic-link-name = Связь мансуса +action-heretic-link-desc = Пронзите реальность и соедините умы друг с другом. Радиоклавиша по умолчанию - \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_ash.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_ash.ftl new file mode 100644 index 00000000000..9781cc88ecd --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_ash.ftl @@ -0,0 +1,14 @@ +action-heretic-ash-passage-name = Пепельный Сдвиг +action-heretic-ash-passage-desc = Заклинание малой дальности, позволяющее беспрепятственно проходить сквозь стены. + +action-heretic-ash-blast-name = Вулканический Взрыв +action-heretic-ash-blast-desc = Зарядите огненную вспышку, которая проносится между ближайшими целями, поджигая их. + +action-heretic-ash-rebirth-name = Пламенное Перерождение +action-heretic-ash-rebirth-desc = Заклинание, которое гасит вас и лишает жизненных сил ближайших язычников, охваченных пламенем. + +action-heretic-ash-oath-name = Клятва пламени +action-heretic-ash-oath-desc = В течение минуты вы будете пассивно создавать вокруг себя огненное кольцо. + +action-heretic-ash-cascade-name = Огненный каскад +action-heretic-ash-cascade-desc = Поджигает воздух вокруг вас. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_flesh.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_flesh.ftl new file mode 100644 index 00000000000..d70021ad702 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_flesh.ftl @@ -0,0 +1,5 @@ +action-heretic-flesh-surgery-name = Хирургия плоти +action-heretic-flesh-surgery-desc = Удалите случайный орган жертвы. + +action-heretic-flesh-uncoil-name = ВЫСВОБОЖДЕНИЕ РЕАЛЬНОСТИ +action-heretic-flesh-uncoil-desc = Превратитесь в эльдрический ужас. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_void.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_void.ftl new file mode 100644 index 00000000000..0e003be4a65 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Actions/heretic/path_void.ftl @@ -0,0 +1,8 @@ +action-heretic-void-blast-name = Пусотный выстрел +action-heretic-void-blast-desc = Выстрелите перед собой конусом льда. + +action-heretic-void-phase-name = Пустотный рывой +action-heretic-void-phase-desc = Сделайте рывок сквозь пустоту, сбивая с ног всех вокруг. + +action-heretic-void-pull-name = Тяга к пустоте +action-heretic-void-pull-desc = Притягивайте и повреждайте ближайших язычников. \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml index ec8fb3e73b6..3b3900a00b9 100644 --- a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml +++ b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml @@ -983,104 +983,103 @@ sound: path: /Audio/Voice/Reptilian/reptilian_scream.ogg - # Спальник для Бобо -- type: entity - id: ADTBedSleepingBagBobo - parent: BaseDeployFoldable - name: sleeping bag - description: This is a special cocoon blanket that keeps a person warm during sleep. - components: - - type: Item - size: Small - - type: Sprite - drawdepth: SmallObjects - sprite: ADT/Structures/Furniture/meshok.rsi - layers: - - state: duffel_bag - map: ["unfoldedLayer", "enum.StorageVisualLayers.Base"] - - state: duffel_bag_folded - map: ["foldedLayer"] - visible: false - - state: open_overlay - map: ["enum.StorageVisualLayers.Door"] - - type: Icon - sprite: ADT/Structures/Furniture/meshok.rsi - state: duffel_bag - - type: Tag - tags: - - BodyBag - - type: Clickable - - type: InteractionOutline - - type: MovedByPressure - - type: Physics - bodyType: Dynamic - - type: Transform - noRot: true - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.25,-0.4,0.25,0.1" - density: 20 - mask: - - ItemMask - - type: EntityStorage - capacity: 1 - isCollidableWhenOpen: true - closeSound: - path: /Audio/Misc/zip.ogg - openSound: - path: /Audio/Misc/zip.ogg - - type: EntityStorageLayingDownOverride - - type: Appearance - - type: EntityStorageVisuals - stateDoorOpen: open_overlay - - type: GenericVisualizer - visuals: - enum.FoldedVisuals.State: - foldedLayer: - True: {visible: true} - False: {visible: false} - unfoldedLayer: - True: {visible: false} - False: {visible: true} - - type: Pullable - - type: AntiRottingContainer - - type: ItemSlots - - type: ContainerContainer - containers: - entity_storage: !type:Container - paper_label: !type:ContainerSlot - - type: StaticPrice - price: 50 - # св-ва кровати: - - type: HealOnBuckle - damage: - types: - Poison: -0.1 - Blunt: -0.1 - - type: Strap - position: Down - rotation: -90 - # Слоты - - type: Clothing - quickEquip: false - slots: - - back - -- type: entity - id: ADTBedSleepingBagBoboFolded - name: sleeping bag fold - description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. - parent: ADTBedSleepingBagBobo - suffix: folded - components: - - type: Foldable - folded: true - - type: Item - size: Normal - - type: Strap +# # Спальник для Бобо +# - type: entity +# id: ADTBedSleepingBagBobo +# parent: BaseDeployFoldable +# name: sleeping bag +# description: This is a special cocoon blanket that keeps a person warm during sleep. +# components: +# - type: Item +# size: Small +# - type: Sprite +# drawdepth: SmallObjects +# sprite: ADT/Structures/Furniture/meshok.rsi +# layers: +# - state: duffel_bag +# map: ["unfoldedLayer", "enum.StorageVisualLayers.Base"] +# - state: duffel_bag_folded +# map: ["foldedLayer"] +# visible: false +# - state: open_overlay +# map: ["enum.StorageVisualLayers.Door"] +# - type: Icon +# sprite: ADT/Structures/Furniture/meshok.rsi +# state: duffel_bag +# - type: Tag +# tags: +# - BodyBag +# - type: Clickable +# - type: InteractionOutline +# - type: MovedByPressure +# - type: Physics +# bodyType: Dynamic +# - type: Transform +# noRot: true +# - type: Fixtures +# fixtures: +# fix1: +# shape: +# !type:PhysShapeAabb +# bounds: "-0.25,-0.4,0.25,0.1" +# density: 20 +# mask: +# - ItemMask +# - type: EntityStorage +# capacity: 1 +# isCollidableWhenOpen: true +# closeSound: +# path: /Audio/Misc/zip.ogg +# openSound: +# path: /Audio/Misc/zip.ogg +# - type: EntityStorageLayingDownOverride +# - type: Appearance +# - type: EntityStorageVisuals +# stateDoorOpen: open_overlay +# - type: GenericVisualizer +# visuals: +# enum.FoldedVisuals.State: +# foldedLayer: +# True: {visible: true} +# False: {visible: false} +# unfoldedLayer: +# True: {visible: false} +# False: {visible: true} +# - type: Pullable +# - type: AntiRottingContainer +# - type: ItemSlots +# - type: ContainerContainer +# containers: +# entity_storage: !type:Container +# paper_label: !type:ContainerSlot +# - type: StaticPrice +# price: 50 +# # св-ва кровати: +# - type: HealOnBuckle +# damage: +# types: +# Poison: -0.1 +# Blunt: -0.1 +# - type: Strap +# position: Down +# rotation: -90 +# # Слоты +# - type: Clothing +# quickEquip: false +# slots: +# - back + +# - type: entity +# id: ADTBedSleepingBagBoboFolded +# name: sleeping bag fold +# description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. +# parent: ADTBedSleepingBagBobo +# suffix: folded +# components: +# - type: Foldable +# folded: true +# - type: Item +# size: Normal - type: entity parent: BasePlushie diff --git a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/basic.yml b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/basic.yml index bbb79a22edf..329d3d1f171 100644 --- a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/basic.yml +++ b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/basic.yml @@ -1,8 +1,8 @@ # actions - type: entity id: ActionHereticOpenStore - name: Open Knowledge Store - description: Open the Knowledge Store. + name: action-heretic-store-name + description: action-heretic-store-desc categories: [ HideSpawnMenu ] components: - type: InstantAction @@ -16,8 +16,8 @@ - type: entity id: ActionHereticMansusGrasp - name: Mansus Grasp - description: Channel the power of the Old Gods through your grip. + name: action-heretic-grasp-name + description: action-heretic-grasp-desc categories: [ HideSpawnMenu ] components: - type: InstantAction @@ -30,10 +30,26 @@ - type: HereticAction requireMagicItem: false +- type: entity + id: ActionHereticLivingHeart + name: action-heretic-heart-name + description: action-heretic-heart-desc + categories: [ HideSpawnMenu ] + components: + - type: InstantAction + useDelay: 2 + itemIconStyle: NoItem + icon: + sprite: ADT/Heretic/abilities_heretic.rsi + state: living_heart + event: !type:EventHereticLivingHeart {} + - type: HereticAction + requireMagicItem: false + - type: entity id: ActionHereticMansusLink name: Manse Link - description: This spell allows you to pierce through reality and connect minds to one another via your Mansus Link. + description: Pierce through reality and connect minds to one another. Default radio key is :z categories: [ HideSpawnMenu ] components: - type: EntityTargetAction diff --git a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_ash.yml b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_ash.yml index 1ef52d43100..24367b28e76 100644 --- a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_ash.yml +++ b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_ash.yml @@ -1,7 +1,7 @@ - type: entity id: ActionHereticJaunt - name: Ashen Passage - description: A short range spell that allows you to pass unimpeded through walls. + name: action-heretic-ash-passage-name + description: action-heretic-ash-passage-desc categories: [ HideSpawnMenu ] components: - type: InstantAction @@ -17,8 +17,8 @@ - type: entity id: ActionHereticVolcanoBlast - name: Volcanic Blast - description: Charge up a blast of fire that chains between nearby targets, setting them ablaze. + name: action-heretic-ash-blast-name + description: action-heretic-ash-blast-desc categories: [ HideSpawnMenu ] components: - type: InstantAction @@ -34,8 +34,8 @@ - type: entity id: ActionHereticNightwatcherRebirth - name: Nightwatcher's Rebirth - description: A spell that extinguishes you and drains nearby heathens engulfed in flames of their life force. + name: action-heretic-ash-rebirth-name + description: action-heretic-ash-rebirth-desc categories: [ HideSpawnMenu ] components: - type: InstantAction @@ -51,8 +51,8 @@ - type: entity id: ActionHereticAscension1 - name: Oath of Flame - description: For a minute, you will passively create a ring of fire around you. + name: action-heretic-ash-oath-name + description: action-heretic-ash-oath-desc categories: [ HideSpawnMenu ] components: - type: InstantAction @@ -68,8 +68,8 @@ - type: entity id: ActionHereticAscension2 - name: Fire Cascade - description: Heats the air around you. + name: action-heretic-ash-cascade-name + description: action-heretic-ash-cascade-desc categories: [ HideSpawnMenu ] components: - type: InstantAction diff --git a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_flesh.yml b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_flesh.yml index afc0e8a66af..2c326681290 100644 --- a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_flesh.yml +++ b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_flesh.yml @@ -1,7 +1,7 @@ - type: entity id: ActionHereticFleshSurgery - name: flesh surgery - description: Remove a random organ from someone, or heal your teammates. + name: action-heretic-flesh-surgery-name + description: action-heretic-flesh-surgery-desc components: - type: EntityTargetAction useDelay: 30 @@ -15,8 +15,8 @@ - type: entity id: ActionPolymorphHereticHorror - name: REALITY UNCOIL - description: Transform into an eldritch horror. + name: action-heretic-flesh-uncoil-name + description: action-heretic-flesh-uncoil-desc components: - type: InstantAction useDelay: 60 diff --git a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_void.yml b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_void.yml index 3d9547ac32d..d0cc0d1d756 100644 --- a/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_void.yml +++ b/Resources/Prototypes/ADT/Heretic/Actions/Heretic/path_void.yml @@ -1,7 +1,7 @@ - type: entity id: ActionHereticVoidBlast - name: Void Blast - description: Fire off a cone of ice in front of you. + name: action-heretic-void-blast-name + description: action-heretic-void-blast-desc categories: [ HideSpawnMenu ] components: - type: InstantAction @@ -17,8 +17,8 @@ - type: entity id: ActionHereticVoidPhase - name: Void Phase - description: Shift through the void, knocking down everyone around you. + name: action-heretic-void-phase-name + description: action-heretic-void-phase-desc categories: [ HideSpawnMenu ] components: - type: WorldTargetAction @@ -36,8 +36,8 @@ - type: entity id: ActionHereticVoidPull - name: Void Pull - description: Pull and damage nearby heathens. + name: action-heretic-void-pull-name + description: action-heretic-void-pull-desc categories: [ HideSpawnMenu ] components: - type: InstantAction diff --git a/Resources/Prototypes/ADT/Heretic/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/ADT/Heretic/Entities/Clothing/OuterClothing/armor.yml index f467c3753c3..54af67e0736 100644 --- a/Resources/Prototypes/ADT/Heretic/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/ADT/Heretic/Entities/Clothing/OuterClothing/armor.yml @@ -17,6 +17,7 @@ Piercing: 0.50 Heat: 0.50 Caustic: 0.50 + staminaModifier: 0.5 - type: ExplosionResistance damageCoefficient: 0.25 - type: ToggleableClothing diff --git a/Resources/Prototypes/ADT/Heretic/Entities/Objects/Weapons/Melee/heretic_blades.yml b/Resources/Prototypes/ADT/Heretic/Entities/Objects/Weapons/Melee/heretic_blades.yml index 4750601e04a..31ba63ac2c7 100644 --- a/Resources/Prototypes/ADT/Heretic/Entities/Objects/Weapons/Melee/heretic_blades.yml +++ b/Resources/Prototypes/ADT/Heretic/Entities/Objects/Weapons/Melee/heretic_blades.yml @@ -15,6 +15,8 @@ damage: types: Slash: 17.5 + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: Item size: Normal sprite: ADT/Heretic/Blades/blade_blade-inhand.rsi @@ -40,6 +42,8 @@ types: Heat: 10 Slash: 7.5 + soundHit: + path: /Audio/Weapons/bladeslice.ogg - type: entity parent: HereticBladeBase @@ -112,3 +116,5 @@ types: Cold: 10 Slash: 7.5 + soundHit: + path: /Audio/Weapons/bladeslice.ogg diff --git a/Resources/Prototypes/ADT/Heretic/Entities/Structures/Specific/Heretic/ritual_rune.yml b/Resources/Prototypes/ADT/Heretic/Entities/Structures/Specific/Heretic/ritual_rune.yml index d24300b0bad..a543dfcddbe 100644 --- a/Resources/Prototypes/ADT/Heretic/Entities/Structures/Specific/Heretic/ritual_rune.yml +++ b/Resources/Prototypes/ADT/Heretic/Entities/Structures/Specific/Heretic/ritual_rune.yml @@ -11,6 +11,10 @@ sprite: ADT/Heretic/ritual_rune.rsi state: icon - type: Clickable + - type: UserInterface + interfaces: + enum.HereticRitualRuneUiKey.Key: + type: HereticRitualRuneBoundUserInterface - type: entity id: HereticRuneRitualDrawAnimation diff --git a/Resources/Prototypes/ADT/Heretic/Heretic/heretic_knowledge.yml b/Resources/Prototypes/ADT/Heretic/Heretic/heretic_knowledge.yml index b1817559e5e..68ad60b4e74 100644 --- a/Resources/Prototypes/ADT/Heretic/Heretic/heretic_knowledge.yml +++ b/Resources/Prototypes/ADT/Heretic/Heretic/heretic_knowledge.yml @@ -16,17 +16,11 @@ - AmberFocus - type: hereticKnowledge - id: CodexCicatrix - # ritualPrototypes: - -- type: hereticKnowledge - id: CloakOfShadow - # actionPrototypes: - -- type: hereticKnowledge - id: RitualOfKnowledge + id: LivingHeart ritualPrototypes: - - RitualOfKnowledge + - LivingHeart + actionPrototypes: + - ActionHereticLivingHeart # ash path - type: hereticKnowledge @@ -43,6 +37,8 @@ - type: hereticKnowledge id: AshenShift + path: Ash + sideKnowledge: true stage: 3 actionPrototypes: - ActionHereticJaunt @@ -61,6 +57,8 @@ - type: hereticKnowledge id: MaskOfMadness + path: Ash + sideKnowledge: true stage: 6 ritualPrototypes: - MaskOfMadness @@ -72,6 +70,8 @@ - type: hereticKnowledge id: NightwatcherRebirth + path: Ash + sideKnowledge: true stage: 8 actionPrototypes: - ActionHereticNightwatcherRebirth @@ -106,6 +106,8 @@ - type: hereticKnowledge id: ImperfectRitual + path: Flesh + sideKnowledge: true stage: 3 ritualPrototypes: - ImperfectRitual @@ -124,6 +126,8 @@ - type: hereticKnowledge id: RawRitual + path: Flesh + sideKnowledge: true stage: 6 ritualPrototypes: - RawRitual @@ -135,6 +139,8 @@ - type: hereticKnowledge id: LonelyRitual + path: Flesh + sideKnowledge: true stage: 8 ritualPrototypes: - LonelyRitual @@ -168,6 +174,8 @@ - type: hereticKnowledge id: AristocratWay + path: Void + sideKnowledge: true stage: 3 event: !type:HereticAristocratWayEvent @@ -185,6 +193,8 @@ - type: hereticKnowledge id: VoidPhase + path: Void + sideKnowledge: true stage: 6 actionPrototypes: - ActionHereticVoidPhase @@ -196,6 +206,8 @@ - type: hereticKnowledge id: VoidPull + path: Void + sideKnowledge: true stage: 8 actionPrototypes: - ActionHereticVoidPull @@ -214,8 +226,15 @@ event: !type:HereticAscensionVoidEvent # side paths +- type: hereticKnowledge + id: RitualOfKnowledge + sideKnowledge: true + ritualPrototypes: + - RitualOfKnowledge + - type: hereticKnowledge id: ArmorerRitual + sideKnowledge: true stage: 3 ritualPrototypes: - ArmorerRitual diff --git a/Resources/Prototypes/ADT/Heretic/Heretic/heretic_rituals.yml b/Resources/Prototypes/ADT/Heretic/Heretic/heretic_rituals.yml index 6b503653915..d408c7c5c49 100644 --- a/Resources/Prototypes/ADT/Heretic/Heretic/heretic_rituals.yml +++ b/Resources/Prototypes/ADT/Heretic/Heretic/heretic_rituals.yml @@ -1,23 +1,49 @@ -# basic +### basic + +# Heartbeat of the Mansus (sacrifice) - type: hereticRitual id: Sacrifice name: heretic-ritual-basic-sacrifice + icon: + sprite: Mobs/Species/Human/organs.rsi + state: heart-on customBehaviors: - !type:RitualSacrificeBehavior + onlyTargets: true +# Amber Focus - type: hereticRitual id: AmberFocus name: heretic-ritual-basic-focus + icon: + sprite: ADT/Heretic/amber_focus.rsi + state: icon requiredTags: GlassShard: 1 Eyes: 1 output: ClothingNeckAmberFocus: 1 -# ash path +# Relentless Heartbeat (sacrifice target reroll) +- type: hereticRitual + id: LivingHeart + name: heretic-ritual-basic-heart + requiredTags: + Heart: 1 + Pen: 1 + Paper: 1 + outputEvent: !type:EventHereticRerollTargets + + + +### ash path + - type: hereticRitual id: BladeAsh name: heretic-ritual-ash-blade + icon: + sprite: ADT/Heretic/Blades/blade_ash.rsi + state: icon requiredTags: Knife: 1 Matchstick: 1 @@ -27,6 +53,9 @@ - type: hereticRitual id: MaskOfMadness name: heretic-ritual-ash-mask + icon: + sprite: ADT/Heretic/mad_mask.rsi + state: icon requiredTags: GasMask: 1 Candle: 4 @@ -37,6 +66,9 @@ - type: hereticRitual id: AscensionAsh name: heretic-ritual-ash-ascend + icon: + sprite: ADT/Heretic/abilities_heretic.rsi + state: ashlord_rite2 customBehaviors: - !type:RitualAshAscendBehavior min: 3 @@ -44,10 +76,16 @@ outputKnowledge: AshlordRite outputEvent: !type:EventHereticAscension -# flesh path + + +### flesh path + - type: hereticRitual id: BladeFlesh name: heretic-ritual-flesh-blade + icon: + sprite: ADT/Heretic/Blades/blade_flesh.rsi + state: icon customBehaviors: - !type:RitualReagentPuddleBehavior reagent: Blood @@ -59,14 +97,20 @@ - type: hereticRitual id: ImperfectRitual name: heretic-ritual-flesh-ghoul + icon: + sprite: Mobs/Species/Skeleton/parts.rsi + state: full customBehaviors: - !type:RitualMuteGhoulifyBehavior - requiredEntityNames: - poppy: 1 + requiredTags: + Poppy: 1 - type: hereticRitual id: RawRitual name: heretic-ritual-flesh-prophet + icon: + sprite: ADT/Heretic/eldritch_mobs.rsi + state: raw_prophet customBehaviors: - !type:RitualReagentPuddleBehavior reagent: Blood @@ -79,6 +123,9 @@ - type: hereticRitual id: LonelyRitual name: heretic-ritual-flesh-stalker + icon: + sprite: ADT/Heretic/eldritch_mobs.rsi + state: stalker customBehaviors: - !type:RitualReagentPuddleBehavior reagent: Blood @@ -93,6 +140,9 @@ - type: hereticRitual id: AscensionFlesh name: heretic-ritual-flesh-ascend + icon: + sprite: ADT/Heretic/abilities_heretic.rsi + state: final_hymn customBehaviors: - !type:RitualSacrificeBehavior min: 4 @@ -100,10 +150,16 @@ outputKnowledge: PriestFinalHymn outputEvent: !type:EventHereticAscension -# void path + + +### void path + - type: hereticRitual id: BladeVoid name: heretic-ritual-void-blade + icon: + sprite: ADT/Heretic/Blades/blade_void.rsi + state: icon customBehaviors: - !type:RitualTemperatureBehavior minThreshold: 0 # ~= -1 celcius. or sub zero temperatures @@ -115,6 +171,9 @@ - type: hereticRitual id: AscensionVoid name: heretic-ritual-void-ascend + icon: + sprite: Interface/Alerts/temperature.rsi + state: cold3 customBehaviors: - !type:RitualSacrificeBehavior min: 3 @@ -124,16 +183,25 @@ outputKnowledge: WaltzAtTheEndOfTime outputEvent: !type:EventHereticAscension -# side path + + +### side knowledge + - type: hereticRitual id: RitualOfKnowledge name: heretic-ritual-side-knowledge + icon: + sprite: Objects/Misc/books.rsi + state: book_icon customBehaviors: - !type:RitualKnowledgeBehavior - type: hereticRitual id: ArmorerRitual name: heretic-ritual-side-armor + icon: + sprite: ADT/Heretic/eldritch_armor.rsi + state: icon requiredTags: Table: 1 GasMask: 1 diff --git a/Resources/Prototypes/ADT/Heretic/radio_channels.yml b/Resources/Prototypes/ADT/Heretic/radio_channels.yml index 1ce51f47345..73f3afe0255 100644 --- a/Resources/Prototypes/ADT/Heretic/radio_channels.yml +++ b/Resources/Prototypes/ADT/Heretic/radio_channels.yml @@ -1,7 +1,7 @@ - type: radioChannel id: Mansus name: chat-radio-mansus - keycode: 'z' + keycode: 'з' frequency: 80085 color: "#237500" longRange: true \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index cc7ed82bd9b..0f73d674734 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -202,6 +202,7 @@ tags: - ClownMask - WhitelistChameleon + - Mask # goob-edit - type: HideLayerClothing slots: - Snout diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index bec4dd73653..232f6e5a67f 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -199,6 +199,8 @@ # Goobstation - changelings & heretics enum.StoreUiKey.Key: type: StoreBoundUserInterface + enum.HereticLivingHeartKey.Key: # goob edit - heretics + type: LivingHeartMenuBoundUserInterface - type: Puller - type: Speech speechSounds: Alto diff --git a/Resources/Textures/ADT/Heretic/abilities_heretic.rsi/living_heart.png b/Resources/Textures/ADT/Heretic/abilities_heretic.rsi/living_heart.png new file mode 100644 index 0000000000000000000000000000000000000000..d9c7a52e55488cb201a8821234007963fdc4e22c GIT binary patch literal 735 zcmV<50wDc~P)Px%nMp)JR9Hv7SHDkNF%Z6l{AdMKL6KUdpe`9;W8e=!3@nI&jS+QW0WmgX)PDh~ zI}B`y33chfU%-HvvsADkA))|kd4vR=-E;0a=h%Kkcu4Z{?7Q#2`|fP#U@-dZ_j~-z zp%e810Lpo>q960!q5;q=JdXtoxB2vtkj)%=RL)DavG@r#l3eSl3IIiJujZ)nosW&! z`OodX2Ee1A{_qLz|8)SrY2Y&-{2l+_Ugvvv+v;cl<*8E20Yz#@B=PHFC1fpXVTgg? zB#vPs>cD6K^C1nFK3wz3hEG?>oY6qFp3b+OV_O3fP+K#uXKpLSKrEv@UA<7~ruE~i z7ScwFf!H4K@(9rTt0Ct<>hFok*bo2=1H1}+wT_Xa^ZwKSMp7OC$(zRN24iWQ<+V7tR@7C3s0TH4FTqyPdvS{ax zM}IiC0$aN^XwEj24se{7?tp`^wIDI;tpcuCo__@JYjsC4u%65q+gt}O7J{lkLTfX? z=OBn5?TctFcp0#Pa1HF0>ag_rtC@0s^Ct!1r9D{9_XUvw-(J9V!I{AS5eN=m2~scM z!O*!uJP$~u3k&KPex4p}s0HNo>QMM?M%o-4x2)sXJ?gOLth^+5K4UjS4P8RD_sti*F)CVYUlxO=Hol3b4 z(S>BoXaEh{cLR2Ra|Ua#iD8B8r!J?lXTunWd@kJ!@gPM2R8z}pFylJq`xR Date: Tue, 15 Oct 2024 22:16:05 +0300 Subject: [PATCH 25/34] Auto CL update (#640) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index a6a27fd7423..93871810800 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3608,3 +3608,19 @@ Entries: - {message: 'Исправлен спам ивентами. Гойда?', type: Fix} time: '2024-10-13T23:08:02Z' id: 447 + - author: Inconnu + changes: + - {message: теперь ревенант болтирует шлюзы вместо заваривания, type: Tweak} + time: '2024-10-14T06:29:31Z' + id: 448 + - author: Ratyyy + changes: + - {message: Древние боги перестали принимать в жертву случайных людей!, type: Add} + - {message: Еретики научились грамотно выбирать ритуалы используя круговую голограмму!, + type: Tweak} + - {message: Сила пустотного втягивания ослабла и теперь наносит только в 2 раза + больше повреждений!, type: Tweak} + - {message: 'Еретики приняли решение стать более гуманными, и потому больше + не используют органы внутри тел для ритуалов!', type: Fix} + time: '2024-10-14T16:45:53Z' + id: 449 From 828ca0e6fa2505267418716b7d5e68b7c806bbb2 Mon Sep 17 00:00:00 2001 From: Inconnu <177014427+Inconnu1337@users.noreply.github.com> Date: Wed, 16 Oct 2024 02:02:03 +0300 Subject: [PATCH 26/34] =?UTF-8?q?=D0=9D=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C?= =?UTF-8?q?=D1=88=D0=BE=D0=B9=20=D1=80=D0=B5=D0=B1=D0=B0=D0=BB=D0=B0=D0=BD?= =?UTF-8?q?=D1=81=20(#647)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR в пре все наглядно понятно ## Почему / Баланс **Ссылка на публикацию в Discord** - [Предложения](https://discord.com/channels/901772674865455115/1295119394866991204/1295119394866991204) - [Предложения](https://discord.com/channels/901772674865455115/1295111112479608893/1295111112479608893) ## Требования - [х] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [х] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре **Чейнджлог** :cl: - add: Добавлен шлем спецназа синдиката в аплинк - tweak: Изменены цены и статистики некоторых предметов в аплинке(подробнее см. ПР) --------- Co-authored-by: bananchiki <87230164+Darkiich@users.noreply.github.com> --- .../prototypes/Catalog/store/uplink-catalog.ftl | 3 +++ .../Prototypes/ADT/Catalog/uplink_catalog.yml | 10 ++++++++++ Resources/Prototypes/Catalog/uplink_catalog.yml | 14 +++++++------- .../Prototypes/Entities/Clothing/Hands/gloves.yml | 1 + .../Prototypes/Entities/Clothing/Head/helmets.yml | 1 + .../Entities/Clothing/OuterClothing/armor.yml | 5 +++-- 6 files changed, 25 insertions(+), 9 deletions(-) diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/store/uplink-catalog.ftl index ccc3a369658..75669c1c7d0 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/store/uplink-catalog.ftl @@ -86,3 +86,6 @@ uplink-intruder-bundle-desc = Набор, содержащий в себе са uplink-blackmail-bundle-name = набор шантажиста uplink-blackmail-bundle-desc = Набор для относительно эффективных (в зависимости от вашей цели) угроз, а именно, три с-4, два продвинутых передатчика сигналов, голосовую маску и карту агента. + +uplink-syndicate-helmet-name = шлем спецназа +uplink-syndicate-helmet-desc = Очень прочный шлем, широко используемый военизированными организациями. Его украшает ужасный узор из красных и чёрных полос. Да прибудет с вами робаст diff --git a/Resources/Prototypes/ADT/Catalog/uplink_catalog.yml b/Resources/Prototypes/ADT/Catalog/uplink_catalog.yml index c369befee16..db8c79d31d9 100644 --- a/Resources/Prototypes/ADT/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/ADT/Catalog/uplink_catalog.yml @@ -431,3 +431,13 @@ Telecrystal: 20 categories: - UplinkPointless + +- type: listing + id: ADTUplinkSyndicateHelmet + name: uplink-syndicate-helmet-name + description: uplink-syndicate-helmet-desc + productEntity: ClothingHeadHelmetSwatSyndicate + cost: + Telecrystal: 2 + categories: + - UplinkWearables diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index 626edbec3fa..cac8974be81 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -103,7 +103,7 @@ discountDownTo: Telecrystal: 4 cost: - Telecrystal: 8 + Telecrystal: 6 # ADT-Tweak 8>6 categories: - UplinkWeaponry @@ -643,7 +643,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 5 + Telecrystal: 4 # ADT-Tweak 5>4 categories: - UplinkChemicals @@ -656,7 +656,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 4 + Telecrystal: 3 # ADT-Tweak 4>3 categories: - UplinkChemicals @@ -669,7 +669,7 @@ discountDownTo: Telecrystal: 2 cost: - Telecrystal: 4 + Telecrystal: 3 # ADT-Tweak 4>3 categories: - UplinkChemicals @@ -706,9 +706,9 @@ productEntity: ClothingBackpackDuffelSyndicateMedicalBundleFilled discountCategory: rareDiscounts discountDownTo: - Telecrystal: 12 + Telecrystal: 6 cost: - Telecrystal: 20 + Telecrystal: 12 # ADT-Tweak 20>12 categories: - UplinkChemicals conditions: @@ -1546,7 +1546,7 @@ icon: { sprite: /Textures/Clothing/OuterClothing/Armor/syndie-raid.rsi, state: icon } productEntity: ClothingBackpackDuffelSyndicateRaidBundle cost: - Telecrystal: 8 + Telecrystal: 12 # ADT-Tweak 8>13 categories: - UplinkWearables conditions: diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 96c640b4288..dc7a053a7eb 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -421,6 +421,7 @@ damage: types: Blunt: 8 + Structural: 10 # ADT-Tweak soundHit: collection: Punch animation: WeaponArcFist diff --git a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml index 625ef7a0561..6c8a93f3dfa 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/helmets.yml @@ -386,6 +386,7 @@ Slash: 0.85 Piercing: 0.85 Heat: 0.85 + staminaModifier: 0.3 # ADT-Tweak #Bone Helmet - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml index 73f4c347306..392e129b0ef 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/armor.yml @@ -122,11 +122,12 @@ Piercing: 0.35 Heat: 0.35 Caustic: 0.5 + staminaModifier: 0.3 # ADT-Tweak - type: ExplosionResistance damageCoefficient: 0.35 - type: ClothingSpeedModifier - walkModifier: 0.9 - sprintModifier: 0.9 + walkModifier: 1.0 # ADT-Tweak 0.9>1.0 + sprintModifier: 1.0 # ADT-Tweak 0.9>1.0 #Shoulder mounted flashlight - type: ToggleableLightVisuals spriteLayer: light From 97d5844744898fe3be66a27878ca42ef9f820096 Mon Sep 17 00:00:00 2001 From: Mirokko Date: Wed, 16 Oct 2024 16:34:54 +0300 Subject: [PATCH 27/34] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D1=81=D0=BF?= =?UTF-8?q?=D0=B0=D0=BB=D0=BA=D0=B8=20=D0=B1=D0=BE=D0=B1=D0=BE=20(#648)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR ## Почему / Баланс **Ссылка на публикацию в Discord** ## Техническая информация ## Медиа ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** --- .../Objects/personalization_items.yml | 197 +++++++++--------- 1 file changed, 100 insertions(+), 97 deletions(-) diff --git a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml index 3b3900a00b9..be3db296f59 100644 --- a/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml +++ b/Resources/Prototypes/ADT/Entities/Personalization/Objects/personalization_items.yml @@ -983,103 +983,106 @@ sound: path: /Audio/Voice/Reptilian/reptilian_scream.ogg -# # Спальник для Бобо -# - type: entity -# id: ADTBedSleepingBagBobo -# parent: BaseDeployFoldable -# name: sleeping bag -# description: This is a special cocoon blanket that keeps a person warm during sleep. -# components: -# - type: Item -# size: Small -# - type: Sprite -# drawdepth: SmallObjects -# sprite: ADT/Structures/Furniture/meshok.rsi -# layers: -# - state: duffel_bag -# map: ["unfoldedLayer", "enum.StorageVisualLayers.Base"] -# - state: duffel_bag_folded -# map: ["foldedLayer"] -# visible: false -# - state: open_overlay -# map: ["enum.StorageVisualLayers.Door"] -# - type: Icon -# sprite: ADT/Structures/Furniture/meshok.rsi -# state: duffel_bag -# - type: Tag -# tags: -# - BodyBag -# - type: Clickable -# - type: InteractionOutline -# - type: MovedByPressure -# - type: Physics -# bodyType: Dynamic -# - type: Transform -# noRot: true -# - type: Fixtures -# fixtures: -# fix1: -# shape: -# !type:PhysShapeAabb -# bounds: "-0.25,-0.4,0.25,0.1" -# density: 20 -# mask: -# - ItemMask -# - type: EntityStorage -# capacity: 1 -# isCollidableWhenOpen: true -# closeSound: -# path: /Audio/Misc/zip.ogg -# openSound: -# path: /Audio/Misc/zip.ogg -# - type: EntityStorageLayingDownOverride -# - type: Appearance -# - type: EntityStorageVisuals -# stateDoorOpen: open_overlay -# - type: GenericVisualizer -# visuals: -# enum.FoldedVisuals.State: -# foldedLayer: -# True: {visible: true} -# False: {visible: false} -# unfoldedLayer: -# True: {visible: false} -# False: {visible: true} -# - type: Pullable -# - type: AntiRottingContainer -# - type: ItemSlots -# - type: ContainerContainer -# containers: -# entity_storage: !type:Container -# paper_label: !type:ContainerSlot -# - type: StaticPrice -# price: 50 -# # св-ва кровати: -# - type: HealOnBuckle -# damage: -# types: -# Poison: -0.1 -# Blunt: -0.1 -# - type: Strap -# position: Down -# rotation: -90 -# # Слоты -# - type: Clothing -# quickEquip: false -# slots: -# - back - -# - type: entity -# id: ADTBedSleepingBagBoboFolded -# name: sleeping bag fold -# description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. -# parent: ADTBedSleepingBagBobo -# suffix: folded -# components: -# - type: Foldable -# folded: true -# - type: Item -# size: Normal + # Спальник для Бобо +- type: entity + id: ADTBedSleepingBagBobo + parent: BaseDeployFoldable + name: sleeping bag + description: This is a special cocoon blanket that keeps a person warm during sleep. + components: + - type: Item + size: Small + - type: Sprite + drawdepth: SmallObjects + sprite: ADT/Structures/Furniture/meshok.rsi + layers: + - state: duffel_bag + map: ["unfoldedLayer", "enum.StorageVisualLayers.Base"] + - state: duffel_bag_folded + map: ["foldedLayer"] + visible: false + - state: open_overlay + map: ["enum.StorageVisualLayers.Door"] + - type: Icon + sprite: ADT/Structures/Furniture/meshok.rsi + state: duffel_bag + - type: Tag + tags: + - BodyBag + - type: Clickable + - type: InteractionOutline + - type: MovedByPressure + - type: Physics + bodyType: Dynamic + - type: Transform + noRot: true + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.25,-0.4,0.25,0.1" + density: 20 + mask: + - ItemMask + - type: EntityStorage + capacity: 1 + isCollidableWhenOpen: true + closeSound: + path: /Audio/Misc/zip.ogg + openSound: + path: /Audio/Misc/zip.ogg + - type: EntityStorageLayingDownOverride + - type: Appearance + - type: EntityStorageVisuals + stateDoorOpen: open_overlay + - type: GenericVisualizer + visuals: + enum.FoldedVisuals.State: + foldedLayer: + True: {visible: true} + False: {visible: false} + unfoldedLayer: + True: {visible: false} + False: {visible: true} + - type: Pullable + - type: AntiRottingContainer + - type: ItemSlots + - type: ContainerContainer + containers: + entity_storage: !type:Container + paper_label: !type:ContainerSlot + - type: StaticPrice + price: 50 + # св-ва кровати: + - type: HealOnBuckle + damage: + types: + Poison: -0.1 + Blunt: -0.1 + - type: Strap + enabled: true + position: Down + rotation: -90 + # Слоты + - type: Clothing + quickEquip: false + slots: + - back + +- type: entity + id: ADTBedSleepingBagBoboFolded + name: sleeping bag fold + description: A plastic bag designed for the storage and transportation of cadavers to stop body decomposition. + parent: ADTBedSleepingBagBobo + suffix: folded + components: + - type: Foldable + folded: true + - type: Item + size: Normal + - type: Strap + enabled: false - type: entity parent: BasePlushie From 0d0ab6409ffa260d4a53947ffa781dd6dd4c9333 Mon Sep 17 00:00:00 2001 From: Mirokko Date: Wed, 16 Oct 2024 23:45:32 +0300 Subject: [PATCH 28/34] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B2=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D1=8C=20=D0=BD=D0=B0=D0=BF=D0=B8=D1=81=D0=B0=D1=82=D1=8C?= =?UTF-8?q?=20=D0=BC=D0=BE=D0=BD=D0=BE=D1=88=D0=B8=D1=80=D0=B8=D0=BD=D0=BD?= =?UTF-8?q?=D1=8B=D0=BC=20=D0=BF=D0=BE=D0=B4=D1=87=D0=B5=D1=80=D0=BA=D0=BE?= =?UTF-8?q?=D0=BC=20=D1=85=D0=B5-=D1=85=D0=B5=20(#644)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR см. название ## Почему / Баланс Я хотел бы рисовать ровные таблицы, для этого мне нужен данный тэг. Возможно, это поможет людям в рисовании с помощью ASCII символов. **Ссылка на публикацию в Discord** НЕТУ ## Техническая информация ## Медиа ![image](https://github.com/user-attachments/assets/ebb09f36-f261-4c2b-8571-b1b7394b3253) для ![image](https://github.com/user-attachments/assets/6440653b-73e3-427b-812b-76822ab9576d) Вот небольшой пример того, что хочу видеть: ![image](https://github.com/user-attachments/assets/2f9e34cc-8e54-4225-b6b1-b987c202ca48) Ладно-ладно, вот вам рандомный рисуночек (сверху это без тэга): ![image](https://github.com/user-attachments/assets/2eebae4a-2ca0-43fd-b4b7-74b8c07f7b14) ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: - add: Добавлена возможность написать на бумаге моноширинным шрифтом с помощью тега [mono] --------- Co-authored-by: Tymur Valiiev --- .../UserInterface/RichText/MonospaceTag.cs | 38 +++++++++++++++++++ Content.Client/Paper/UI/PaperWindow.xaml.cs | 4 +- 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 Content.Client/ADT/UserInterface/RichText/MonospaceTag.cs diff --git a/Content.Client/ADT/UserInterface/RichText/MonospaceTag.cs b/Content.Client/ADT/UserInterface/RichText/MonospaceTag.cs new file mode 100644 index 00000000000..44f561a6a99 --- /dev/null +++ b/Content.Client/ADT/UserInterface/RichText/MonospaceTag.cs @@ -0,0 +1,38 @@ +using System.Linq; +using Robust.Client.Graphics; +using Robust.Client.ResourceManagement; +using Robust.Client.UserInterface.RichText; +using Robust.Shared.IoC; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Client.ADT.UserInterface.RichText; + +public sealed class MonospaceTag : IMarkupTag +{ + public const string MonospaceFont = "Monospace"; + + [Dependency] private readonly IResourceCache _resourceCache = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + + public string Name => "mono"; + + /// + public void PushDrawContext(MarkupNode node, MarkupDrawingContext context) + { + var font = FontTag.CreateFont( + context.Font, + node, + _resourceCache, + _prototypeManager, + MonospaceFont + ); + context.Font.Push(font); + } + + /// + public void PopDrawContext(MarkupNode node, MarkupDrawingContext context) + { + context.Font.Pop(); + } +} diff --git a/Content.Client/Paper/UI/PaperWindow.xaml.cs b/Content.Client/Paper/UI/PaperWindow.xaml.cs index 81b831068c3..79bd37d6332 100644 --- a/Content.Client/Paper/UI/PaperWindow.xaml.cs +++ b/Content.Client/Paper/UI/PaperWindow.xaml.cs @@ -10,6 +10,7 @@ using Robust.Shared.Utility; using Robust.Client.UserInterface.RichText; using Robust.Shared.Input; +using Content.Client.ADT.UserInterface.RichText; namespace Content.Client.Paper.UI { @@ -43,7 +44,8 @@ public sealed partial class PaperWindow : BaseWindow typeof(BulletTag), typeof(ColorTag), typeof(HeadingTag), - typeof(ItalicTag) + typeof(ItalicTag), + typeof(MonospaceTag), // ADT-Tweak }; public event Action? OnSaved; From 4465996de42cdda64fe172c4454a401ff516a6aa Mon Sep 17 00:00:00 2001 From: Filo <98309485+Filokini@users.noreply.github.com> Date: Fri, 18 Oct 2024 04:09:19 +0500 Subject: [PATCH 29/34] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D0=B1=D0=B5?= =?UTF-8?q?=D0=BB=D1=8C=D1=8F=20=D0=B8=20=D0=BE=D1=82=D0=BE=D0=B1=D1=80?= =?UTF-8?q?=D0=B0=D0=B6=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=B0=D0=B3=D0=B8?= =?UTF-8?q?=D1=81=D1=82=D1=80=D0=B0=D1=82=D0=B0=20(#645)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit АВД и Пилот теперь могут выбрать нижнее белье. Также магистрат добавлен в список кмд :cl: Filo - fix: АВД и пилот получили возможность выбрать бельё - fix: Магистрат начал отображаться как член командования. - fix: Арахниды теперь надевают трусы пониз комбинезона. --- .../Prototypes/ADT/Roles/Jobs/Security/brigmedic.yml | 8 +------- Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml | 10 ++++++++++ .../Prototypes/Entities/Mobs/Species/arachnid.yml | 5 +++++ Resources/Prototypes/Roles/Jobs/departments.yml | 1 + 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/Resources/Prototypes/ADT/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/ADT/Roles/Jobs/Security/brigmedic.yml index 555977fd041..c0aca988a94 100644 --- a/Resources/Prototypes/ADT/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/ADT/Roles/Jobs/Security/brigmedic.yml @@ -28,15 +28,8 @@ id: BrigmedicGear equipment: jumpsuit: ADTClothingUniformBrigmedicJumpsuitTurtleneck - outerClothing: ADTClothingOuterCoatBrigmedicWB - back: ClothingBackpackBrigmedicFilled - shoes: ClothingShoesBootsJackSec - gloves: ClothingHandsGlovesLatex - eyes: ADTClothingEyesGlassesMed - head: ADTClothingHeadHatBeretBrigmedic id: BrigmedicPDA ears: ClothingHeadsetBrigmedic - belt: ClothingBeltMedicalFilled pocket1: WeaponPistolMk58 # underwearb: ClothingUnderwearBottomBoxersWhite # Sirena-Underwear # socks: ClothingUnderwearSocksNormal @@ -45,3 +38,4 @@ # innerClothingSkirt: ADTClothingUniformSkirtBrigmedicTurtleneck # satchel: ClothingBackpackSatchelBrigmedicFilled # duffelbag: ClothingBackpackDuffelBrigmedicFilled + diff --git a/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml b/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml index f7bf82a044d..0a7f9104ec2 100644 --- a/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Corvax/Loadouts/role_loadouts.yml @@ -6,6 +6,11 @@ - LawyerJumpsuit - CommonBackpack - Survival + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Trinkets - GroupSpeciesBreathTool @@ -19,5 +24,10 @@ - SecurityBelt - SecurityShoes - Survival + # ADT underwear tweak start + - ADTTop + - ADTBottom + - ADTSocks + # ADT underwear tweak end - Trinkets - GroupSpeciesBreathTool diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index f39ab14c474..70d10202a9a 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -91,6 +91,11 @@ - map: [ "enum.HumanoidVisualLayers.LArm" ] - map: [ "enum.HumanoidVisualLayers.RLeg" ] - map: [ "enum.HumanoidVisualLayers.LLeg" ] + # ADT tweak start + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "socks" ] #Sirena + # ADT tweak end - map: ["jumpsuit"] - map: ["enum.HumanoidVisualLayers.LFoot"] - map: ["enum.HumanoidVisualLayers.RFoot"] diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index fa56e6c17f6..08fa264a6cd 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -57,6 +57,7 @@ color: "#334E6D" roles: - Captain + - Magistrat # ADT tweak - IAA # Corvax-IAA - ChiefEngineer - ChiefMedicalOfficer From 2fe30b952cd3a2a85107a8a8ca671a457f891819 Mon Sep 17 00:00:00 2001 From: Filo <98309485+Filokini@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:36:55 +0500 Subject: [PATCH 30/34] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D1=82=D1=80=D0=B5=D0=B1=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D0=B4=D0=BB=D1=8F=20=D0=BF=D0=B8=D0=BA?= =?UTF-8?q?=D0=BE=D0=B2=20=D0=BA=D0=B0=D1=80=D1=82=20(#655)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit :cl: Filo - tweak: Alley теперь требует 60 игроков для выбора карты - tweak: Astra теперь требует 50 игроков для выбора карты - tweak: Avrite теперь требует 60 игроков для выбора карты - tweak: Box теперь требует 30 игроков для выбора карты - tweak: Core теперь требует 25 игроков для выбора карты - tweak: Delta теперь требует 55 игроков для выбора карты - tweak: Gemini Теперь требует 25 игроков для выбора карты - tweak: Fland Теперь требует 35 игроков для выбора карты - tweak: Oasis Теперь требует 40 игроков для выбора карты --- Resources/Prototypes/ADT/Maps/ADTMaps/adt_alley.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_astra.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_avrite.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_box.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_core.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_delta.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_fland.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_gemini.yml | 2 +- Resources/Prototypes/ADT/Maps/ADTMaps/adt_meta.yml | 1 + Resources/Prototypes/ADT/Maps/ADTMaps/adt_oasis.yml | 2 +- 10 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_alley.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_alley.yml index df8ea8e346d..57d7f4e3a21 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_alley.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_alley.yml @@ -4,7 +4,7 @@ mapPath: /Maps/ADTMaps/ADTStations/adt_alley.yml maxRandomOffset: 0 randomRotation: false - minPlayers: 30 + minPlayers: 60 stations: ADT_Alley: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_astra.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_astra.yml index 2d87d0760ed..480996cc4cb 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_astra.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_astra.yml @@ -4,7 +4,7 @@ mapPath: /Maps/ADTMaps/ADTStations/adt_astra.yml maxRandomOffset: 0 randomRotation: false - minPlayers: 30 + minPlayers: 50 stations: ADT_Astra: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_avrite.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_avrite.yml index d4d6b73ce63..53824efe620 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_avrite.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_avrite.yml @@ -4,7 +4,7 @@ mapPath: /Maps/ADTMaps/ADTStations/adt_avrite.yml maxRandomOffset: 0 randomRotation: false - minPlayers: 30 + minPlayers: 60 stations: ADT_Avrit: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_box.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_box.yml index 6c538319b85..d5dae5b8c62 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_box.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_box.yml @@ -2,7 +2,7 @@ id: ADT_Box mapName: 'Box Station' mapPath: /Maps/ADTMaps/ADTStations/adt_box.yml - minPlayers: 20 + minPlayers: 30 stations: ADT_Boxstation: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_core.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_core.yml index 67fcabf99ea..cfb968b6b81 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_core.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_core.yml @@ -2,7 +2,7 @@ id: ADT_Core mapName: 'Core' mapPath: /Maps/ADTMaps/ADTStations/adt_core.yml - minPlayers: 20 + minPlayers: 25 maxPlayers: 80 stations: ADT_Core: diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_delta.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_delta.yml index 40fecd4b383..adf7f94010a 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_delta.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_delta.yml @@ -4,7 +4,7 @@ mapPath: /Maps/ADTMaps/ADTStations/adt_delta.yml maxRandomOffset: 0 randomRotation: false - minPlayers: 40 + minPlayers: 55 stations: Delta: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_fland.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_fland.yml index dbace8891b8..319d5565ea5 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_fland.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_fland.yml @@ -2,7 +2,7 @@ id: ADT_Fland mapName: 'Fland Installation' mapPath: /Maps/ADTMaps/ADTStations/adt_fland.yml - minPlayers: 25 + minPlayers: 35 stations: ADT_Fland: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_gemini.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_gemini.yml index cb914b0e043..298c67ef8b5 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_gemini.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_gemini.yml @@ -4,7 +4,7 @@ mapPath: /Maps/ADTMaps/ADTStations/adt_gemini.yml maxRandomOffset: 0 randomRotation: false - minPlayers: 20 + minPlayers: 25 stations: Gemini: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_meta.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_meta.yml index ac076fcbcb9..b241fe3aa07 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_meta.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_meta.yml @@ -3,6 +3,7 @@ mapName: 'Meta Station' mapPath: /Maps/ADTMaps/ADTStations/adt_meta.yml minPlayers: 10 + maxPlayers: 80 stations: ADT_Meta: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_oasis.yml b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_oasis.yml index 7f81681742f..eecc2a4aaa9 100644 --- a/Resources/Prototypes/ADT/Maps/ADTMaps/adt_oasis.yml +++ b/Resources/Prototypes/ADT/Maps/ADTMaps/adt_oasis.yml @@ -2,7 +2,7 @@ id: ADT_Oasis mapName: 'Oasis' mapPath: /Maps/ADTMaps/ADTStations/adt_oasis.yml - minPlayers: 25 + minPlayers: 40 stations: ADT_Oasis: stationProto: StandardNanotrasenStation From 84bab85d152c622dafe527007a52ada58a221a9c Mon Sep 17 00:00:00 2001 From: Filo <98309485+Filokini@users.noreply.github.com> Date: Sat, 19 Oct 2024 22:40:46 +0500 Subject: [PATCH 31/34] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BC=D0=B5=D0=B4=D0=BE=D1=82=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D0=B0=20=D0=B8=20=D0=BD=D0=B5=20=D1=82=D0=BE=D0=BB?= =?UTF-8?q?=D1=8C=D0=BA=D0=BE..=20(#629)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Добавлены следующие вещи: Таблеткомат и Парашкаф вместе с вещами парамедика. Вещи для Глав врача, а именно, набор походной одежды, хай-риск дефиб, чемоданчик с особыми лекарствами. Две мутации растений, конопли и мака. Немного разнообразия в медицинском инструментарии, а именно бутылочки, шприцы и пачки для таблеток. Возвращена возможность изучения аппарата клонирования в сервисной ветке. Новый вид затяжек для ботаников из конопли. :cl: Filo - add: Добавлены такие криогенные препараты как Аразин, Миадинол, Мезадрозин, Аломицин. - add: Добавлен ГраждоМед, который поможет вам потратить свои сбережения. - add: При взломе емагом ГраждоМеда и НаноМеда ассортимент дополняется. - add: Новый вид затяжек для ботаников из конопли. - add: Таблеткомат и Парашкаф вместе с вещами парамедика. - add: Походная одежка глав врача в лоадаут. см. ниже. - add: Вещи для Глав врача, а именно, набор походной одежды, хай-риск дефиб, чемоданчик с особыми лекарствами. - add: Немного разнообразия в медицинском инструментарии, а именно бутылочки, шприцы и пачки для таблеток. - add: Также весь этот инструментарий можно сделать в медфабе, как и пробирки - add: Возвращена возможность изучения аппарата клонирования в сервисной ветке. - tweak: Бинты отныне можно использовать для остановления кровотечения даже если нету порезов или уколов. - tweak: Парамедик отныне стал истинным патриотом NanoTrasen, так что никакие предательства от него не ждите. Не может стать антагом. - tweak: Изменены рецепты криогенных препаратов и их эффекты - tweak: Что-то изменил... ![изображение](https://github.com/user-attachments/assets/d33b9359-0cca-421a-9d15-1f3db80c9416) ![изображение](https://github.com/user-attachments/assets/7a1ad6eb-2988-4350-b213-4dcc5226b33b) --- .../ru-RU/ADT/Adverisements/civimed.ftl | 9 + .../ru-RU/ADT/Adverisements/pillomat.ftl | 4 + .../ru-RU/ADT/Preferences/loadout-groups.ftl | 3 + .../Locale/ru-RU/ADT/hydroponics/seeds.ftl | 5 + .../Catalog/Fills/Crates/medical.ftl | 3 + .../Catalog/Fills/Items/briefcases.ftl | 7 + .../Catalog/Fills/Items/medicalbag.ftl | 7 + .../Catalog/Fills/Items/patchpack.ftl | 3 + .../Catalog/cargo/cargo_vending.ftl | 2 + .../Entities/Clothing/Back/backpacks.ftl | 3 + .../Entities/Clothing/Back/duffels.ftl | 2 + .../Entities/Clothing/Back/satchels.ftl | 2 + .../Entities/Clothing/Belt/belts.ftl | 4 + .../Entities/Clothing/Ears/headsets.ftl | 3 + .../Entities/Clothing/Head/hats.ftl | 27 +- .../Entities/Clothing/OuterClothing/coats.ftl | 7 + .../Entities/Clothing/Shoes/boots.ftl | 3 + .../Entities/Clothing/Uniforms/jumpskirts.ftl | 4 + .../Entities/Clothing/Uniforms/jumpsuits.ftl | 8 +- .../Consumable/Smokeables/cigarettes.ftl | 6 + .../Specific/Chemistry/chemical-bottles.ftl | 38 ++ .../Specific/Chemistry/chemical-packs.ftl | 27 ++ .../Objects/Specific/Chemistry/chemistry.ftl | 32 ++ .../Objects/Specific/Hydroponics/leaves.ftl | 11 + .../Objects/Specific/Hydroponics/seeds.ftl | 4 + .../Objects/Specific/Medical/defib.ftl | 4 + .../Objects/Specific/Medical/healing.ftl | 24 + .../Objects/Specific/Medical/patchs.ftl | 23 + .../Entities/Objects/Storage/briefcases.ftl | 3 + .../Structures/Machines/vending_machines.ftl | 13 +- .../Objectives/steal-target-groups.ftl | 1 + .../ADT/prototypes/Research/paranormal.ftl | 2 + .../ru-RU/ADT/reagents/meta/medicine.ftl | 12 + .../objects/specific/medical/healing.ftl | 2 +- .../ADT/Catalog/Cargo/cargo_vending.yml | 9 + .../ADT/Catalog/Fills/Boxes/medical.yml | 23 + .../ADT/Catalog/Fills/Crates/vending.yml | 9 + .../ADT/Catalog/Fills/Items/belt.yml | 30 ++ .../ADT/Catalog/Fills/Items/briefcases.yml | 28 +- .../ADT/Catalog/Fills/Items/patchpack.yml | 16 + .../Advertisements/civimed.yml | 5 + .../Advertisements/pillomat.yml | 6 + .../VendingMachines/Inventories/civimed.yml | 16 + .../VendingMachines/Inventories/paradrobe.yml | 14 + .../VendingMachines/Inventories/pillomat.yml | 17 + .../ADT/Entities/Clothing/Back/backpacks.yml | 10 + .../ADT/Entities/Clothing/Back/duffel.yml | 25 +- .../ADT/Entities/Clothing/Back/satchel.yml | 11 + .../ADT/Entities/Clothing/Belt/belts.yml | 31 ++ .../ADT/Entities/Clothing/Ears/headsets.yml | 11 + .../ADT/Entities/Clothing/Head/hats.yml | 14 + .../Entities/Clothing/OuterClothing/coats.yml | 42 +- .../ADT/Entities/Clothing/Shoes/Boots.yml | 13 + .../Entities/Clothing/Uniforms/Jumpsuits.yml | 57 ++- .../Entities/Clothing/Uniforms/jumpskirts.yml | 57 ++- .../Objects/Consumable/Food/produce.yml | 29 ++ .../Smokeables/Cigarettes/joints.yml | 37 ++ .../ADT/Entities/Objects/Materials/scrap.yml | 17 + .../ADT/Entities/Objects/Misc/medicalcase.yml | 29 ++ .../Specific/Chemistry/chemical-bottles.yml | 424 ++++++++++++++++++ .../Specific/Chemistry/chemical-pills.yml | 379 ++++++++++++++++ .../Objects/Specific/Chemistry/chemistry.yml | 45 ++ .../Specific/Hydroponics/Seeds/fill.txt | 1 - .../Objects/Specific/Hydroponics/leaves.yml | 71 +++ .../Objects/Specific/Hydroponics/seeds.yml | 20 + .../Specific/Medical/Chemistry/fill.txt | 1 - .../Objects/Specific/Medical/defib.yml | 28 ++ .../Objects/Specific/Medical/healing.yml | 124 +++++ .../Objects/Specific/Medical/patchs.yml | 161 +++++++ .../Service/vending_machine_restock.yml | 65 +++ .../Structures/Machines/vending_machines.yml | 106 +++++ .../Prototypes/ADT/Hydroponics/seeds.yml | 58 +++ .../Jobs/Medical/chief-medical-officer.yml | 19 + .../Loadouts/Jobs/Medical/medical-officer.yml | 9 + .../ADT/Loadouts/Jobs/Medical/paramedic.yml | 29 ++ .../ADT/Loadouts/loadout_groups.yml | 25 ++ .../Prototypes/ADT/Loadouts/role_loadouts.yml | 1 + .../ADT/Objectives/stealTargetGroups.yml | 12 +- .../Prototypes/ADT/Objectives/traitor.yml | 9 + .../Prototypes/ADT/Reagents/medicine.yml | 112 ++++- .../Recipes/Crafting/Graphs/smokeables.yml | 44 ++ .../ADT/Recipes/Crafting/smokeables.yml | 32 ++ .../ADT/Recipes/Lathes/chemistry.yml | 27 ++ .../Prototypes/ADT/Recipes/Lathes/medical.yml | 15 + .../ADT/Recipes/Reactions/medicine.yml | 59 ++- .../ADT/Research/civilianservices.yml | 13 + .../ADT/Stacks/consumable_stacks.yml | 13 + .../Prototypes/ADT/Stacks/medical_stacks.yml | 6 + Resources/Prototypes/ADT/tags.yml | 9 + .../Catalog/Fills/Lockers/heads.yml | 7 +- .../Catalog/Fills/Lockers/medical.yml | 14 + .../VendingMachines/Inventories/medical.yml | 15 +- .../VendingMachines/Inventories/wallmed.yml | 5 +- .../Entities/Clothing/Head/eva-helmets.yml | 4 +- .../Clothing/OuterClothing/softsuits.yml | 4 +- .../Entities/Objects/Materials/materials.yml | 1 + .../Objects/Specific/Medical/healing.yml | 3 +- .../Objects/Specific/Medical/hypospray.yml | 1 + .../Entities/Structures/Machines/lathe.yml | 8 + .../Entities/Structures/Storage/morgue.yml | 18 + Resources/Prototypes/Hydroponics/seeds.yml | 2 + .../Prototypes/Loadouts/loadout_groups.yml | 6 + .../Prototypes/Loadouts/role_loadouts.yml | 9 +- Resources/Prototypes/Reagents/medicine.yml | 34 +- .../Prototypes/Recipes/Reactions/medicine.yml | 24 +- .../Jobs/Medical/chief_medical_officer.yml | 2 +- .../Roles/Jobs/Medical/medical_doctor.yml | 2 +- .../Roles/Jobs/Medical/medical_intern.yml | 2 +- .../Roles/Jobs/Medical/paramedic.yml | 7 +- .../equipped-BACKPACK.png | Bin 0 -> 900 bytes .../Back/paramedic_backpack.rsi/icon.png | Bin 0 -> 615 bytes .../paramedic_backpack.rsi/inhand-left.png | Bin 0 -> 669 bytes .../paramedic_backpack.rsi/inhand-right.png | Bin 0 -> 658 bytes .../Back/paramedic_backpack.rsi/meta.json | 26 ++ .../equipped-BACKPACK.png | Bin 0 -> 1058 bytes .../Back/paramedic_duffel.rsi/icon.png | Bin 0 -> 591 bytes .../Back/paramedic_duffel.rsi/inhand-left.png | Bin 0 -> 795 bytes .../paramedic_duffel.rsi/inhand-right.png | Bin 0 -> 773 bytes .../Back/paramedic_duffel.rsi/meta.json | 26 ++ .../equipped-BACKPACK.png | Bin 0 -> 853 bytes .../Back/paramedic_satchel.rsi/icon.png | Bin 0 -> 806 bytes .../paramedic_satchel.rsi/inhand-left.png | Bin 0 -> 768 bytes .../paramedic_satchel.rsi/inhand-right.png | Bin 0 -> 762 bytes .../Back/paramedic_satchel.rsi/meta.json | 26 ++ .../Belt/medical_bag.rsi/equipped-BELT.png | Bin 0 -> 539 bytes .../Clothing/Belt/medical_bag.rsi/icon.png | Bin 0 -> 523 bytes .../Belt/medical_bag.rsi/inhand-left.png | Bin 0 -> 557 bytes .../Belt/medical_bag.rsi/inhand-right.png | Bin 0 -> 571 bytes .../Clothing/Belt/medical_bag.rsi/meta.json | 26 ++ .../headset_paramedic.rsi/equipped-EARS.png | Bin 0 -> 370 bytes .../Headsets/headset_paramedic.rsi/icon.png | Bin 0 -> 397 bytes .../Headsets/headset_paramedic.rsi/meta.json | 18 + .../equipped-HELMET-vox.png | Bin 0 -> 1152 bytes .../equipped-HELMET.png | Bin 0 -> 976 bytes .../paramedic_hardsuithead.rsi/icon-flash.png | Bin 0 -> 637 bytes .../paramedic_hardsuithead.rsi/icon.png | Bin 0 -> 429 bytes .../paramedic_hardsuithead.rsi/meta.json | 34 ++ .../on-equipped-HELMET-vox.png | Bin 0 -> 1464 bytes .../on-equipped-HELMET.png | Bin 0 -> 1355 bytes .../equipped-HELMET-hamster.png | Bin 0 -> 641 bytes .../beret_paramedic.rsi/equipped-HELMET.png | Bin 0 -> 659 bytes .../Head/Hats/beret_paramedic.rsi/icon.png | Bin 0 -> 345 bytes .../Hats/beret_paramedic.rsi/inhand-left.png | Bin 0 -> 514 bytes .../Hats/beret_paramedic.rsi/inhand-right.png | Bin 0 -> 524 bytes .../Head/Hats/beret_paramedic.rsi/meta.json | 30 ++ .../equipped-OUTERCLOTHING.png | Bin 0 -> 1271 bytes .../Coats/hike_labcoat_cmo.rsi/icon-open.png | Bin 0 -> 728 bytes .../Coats/hike_labcoat_cmo.rsi/icon.png | Bin 0 -> 566 bytes .../hike_labcoat_cmo.rsi/inhand-left.png | Bin 0 -> 650 bytes .../hike_labcoat_cmo.rsi/inhand-right.png | Bin 0 -> 661 bytes .../Coats/hike_labcoat_cmo.rsi/meta.json | 41 ++ .../open-equipped-OUTERCLOTHING.png | Bin 0 -> 1270 bytes .../hike_labcoat_cmo.rsi/open-inhand-left.png | Bin 0 -> 680 bytes .../open-inhand-right.png | Bin 0 -> 690 bytes .../equipped-OUTERCLOTHING-PAI.png | Bin 0 -> 178 bytes .../equipped-OUTERCLOTHING-vox.png | Bin 0 -> 2166 bytes .../equipped-OUTERCLOTHING.png | Bin 0 -> 1920 bytes .../Hardsuits/paramedic_hardsuit.rsi/icon.png | Bin 0 -> 827 bytes .../paramedic_hardsuit.rsi/inhand-left.png | Bin 0 -> 790 bytes .../paramedic_hardsuit.rsi/inhand-right.png | Bin 0 -> 776 bytes .../paramedic_hardsuit.rsi/meta.json | 34 ++ .../Boots/highboots.rsi/equipped-FEET.png | Bin 0 -> 425 bytes .../Shoes/Boots/highboots.rsi/icon.png | Bin 0 -> 326 bytes .../Shoes/Boots/highboots.rsi/inhand-left.png | Bin 0 -> 374 bytes .../Boots/highboots.rsi/inhand-right.png | Bin 0 -> 368 bytes .../Shoes/Boots/highboots.rsi/meta.json | 26 ++ .../equipped-INNERCLOTHING.png | Bin 0 -> 1809 bytes .../Jumpskirt/hike_jumpskirt_cmo.rsi/icon.png | Bin 0 -> 533 bytes .../hike_jumpskirt_cmo.rsi/inhand-left.png | Bin 0 -> 666 bytes .../hike_jumpskirt_cmo.rsi/inhand-right.png | Bin 0 -> 675 bytes .../hike_jumpskirt_cmo.rsi/meta.json | 26 ++ .../equipped-INNERCLOTHING.png | Bin 0 -> 2226 bytes .../Jumpsuit/hike_uniform_cmo.rsi/icon.png | Bin 0 -> 555 bytes .../hike_uniform_cmo.rsi/inhand-left.png | Bin 0 -> 666 bytes .../hike_uniform_cmo.rsi/inhand-right.png | Bin 0 -> 675 bytes .../Jumpsuit/hike_uniform_cmo.rsi/meta.json | 26 ++ .../Materials/Scrap/securedbox.rsi/icon.png | Bin 0 -> 473 bytes .../Materials/Scrap/securedbox.rsi/meta.json | 14 + .../Chemistry/glass-bottle.rsi/fill1.png | Bin 0 -> 108 bytes .../Chemistry/glass-bottle.rsi/fill2.png | Bin 0 -> 118 bytes .../Chemistry/glass-bottle.rsi/fill3.png | Bin 0 -> 120 bytes .../Chemistry/glass-bottle.rsi/fill4.png | Bin 0 -> 123 bytes .../Chemistry/glass-bottle.rsi/fill5.png | Bin 0 -> 121 bytes .../Chemistry/glass-bottle.rsi/fill6.png | Bin 0 -> 121 bytes .../glass-bottle.rsi/icon-front-morphine.png | Bin 0 -> 221 bytes .../Chemistry/glass-bottle.rsi/icon-front.png | Bin 0 -> 151 bytes .../Chemistry/glass-bottle.rsi/icon.png | Bin 0 -> 276 bytes .../glass-bottle.rsi/icon_formalin.png | Bin 0 -> 288 bytes .../glass-bottle.rsi/inhand-left.png | Bin 0 -> 260 bytes .../glass-bottle.rsi/inhand-right.png | Bin 0 -> 275 bytes .../Chemistry/glass-bottle.rsi/meta.json | 49 ++ .../Chemistry/packs.rsi/anelgesin.png | Bin 0 -> 413 bytes .../Specific/Chemistry/packs.rsi/charcoal.png | Bin 0 -> 394 bytes .../Chemistry/packs.rsi/diethamilate.png | Bin 0 -> 440 bytes .../Chemistry/packs.rsi/ethylredoxrazine.png | Bin 0 -> 432 bytes .../Chemistry/packs.rsi/haloperidol.png | Bin 0 -> 438 bytes .../Chemistry/packs.rsi/inhand-left.png | Bin 0 -> 199 bytes .../Chemistry/packs.rsi/inhand-right.png | Bin 0 -> 188 bytes .../Specific/Chemistry/packs.rsi/meta.json | 46 ++ .../Specific/Chemistry/packs.rsi/minoxide.png | Bin 0 -> 429 bytes .../Chemistry/packs.rsi/nitrofurfoll.png | Bin 0 -> 420 bytes .../Specific/Chemistry/packs.rsi/pack.png | Bin 0 -> 349 bytes .../Chemistry/packs.rsi/sodiumizole.png | Bin 0 -> 440 bytes .../pills.rsi/agolatine-canister.png | Bin 0 -> 358 bytes .../Chemistry/pills.rsi/inhand-left.png | Bin 0 -> 185 bytes .../Chemistry/pills.rsi/inhand-right.png | Bin 0 -> 191 bytes .../Specific/Chemistry/pills.rsi/meta.json | 28 ++ .../Chemistry/pills.rsi/pill-canister.png | Bin 0 -> 280 bytes .../Chemistry/pills.rsi/vitamin-canister.png | Bin 0 -> 362 bytes .../Chemistry/plastic-bottle.rsi/fill1.png | Bin 0 -> 102 bytes .../Chemistry/plastic-bottle.rsi/fill2.png | Bin 0 -> 112 bytes .../Chemistry/plastic-bottle.rsi/fill3.png | Bin 0 -> 135 bytes .../Chemistry/plastic-bottle.rsi/fill4.png | Bin 0 -> 143 bytes .../Chemistry/plastic-bottle.rsi/fill5.png | Bin 0 -> 146 bytes .../Chemistry/plastic-bottle.rsi/fill6.png | Bin 0 -> 149 bytes .../Chemistry/plastic-bottle.rsi/fill7.png | Bin 0 -> 148 bytes .../icon-front-diethamilate.png | Bin 0 -> 278 bytes .../icon-front-nikematide.png | Bin 0 -> 258 bytes .../icon-front-perohydrogen.png | Bin 0 -> 254 bytes .../plastic-bottle.rsi/icon-front.png | Bin 0 -> 152 bytes .../Chemistry/plastic-bottle.rsi/icon.png | Bin 0 -> 300 bytes .../plastic-bottle.rsi/inhand-left.png | Bin 0 -> 241 bytes .../plastic-bottle.rsi/inhand-right.png | Bin 0 -> 257 bytes .../Chemistry/plastic-bottle.rsi/meta.json | 55 +++ .../Specific/Chemistry/syringe.rsi/fill-1.png | Bin 0 -> 124 bytes .../Specific/Chemistry/syringe.rsi/fill-2.png | Bin 0 -> 113 bytes .../Specific/Chemistry/syringe.rsi/fill-3.png | Bin 0 -> 122 bytes .../Specific/Chemistry/syringe.rsi/fill-4.png | Bin 0 -> 140 bytes .../Specific/Chemistry/syringe.rsi/fill-5.png | Bin 0 -> 131 bytes .../Specific/Chemistry/syringe.rsi/icon.png | Bin 0 -> 336 bytes .../Chemistry/syringe.rsi/inhand-left.png | Bin 0 -> 298 bytes .../Chemistry/syringe.rsi/inhand-right.png | Bin 0 -> 300 bytes .../Specific/Chemistry/syringe.rsi/meta.json | 40 ++ .../Chemistry/syringe.rsi/syringe_base.png | Bin 0 -> 320 bytes .../Hydroponics/buckwheat.rsi/dead.png | Bin 0 -> 581 bytes .../Hydroponics/buckwheat.rsi/harvest.png | Bin 0 -> 658 bytes .../Hydroponics/buckwheat.rsi/meta.json | 41 ++ .../Hydroponics/buckwheat.rsi/produce.png | Bin 0 -> 773 bytes .../Hydroponics/buckwheat.rsi/seed.png | Bin 0 -> 333 bytes .../Hydroponics/buckwheat.rsi/stage-1.png | Bin 0 -> 266 bytes .../Hydroponics/buckwheat.rsi/stage-2.png | Bin 0 -> 385 bytes .../Hydroponics/buckwheat.rsi/stage-3.png | Bin 0 -> 583 bytes .../Hydroponics/buckwheat.rsi/stage-4.png | Bin 0 -> 650 bytes .../Hydroponics/buckwheat.rsi/stage-5.png | Bin 0 -> 751 bytes .../Hydroponics/buckwheat.rsi/stage-6.png | Bin 0 -> 784 bytes .../Hydroponics/cannabiswhite.rsi/dead.png | Bin 0 -> 313 bytes .../Hydroponics/cannabiswhite.rsi/dried.png | Bin 0 -> 678 bytes .../Hydroponics/cannabiswhite.rsi/harvest.png | Bin 0 -> 697 bytes .../Hydroponics/cannabiswhite.rsi/meta.json | 35 ++ .../Hydroponics/cannabiswhite.rsi/produce.png | Bin 0 -> 577 bytes .../Hydroponics/cannabiswhite.rsi/seed.png | Bin 0 -> 400 bytes .../Hydroponics/cannabiswhite.rsi/stage-1.png | Bin 0 -> 452 bytes .../Hydroponics/cannabiswhite.rsi/stage-2.png | Bin 0 -> 510 bytes .../Hydroponics/cannabiswhite.rsi/stage-3.png | Bin 0 -> 608 bytes .../Specific/Hydroponics/cocoa.rsi/dead.png | Bin 0 -> 502 bytes .../Hydroponics/cocoa.rsi/harvest.png | Bin 0 -> 834 bytes .../Specific/Hydroponics/cocoa.rsi/meta.json | 41 ++ .../Hydroponics/cocoa.rsi/produce.png | Bin 0 -> 361 bytes .../Specific/Hydroponics/cocoa.rsi/seed.png | Bin 0 -> 329 bytes .../Hydroponics/cocoa.rsi/stage-1.png | Bin 0 -> 231 bytes .../Hydroponics/cocoa.rsi/stage-2.png | Bin 0 -> 253 bytes .../Hydroponics/cocoa.rsi/stage-3.png | Bin 0 -> 289 bytes .../Hydroponics/cocoa.rsi/stage-4.png | Bin 0 -> 459 bytes .../Hydroponics/cocoa.rsi/stage-5.png | Bin 0 -> 622 bytes .../Hydroponics/cocoa.rsi/stage-6.png | Bin 0 -> 676 bytes .../Hydroponics/mandarin.rsi/dead.png | Bin 0 -> 409 bytes .../Hydroponics/mandarin.rsi/harvest.png | Bin 0 -> 682 bytes .../Hydroponics/mandarin.rsi/meta.json | 50 +++ .../Hydroponics/mandarin.rsi/peel.png | Bin 0 -> 527 bytes .../Hydroponics/mandarin.rsi/peeledprod.png | Bin 0 -> 388 bytes .../Hydroponics/mandarin.rsi/produce.png | Bin 0 -> 325 bytes .../Hydroponics/mandarin.rsi/seed.png | Bin 0 -> 299 bytes .../Hydroponics/mandarin.rsi/slice.png | Bin 0 -> 199 bytes .../Hydroponics/mandarin.rsi/stage-1.png | Bin 0 -> 174 bytes .../Hydroponics/mandarin.rsi/stage-2.png | Bin 0 -> 188 bytes .../Hydroponics/mandarin.rsi/stage-3.png | Bin 0 -> 211 bytes .../Hydroponics/mandarin.rsi/stage-4.png | Bin 0 -> 317 bytes .../Hydroponics/mandarin.rsi/stage-5.png | Bin 0 -> 570 bytes .../Hydroponics/mandarin.rsi/stage-6.png | Bin 0 -> 598 bytes .../papaver_somniferum.rsi/dead.png | Bin 0 -> 262 bytes .../papaver_somniferum.rsi/harvest.png | Bin 0 -> 409 bytes .../papaver_somniferum.rsi/meta.json | 32 ++ .../papaver_somniferum.rsi/produce.png | Bin 0 -> 329 bytes .../papaver_somniferum.rsi/seed.png | Bin 0 -> 430 bytes .../papaver_somniferum.rsi/stage-1.png | Bin 0 -> 224 bytes .../papaver_somniferum.rsi/stage-2.png | Bin 0 -> 272 bytes .../papaver_somniferum.rsi/stage-3.png | Bin 0 -> 289 bytes .../Specific/Hydroponics/pumpkin.rsi/dead.png | Bin 0 -> 386 bytes .../Hydroponics/pumpkin.rsi/harvest.png | Bin 0 -> 250 bytes .../Hydroponics/pumpkin.rsi/meta.json | 44 ++ .../Hydroponics/pumpkin.rsi/produce.png | Bin 0 -> 438 bytes .../Specific/Hydroponics/pumpkin.rsi/seed.png | Bin 0 -> 203 bytes .../Hydroponics/pumpkin.rsi/slice.png | Bin 0 -> 329 bytes .../Hydroponics/pumpkin.rsi/stage-1.png | Bin 0 -> 208 bytes .../Hydroponics/pumpkin.rsi/stage-2.png | Bin 0 -> 312 bytes .../Hydroponics/pumpkin.rsi/stage-3.png | Bin 0 -> 388 bytes .../Hydroponics/pumpkin.rsi/stage-4.png | Bin 0 -> 457 bytes .../Hydroponics/pumpkin.rsi/stage-5.png | Bin 0 -> 469 bytes .../Hydroponics/pumpkin.rsi/stage-6.png | Bin 0 -> 537 bytes .../Medical/briefcase_medical.rsi/icon.png | Bin 0 -> 400 bytes .../briefcase_medical.rsi/inhand-left.png | Bin 0 -> 382 bytes .../briefcase_medical.rsi/inhand-right.png | Bin 0 -> 399 bytes .../Medical/briefcase_medical.rsi/meta.json | 22 + .../antib_ointment-inhand-left.png | Bin 0 -> 203 bytes .../antib_ointment-inhand-right.png | Bin 0 -> 221 bytes .../Medical/medical.rsi/antib_ointment.png | Bin 0 -> 387 bytes .../med_tourniqet-equipped-BELT.png | Bin 0 -> 339 bytes .../medical.rsi/med_tourniqet-inhand-left.png | Bin 0 -> 407 bytes .../med_tourniqet-inhand-right.png | Bin 0 -> 407 bytes .../Medical/medical.rsi/med_tourniqet.png | Bin 0 -> 372 bytes .../Specific/Medical/medical.rsi/meta.json | 36 ++ .../mobile_defib.rsi/equipped-BELT.png | Bin 0 -> 317 bytes .../Medical/mobile_defib.rsi/icon.png | Bin 0 -> 521 bytes .../Medical/mobile_defib.rsi/inhand-left.png | Bin 0 -> 356 bytes .../Medical/mobile_defib.rsi/inhand-right.png | Bin 0 -> 356 bytes .../Medical/mobile_defib.rsi/meta.json | 33 ++ .../Medical/mobile_defib.rsi/ready.png | Bin 0 -> 102 bytes .../Medical/mobile_defib.rsi/screen.png | Bin 0 -> 393 bytes .../Specific/Medical/patch.rsi/meta.json | 80 ++++ .../Specific/Medical/patch.rsi/patch0.png | Bin 0 -> 4421 bytes .../Specific/Medical/patch.rsi/patch1.png | Bin 0 -> 4412 bytes .../Specific/Medical/patch.rsi/patch10.png | Bin 0 -> 4474 bytes .../Specific/Medical/patch.rsi/patch11.png | Bin 0 -> 4504 bytes .../Specific/Medical/patch.rsi/patch12.png | Bin 0 -> 4429 bytes .../Specific/Medical/patch.rsi/patch13.png | Bin 0 -> 4469 bytes .../Specific/Medical/patch.rsi/patch14.png | Bin 0 -> 4514 bytes .../Specific/Medical/patch.rsi/patch15.png | Bin 0 -> 4432 bytes .../Specific/Medical/patch.rsi/patch16.png | Bin 0 -> 4367 bytes .../Specific/Medical/patch.rsi/patch17.png | Bin 0 -> 4532 bytes .../Specific/Medical/patch.rsi/patch18.png | Bin 0 -> 4513 bytes .../Specific/Medical/patch.rsi/patch19.png | Bin 0 -> 4436 bytes .../Specific/Medical/patch.rsi/patch2.png | Bin 0 -> 4471 bytes .../Specific/Medical/patch.rsi/patch20.png | Bin 0 -> 4390 bytes .../Specific/Medical/patch.rsi/patch3.png | Bin 0 -> 4413 bytes .../Specific/Medical/patch.rsi/patch4.png | Bin 0 -> 4473 bytes .../Specific/Medical/patch.rsi/patch5.png | Bin 0 -> 4465 bytes .../Specific/Medical/patch.rsi/patch6.png | Bin 0 -> 4448 bytes .../Specific/Medical/patch.rsi/patch7.png | Bin 0 -> 4411 bytes .../Specific/Medical/patch.rsi/patch8.png | Bin 0 -> 4479 bytes .../Specific/Medical/patch.rsi/patch9.png | Bin 0 -> 4423 bytes .../Specific/Medical/patch.rsi/patchpack.png | Bin 0 -> 4511 bytes .../Specific/Medical/patch.rsi/patchused.png | Bin 0 -> 4687 bytes .../vending_machine_restock.rsi/base.png | Bin 0 -> 431 bytes .../vending_machine_restock.rsi/green_bit.png | Bin 0 -> 108 bytes .../vending_machine_restock.rsi/meta.json | 41 ++ .../refill_autotune.png | Bin 0 -> 285 bytes .../refill_civimed.png | Bin 0 -> 344 bytes .../refill_contravend.png | Bin 0 -> 817 bytes .../refill_lesslethal.png | Bin 0 -> 790 bytes .../refill_nfsddrobe.png | Bin 0 -> 318 bytes .../refill_nfsdtec.png | Bin 0 -> 352 bytes .../refill_nonlethal.png | Bin 0 -> 793 bytes .../refill_pottedplant.png | Bin 0 -> 6348 bytes .../VendingMachines/civimed.rsi/broken.png | Bin 0 -> 623 bytes .../civimed.rsi/deny-unshaded.png | Bin 0 -> 780 bytes .../civimed.rsi/eject-unshaded.png | Bin 0 -> 624 bytes .../VendingMachines/civimed.rsi/meta.json | 48 ++ .../civimed.rsi/normal-unshaded.png | Bin 0 -> 538 bytes .../VendingMachines/civimed.rsi/off.png | Bin 0 -> 421 bytes .../VendingMachines/civimed.rsi/panel.png | Bin 0 -> 242 bytes .../VendingMachines/paradrobe.rsi/broken.png | Bin 0 -> 801 bytes .../VendingMachines/paradrobe.rsi/meta.json | 33 ++ .../paradrobe.rsi/normal-unshaded.png | Bin 0 -> 15328 bytes .../VendingMachines/paradrobe.rsi/off.png | Bin 0 -> 500 bytes .../VendingMachines/paradrobe.rsi/panel.png | Bin 0 -> 190 bytes .../VendingMachines/pillomat.rsi/broken.png | Bin 0 -> 1125 bytes .../pillomat.rsi/deny-unshaded.png | Bin 0 -> 450 bytes .../pillomat.rsi/eject-unshaded.png | Bin 0 -> 323 bytes .../VendingMachines/pillomat.rsi/meta.json | 62 +++ .../pillomat.rsi/normal-unshaded.png | Bin 0 -> 2484 bytes .../VendingMachines/pillomat.rsi/off.png | Bin 0 -> 582 bytes .../VendingMachines/pillomat.rsi/panel.png | Bin 0 -> 242 bytes .../Structures/Storage/morgue.rsi/meta.json | 4 + .../Storage/morgue.rsi/morgue_paper.png | Bin 0 -> 446 bytes 374 files changed, 3988 insertions(+), 134 deletions(-) create mode 100644 Resources/Locale/ru-RU/ADT/Adverisements/civimed.ftl create mode 100644 Resources/Locale/ru-RU/ADT/Adverisements/pillomat.ftl create mode 100644 Resources/Locale/ru-RU/ADT/hydroponics/seeds.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Crates/medical.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/briefcases.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/medicalbag.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/patchpack.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Catalog/cargo/cargo_vending.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-bottles.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-packs.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemistry.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/leaves.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/seeds.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/healing.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/patchs.ftl create mode 100644 Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Storage/briefcases.ftl create mode 100644 Resources/Prototypes/ADT/Catalog/Cargo/cargo_vending.yml create mode 100644 Resources/Prototypes/ADT/Catalog/Fills/Boxes/medical.yml create mode 100644 Resources/Prototypes/ADT/Catalog/Fills/Crates/vending.yml create mode 100644 Resources/Prototypes/ADT/Catalog/Fills/Items/patchpack.yml create mode 100644 Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/civimed.yml create mode 100644 Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/pillomat.yml create mode 100644 Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/civimed.yml create mode 100644 Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/paradrobe.yml create mode 100644 Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/pillomat.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/produce.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Materials/scrap.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Misc/medicalcase.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-bottles.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-pills.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemistry.yml delete mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/Seeds/fill.txt create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/leaves.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/seeds.yml delete mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/Chemistry/fill.txt create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/healing.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/patchs.yml create mode 100644 Resources/Prototypes/ADT/Entities/Objects/Specific/Service/vending_machine_restock.yml create mode 100644 Resources/Prototypes/ADT/Hydroponics/seeds.yml create mode 100644 Resources/Prototypes/ADT/Loadouts/Jobs/Medical/chief-medical-officer.yml create mode 100644 Resources/Prototypes/ADT/Loadouts/Jobs/Medical/medical-officer.yml create mode 100644 Resources/Prototypes/ADT/Loadouts/Jobs/Medical/paramedic.yml create mode 100644 Resources/Prototypes/ADT/Objectives/traitor.yml create mode 100644 Resources/Prototypes/ADT/Recipes/Crafting/Graphs/smokeables.yml create mode 100644 Resources/Prototypes/ADT/Recipes/Crafting/smokeables.yml create mode 100644 Resources/Prototypes/ADT/Recipes/Lathes/chemistry.yml create mode 100644 Resources/Prototypes/ADT/Recipes/Lathes/medical.yml create mode 100644 Resources/Prototypes/ADT/Research/civilianservices.yml create mode 100644 Resources/Prototypes/ADT/Stacks/consumable_stacks.yml create mode 100644 Resources/Prototypes/ADT/Stacks/medical_stacks.yml create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/equipped-BACKPACK.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/equipped-BELT.png create mode 100644 Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Ears/Headsets/headset_paramedic.rsi/equipped-EARS.png create mode 100644 Resources/Textures/ADT/Clothing/Ears/Headsets/headset_paramedic.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Ears/Headsets/headset_paramedic.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/equipped-HELMET-vox.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/icon-flash.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/on-equipped-HELMET-vox.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/on-equipped-HELMET.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/equipped-HELMET-hamster.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/equipped-HELMET.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/icon-open.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/open-equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/open-inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/open-inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/equipped-OUTERCLOTHING-PAI.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/equipped-OUTERCLOTHING-vox.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/equipped-OUTERCLOTHING.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/equipped-FEET.png create mode 100644 Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/equipped-INNERCLOTHING.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/meta.json create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/equipped-INNERCLOTHING.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/icon.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Materials/Scrap/securedbox.rsi/icon.png create mode 100644 Resources/Textures/ADT/Objects/Materials/Scrap/securedbox.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill6.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon-front-morphine.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon-front.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon_formalin.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/anelgesin.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/charcoal.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/diethamilate.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/ethylredoxrazine.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/haloperidol.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/minoxide.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/nitrofurfoll.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/pack.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/sodiumizole.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/agolatine-canister.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/pill-canister.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/vitamin-canister.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill6.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill7.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-diethamilate.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-nikematide.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-perohydrogen.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/icon.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/syringe_base.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/dead.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/harvest.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/produce.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/seed.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-6.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/dead.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/dried.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/harvest.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/produce.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/seed.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/stage-1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/stage-2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/stage-3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/dead.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/harvest.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/produce.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/seed.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-6.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/dead.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/harvest.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/peel.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/peeledprod.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/produce.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/seed.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/slice.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-6.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/dead.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/harvest.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/produce.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/seed.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/stage-1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/stage-2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/stage-3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/dead.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/harvest.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/produce.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/seed.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/slice.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-6.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/briefcase_medical.rsi/icon.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/briefcase_medical.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/briefcase_medical.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/briefcase_medical.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet-equipped-BELT.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet-inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet-inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/equipped-BELT.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/icon.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/inhand-left.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/inhand-right.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/ready.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/screen.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch0.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch1.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch10.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch11.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch12.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch13.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch14.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch15.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch16.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch17.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch18.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch19.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch2.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch20.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch3.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch4.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch5.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch6.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch7.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch8.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch9.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patchpack.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patchused.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/base.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/green_bit.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/meta.json create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_civimed.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_contravend.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_lesslethal.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_nfsddrobe.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_nfsdtec.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_nonlethal.png create mode 100644 Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_pottedplant.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/broken.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/deny-unshaded.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/eject-unshaded.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/meta.json create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/normal-unshaded.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/off.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/panel.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/broken.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/meta.json create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/normal-unshaded.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/off.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/panel.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/broken.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/deny-unshaded.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/eject-unshaded.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/meta.json create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/normal-unshaded.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/off.png create mode 100644 Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/panel.png create mode 100644 Resources/Textures/ADT/Structures/Storage/morgue.rsi/morgue_paper.png diff --git a/Resources/Locale/ru-RU/ADT/Adverisements/civimed.ftl b/Resources/Locale/ru-RU/ADT/Adverisements/civimed.ftl new file mode 100644 index 00000000000..a3004eb0d05 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Adverisements/civimed.ftl @@ -0,0 +1,9 @@ +advertisement-civimed-1 = Мертвецы не могут оставить жалобы, так чего же ты ждёшь?! +advertisement-civimed-2 = ТЫ выше глупой смерти в технических туннелях! Закупайся! +advertisement-civimed-3 = Мы не переоцениваем тебя, мы просто знаем, чего ТЫ стоишь! Плати! +advertisement-civimed-4 = Твои деньги или твоя жизнь! И это не угрозы! +advertisement-civimed-5 = Девять из десяти трупов НЕ запасались медициной! Десятый просто был идиотом.. +advertisement-civimed-6 = Стоят ли эти бумажки ТВОЕЙ жизни?! Закупайся скорее! +advertisement-civimed-7 = Порезался или обжёгся? Не беда, стоит лишь немного потратиться! +advertisement-civimed-8 = Я не врач, но им можешь стать ТЫ! Скорее избавься от этой боли! +advertisement-civimed-9 = Инспекция говорит что наши товары ТОЧНО помогут вам! diff --git a/Resources/Locale/ru-RU/ADT/Adverisements/pillomat.ftl b/Resources/Locale/ru-RU/ADT/Adverisements/pillomat.ftl new file mode 100644 index 00000000000..f561a426aa2 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Adverisements/pillomat.ftl @@ -0,0 +1,4 @@ +advertisement-pill-1 = Утопите боль в таблетках! +advertisement-pill-2 = Хочешь витаминку? +advertisement-pill-3 = Голоса становятся всё громче... Пока вы не примите таблетку галоперидола! +advertisement-pill-4 = Все престарелые пьют таблетки из этого автомата! diff --git a/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl index b2110eda4c2..e1eb4326586 100644 --- a/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl +++ b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl @@ -39,6 +39,9 @@ loadout-brigmedic-glasses-adt = Бригмедик, очки loadout-brigmedic-belt-adt = Бригмедик, поясы loadout-brigmedic-outerwear-adt = Бригмедик, верхняя одежда # Medical +loadout-group-medical-belt-adt = Врач, пояс +loadout-group-paramedic-belt-adt = Парамедик, пояс +loadout-group-paramedic-backpack-adt = Парамедик, рюкзак loadout-group-patholog-head = Патологоанатом, голова loadout-group-patholog-jumpsuit = Патологоанатом, комбинезон loadout-group-patholog-outerclothing = Патологоанатом, верхняя одежда diff --git a/Resources/Locale/ru-RU/ADT/hydroponics/seeds.ftl b/Resources/Locale/ru-RU/ADT/hydroponics/seeds.ftl new file mode 100644 index 00000000000..473c2252773 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/hydroponics/seeds.ftl @@ -0,0 +1,5 @@ +seeds-cannabiswhite-name = конопля жизни +seeds-cannabiswhite-display-name = конопли жизни + +seeds-papaver-somniferum-name = мак снотворный +seeds-papaver-somniferum-display-name = мака снотворного diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Crates/medical.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Crates/medical.ftl new file mode 100644 index 00000000000..9f4b223c038 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Crates/medical.ftl @@ -0,0 +1,3 @@ +# я хз куда это блять +ent-ADTCrateSecuredVendingMachineRestockCiviMedVendFilled = ящик пополнения ГраждоМеда + .desc = содержит набор пополнения для ГраждоМеда diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/briefcases.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/briefcases.ftl new file mode 100644 index 00000000000..897e59bba4a --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/briefcases.ftl @@ -0,0 +1,7 @@ +ent-ADTBriefcaseMedicalFilled = чемодан для экстренных случаев + .desc = Небольшой чемоданчик, в котором хранятся очень полезные бутылочки с медицинскими препаратами. + .suffix = { "Заполненный" } + +ent-ADTBriefcaseBrownHikingCmoFilled = походный чемодан главного врача + .suffix = Заполненный + .desc = Коричневый чемодан, заполненный всем нужным для рабочих вылазок главного врача. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/medicalbag.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/medicalbag.ftl new file mode 100644 index 00000000000..d7923108faf --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/medicalbag.ftl @@ -0,0 +1,7 @@ +ent-ADTClothingBeltMedicalBagFilled = { ent-ADTClothingBeltMedicalBag } + .desc = { ent-ADTClothingBeltMedicalBag.desc } + .suffix = { "Заполнено" } + +ent-ADTClothingBeltMedicalBagEMTFilled = { ent-ADTClothingBeltMedicalBag } + .desc = { ent-ADTClothingBeltMedicalBag.desc } + .suffix = { "Заполнено, Парамедик" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/patchpack.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/patchpack.ftl new file mode 100644 index 00000000000..cbab8edf651 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Items/patchpack.ftl @@ -0,0 +1,3 @@ +ent-ADTPatchPackFilled = { ent-ADTPatchPack } + .desc = { ent-ADTPatchPack.desc } + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/cargo/cargo_vending.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/cargo/cargo_vending.ftl new file mode 100644 index 00000000000..97c323ca2ae --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/cargo/cargo_vending.ftl @@ -0,0 +1,2 @@ +ent-ADTSecuredVendingMachineRestockCiviMedVend = набор пополнения ГраждоМеда + .desc = Контейнер наполненный стандартными медикаментами специально для ГраждоМеда. На обратной стороне надпись: СОДЕРЖИМОЕ ЗАЩИЩЕНО ОТ НЕСАНКЦИОНИРОВАННОГО ИСПОЛЬЗОВАНИЯ, ЧТО УНИЧТОЖИТ СОДЕРЖИМОЕ ПРИ ВЗЛОМЕ. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/backpacks.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/backpacks.ftl index ad3bc8560bc..7b82d2a16d6 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/backpacks.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/backpacks.ftl @@ -13,3 +13,6 @@ ent-ADTClothingBackpackBlackLadySatchel = черная дамская сумоч ent-ADTClothingBackpackLeatherLadySatchel = кожаный ранец .desc = Для тех, кто снова хочет оказаться в школе. + +ent-ADTClothingBackpackParamedic = рюкзак парамедика + .desc = Рюкзак, изготовленный для экстренных вызовов медицинской помощи. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/duffels.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/duffels.ftl index 02814dcdafe..1016bf1cc1f 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/duffels.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/duffels.ftl @@ -4,3 +4,5 @@ ent-ADTClothingBackpackDuffelBlueshield = вещмешок офицера син ent-ADTClothingBackpackDuffelDurathead = дюротканевый вещмешок .desc = Вещмешок выполненый из более прочной и эластичной дюраткани. +ent-ADTClothingBackpackDuffelParamedic = вещмешок парамедика + .desc = Вместительный вещмешок для оборудования экстренной помощи. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/satchels.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/satchels.ftl index 97ec389be15..005b78493c2 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/satchels.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Back/satchels.ftl @@ -1,3 +1,5 @@ ent-ADTClothingBackpackSatchelBlueshield = сумка офицера синего щита .desc = Крайне вместительная черно-синяя сумка с яркими белыми эмблемами щита, предназначенная для хранения охранного и медицинского арсенала Офицеров Синего Щита. +ent-ADTClothingBackpackSatchelParamedic = сумка парамедика + .desc = Стерильная сумка для экстренных вызовов медицинской помощи. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Belt/belts.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Belt/belts.ftl index 04eb0dc7d40..75e269fc2ae 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Belt/belts.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Belt/belts.ftl @@ -28,3 +28,7 @@ ent-ADTClothingBeltMagTSF = подсумок для пустых магазин ent-ADTClothingBeltMedTSF = подсумок для медицины .desc = Подсумок, применяемый в экипировке пехотинца ТСФ для хранения медицинских принадлежностей. Можно прикрепить в слот кармана. .suffix = { "ТСФ" } + +ent-ADTClothingBeltMedicalBag = медицинская поясная сумка + .desc = Небольшая, но вместительная сумка для хранения медикаментов. Тут даже поместится планшет для бумаги! + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Ears/headsets.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Ears/headsets.ftl index 58d4bb049e9..6204cc695e7 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Ears/headsets.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Ears/headsets.ftl @@ -25,3 +25,6 @@ ent-ADTClothingHeadsetTSF = гарнитура ТСФ ent-ADTClothingHeadsetTrader = гарнитура торговцев .desc = Гарнитура, используемая торговцами. .suffix = { "ТСФ" } + +ent-ADTClothingHeadsetParamedic = гарнитура парамедика + .desc = Гарнитура, используемая парамедиками. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Head/hats.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Head/hats.ftl index 8bdefb92481..162cf310f6e 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Head/hats.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Head/hats.ftl @@ -11,9 +11,25 @@ ent-ADTClothingHeadHatGreyFlatCap = серая плоская кепка ent-ADTClothingHeadHatBeretBrigmedic = берет бригмедика .desc = Красный берет с ярким белым крестом, показывающий всем что вы - Медик. К сожалению, это не защищает вас от пули, ведь здесь не работают земные конвенции. Зато служит отличной мешенью. +ent-ADTClothingHeadHatsParamedicBeret = берет парамедика + .desc = Берет, связанный с постоянной медицинской работой. + +ent-ADTClothingHeadHatsBeretSupply = берет отдела снабжения + .desc = Берет медного цвета с вышитой эмблемой отдела снабжения. + +ent-ADTClothingHeadHatsBeretAtmos = берет атмосферного техника + .desc = Голубой берет с вышитой эмблемой инжерного отдела. Пахнет фрезоном. + +ent-ADTClothingHeadHatsBeretHOP = берет главы персонала + .desc = Синий берет с вышитой командирской эмблемой. Холодная рассудительность и твердая рука - вот что главное. + ent-ADTClothingHeadHatBeretBlackCivilian = чёрный берет .desc = Этот тёмный берет из мягкой ткани прилегает к голове как уютный оберег от холода. Его простой и классический дизайн делает его универсальным аксессуаром для любого стиля одежды. +ent-ADTClothingHeadHatsBeretArmy = армейский берет + .desc = Потрёпанный на службе военный берет. Имеет золотую нашивку сбоку. + .suffix = { "Новая Мекка" } + ent-ADTClothingHeadCapIlisium = фуражка .suffix = Иллизиум .desc = Тёмная фуражка офицера Иллизиума. @@ -22,17 +38,6 @@ ent-ADTClothingHeadHatsInvestigatorCap = фуражка следователя .desc = Слава NanoTrasen! .suffix = { "" } -ent-ADTClothingHeadHatsBeretArmy = армейский берет - .desc = Потрёпанный на службе военный берет. Имеет золотую нашивку сбоку. - .suffix = { "Новая Мекка" } - -ent-ADTClothingHeadHatsBeretSupply = берет отдела снабжения - .desc = Берет медного цвета с вышитой эмблемой отдела снабжения. -ent-ADTClothingHeadHatsBeretAtmos = берет атмосферного техника - .desc = Голубой берет с вышитой эмблемой инжерного отдела. Пахнет фрезоном. -ent-ADTClothingHeadHatsBeretHOP = берет главы персонала - .desc = Синий берет с вышитой командирской эмблемой. Холодная рассудительность и твердая рука - вот что главное. - ent-ADTClothingHeadHatsBavarianHat = баварская шляпа .desc = Традиционная баварская шляпа. .suffix = { "Октоберфест" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/coats.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/coats.ftl index 0b6ef9c61f8..d9a74fc8cf1 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/coats.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/OuterClothing/coats.ftl @@ -31,3 +31,10 @@ ent-ADTClothingOuterCoatCyberSun = лабораторный халат Кибе ent-ADTClothingOuterCoatTrader = бомбер торговца .desc = Куртка-бомбер торговцев ТСФ .suffix = { "ТСФ" } + +ent-ADTClothingOuterCoatLabcoatCMOHike = походный халат главного врача + .desc = Частично открытый халат. Не сковывает движения. + +ent-ADTClothingOuterCoatLabcoatCMOHikeOpened = походный халат главного врача + .desc = Частично открытый халат. Не сковывает движения. + .suffix = {"Раскрытый"} diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Shoes/boots.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Shoes/boots.ftl index 9ebf7b9bbd9..e18be14cd7e 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Shoes/boots.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Shoes/boots.ftl @@ -8,3 +8,6 @@ ent-ADTClothingFootNewMekkaBoots = сапоги Новой Мекки ent-ADTClothingShoesBootsMagAdvSynd = улучшенные магнитные ботинки синдиката .desc = Созданые благодаря ревёрс инженерингу, эти ботинки защитят вас как от условий отсутвия гравитации, так и от клоунов. .suffix = { "" } + +ent-ADTClothingShoesHighboots = Походные сапоги + .desc = Пара высоких сапог, чтобы не заморать ноги во время ходьбы по лужам крови. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpskirts.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpskirts.ftl index 4b5c619dc16..80b0b6c8b3f 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpskirts.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpskirts.ftl @@ -154,3 +154,7 @@ ent-ADTClothingUniformOktoberfestDirndlGreen = дирндль с зеленой ent-ADTClothingUniformOktoberfestDirndlRed = дирндль с красной юбкой .desc = Стилизованное под традиционный наряд платье с красной юбкой. .suffix = { "Октоберфест" } + +ent-ADTClothingUniformJumpskirtCMOHike = походная юбка-костюм главного врача + .desc = Рубашка и мешковитая юбка, отлично подходящие для активной работы как вне, так и внутри своего отдела. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl index d8b5cc9f9e2..8d41c36d1d8 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl @@ -203,13 +203,13 @@ ent-ADTClothingUniformInvestigatorSuit = форма следователя Сл ent-ADTClothingUniformNewMekka = униформа Новой Мекки .desc = Эта униформа имеет очень долгую и кровавую историю... .suffix = { "Новая Мекка" } - + ent-ADTClothingUniformBlackWeddingSuit = чёрный мужской свадебный костюм .desc = Чёрный костюм для знаменательного события. ent-ADTClothingUniformBlueWeddingSuit = синий мужской свадебный костюм .desc = Синий костюм для знаменательного события. ent-ADTClothingUniformBrownWeddingSuit = коричневый мужской свадебный костюм - .desc = Коричневый костюм для знаменательного события. + .desc = Коричневый костюм для знаменательного события. ent-ADTClothingUniformBlackWeddingWomenSuit = женский свадебный костюм черный .desc = Это женский костюм, для тех кому надоели платья. Выглядит сексуально. @@ -265,3 +265,7 @@ ent-ADTClothingUniformSquidGamePlayer = комбинезон игрока Игр ent-ADTClothingUniformJumpsuitTrader = комбинезон торговца .desc = Это комбинезон, который носят торговцы ТСФ .suffix = { "ТСФ" } + +ent-ADTClothingUniformJumpsuitCMOHike = походный костюм главного врача + .desc = Рубашка и мешковитые штаны, отлично подходящие для активной работы как вне, так и внутри своего отдела. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl index 34919170b72..09067c36891 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Smokeables/cigarettes.ftl @@ -4,3 +4,9 @@ ent-ADTWeYaGoldCigarette = сигарета We-Ya Gold .desc = Для тех, кто ценит здоровье, но предпочитает делать это с искажённым вкусом! ent-ADTExecutiveSelectCigarette = сигарета Executive Select .desc = Эти сигареты - вершина роскоши. Они мягкие, прохладные, пахнут победой... и сигаретным дымом. +ent-ADTJointWhite = косяк + .desc = Самокрутка из высушенного растения, завёрнутого в тонкую бумагу. Внутри, похоже, что-то ярко-зеленое. + .suffix = { "Конопля жизни" } +ent-ADTBluntWhite = блант + .desc = Самокрутка из высушенного растения, завёрнутого в высушенный табачный лист. Внутри, похоже, что-то ярко-зеленое. + .suffix = { "Конопля жизни" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-bottles.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-bottles.ftl new file mode 100644 index 00000000000..49d819297b3 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-bottles.ftl @@ -0,0 +1,38 @@ + +ent-ADTPlasticBottle = пластиковая бутылочка + .desc = Небольшая пластиковая бутылочка. + .suffix = { "" } + +ent-ADTGlassBottle = стеклянная бутылочка + .desc = Небольшая стеклянная бутылочка. + .suffix = { "" } + +ent-ADTObjectsSpecificArithrazineChemistryBottle = бутылочка аритразина + .desc = "Маленькая бутылочка" +ent-ADTObjectsSpecificBicaridineChemistryBottle = бутылочка бикаридина + .desc = "Маленькая бутылочка" +ent-ADTObjectsSpecificDexalinPlusChemistryBottle = бутылочка дексалина плюс + .desc = "Маленькая бутылочка" +ent-ADTObjectsSpecificDermalineChemistryBottle = бутылочка дермалина + .desc = "Маленькая бутылочка" +ent-ADTObjectsSpecificDexalinChemistryBottle = бутылочка дексалина + .desc = "Маленькая бутылочка" +ent-ADTObjectsSpecificLeporazineChemistryBottle = бутылочка лепоразина + .desc = "Маленькая бутылочка" +ent-ADTDyloveneBiomicineBottle = бутылочка диловена и биомицина + .desc = Пластиковая бутылочка, содержащая смесь биомицина и диловена. Использовать в крайних случаях отравления. +ent-ADTOmnizineBottle = бутылочка омнизина + .desc = Бутылочка с крайне полезным, хоть и вызывающим зависимость омнизином. + +ent-ADTPeroHydrogenBottle = бутылочка пероводорода + .desc = Пластиковая бутылочка с препаратом от болезненных уколов. Препарат действует эффективнее на открытые уколы, отчего лучше всего их поливать. Становится полезнее при смешании бикаридином, хоть на этикетке этого не указано. +ent-ADTNikematideBottle = бутылочка никематида + .desc = Пластиковая бутылочка для случаев лёгкого кислородного голодания. Первое время этот препарат рекламировали как полезное средство для пациентов с синдромом астмы. Практика показала обратное. Становится ещё эффективнее, если смешать с дексалином плюс, хоть и производитель умалчивает об этом на упаковках. +ent-ADTDiethamilateBottle = бутылочка диэтамилата + .desc = Пластиковая бутылочка предназначенная для остановки небольших кровотечений. Препарат действует эффективнее на открытых ранах, поэтому лучше выплёскивать содержимое бутылочки на пациентов, несмотря на их вопросы 'Что вы делаете!?'. Помогает в случаях кровопотери, если смешать с дексалином плюс, хоть на этикетке этого не указано. +ent-ADTMorphineBottle = бутылочка морфина + .desc = Небольшая бутылочка с полезным, хоть и вызывающим зависимость, анальгетиком. На удивление многих докторов, является любимым лечебным препаратом врачей среди экипажа подводных лодок. +ent-ADTOpiumBottle = бутылочка опиума + .desc = Небольшая бутылочка, за которую велись целые войны в далёком прошлом. Но сейчас же никто не будет убивать других ради короткого момента эйфории, верно? +ent-ADTFormalinBottle = бутылочка формалина + .desc = Основа работы патологоанатома. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-packs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-packs.ftl new file mode 100644 index 00000000000..0d3d71bbedf --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemical-packs.ftl @@ -0,0 +1,27 @@ +ent-ADTBasePack = упаковка таблеток + .desc = Содержит 10 таблеток с распространённым лекарством. + .suffix = { "" } + +ent-ADTPillPack = пачка таблеток + .desc = упаковка для удобного хранения таблеток +ent-ADTPillCanister = баночка таблеток + .desc = Сделана для хранения таблеток в тепле +ent-ADTVitaminCanister = баночка витаминов + .desc = Содержит полезные витаминки. + +ent-ADTSodiumizolePack = упаковка натримизола + .desc = Таблетки от головной боли в простонародии. Достаточно дешёвые, но имеют целебные свойства при смешании бикаридином, хоть на упаковке этого не указано. +ent-ADTNitrofurfollPack = упаковка нитрофурфолла + .desc = Препарат для исцеления небольших резаных ран. Странно, что его выпускают в таблетках. Имеет целебные свойства при смешании бикаридином, хоть на упаковке этого не указано. +ent-ADTAnelgesinPack = упаковка анельгезина + .desc = По-простому - жаропонижающее. Имеет более практичный эффект, если смешать с дермалином, хоть и производитель умалчивает об этом на упаковках. +ent-ADTMinoxidePack = упаковка миноксида + .desc = Название что-то напоминает... На деле это неплохой препарат для случаев поражения электрическим током. Становится ещё полезнее, если смешать с дермалином, хоть и производитель умалчивает об этом на упаковках. +ent-ADTDiethamilatePack = упаковка диэтамилата + .desc = Старая партия медикамента, предназначенного для остановления кровотечения. Учитывая, что диэтамилат помогает остановить открытое кровотечение, понятно, почему идею с таблетками быстро отозвали. +ent-ADTHaloperidolPack = упаковка галоперидола + .desc = Достаточно эффективный нейролептик. Жаль не в бутылочке, можно было бы вести себя как врачи на подводных лодках. +ent-ADTCharcoalPack = упаковка угля + .desc = Ваш спаситель при желудочных отравлениях. Жаль, однако, что не активированный. +ent-ADTEthylredoxrazinePack = упаковка этилредоксразина + .desc = Очень важная часть барной стойки, особенно в случаях частых посетителей. Однако эту упаковку редко можно заметить там. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemistry.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemistry.ftl new file mode 100644 index 00000000000..2a53b7f80c6 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Chemistry/chemistry.ftl @@ -0,0 +1,32 @@ +ent-ADTSmallSyringe = маленький шприц + .desc = Используется для точечных манипулиций с препаратами + +ent-ADTSodiumizolePill = таблетка натримизола + .desc = { ent-Pill.desc } +ent-ADTNitrofurfollPill = таблетка нитрофурфолла + .desc = { ent-Pill.desc } +ent-ADTAnelgesinPill = таблетка анельгезина + .desc = { ent-Pill.desc } +ent-ADTMinoxidePill = таблетка миноксида + .desc = { ent-Pill.desc } +ent-ADTDiethamilatePill = таблетка диэтамилата + .desc = { ent-Pill.desc } +ent-ADTHaloperidolPill = таблетка галоперидола + .desc = { ent-Pill.desc } +ent-ADTEthylredoxrazinePill = таблетка этилредоксразина + .desc = { ent-Pill.desc } +ent-ADTVitaminPill = таблетка витаминов + .desc = { ent-Pill.desc } + +ent-ADTPillTricordrazine = таблетка трикордразина + .desc = Помогает при незначительных внешних повреждениях организма. + .suffix = { "ГраждоМед" } +ent-ADTEphedrinePill = таблетка эфедрина + .desc = Почувствуй скорость! + .suffix = { "ГраждоМед" } +ent-ADTToxinPill = таблетка токсина + .desc = Может быть стоит подложить её в кому-нибудь в стакан? + .suffix = { "ГраждоМед" } +ent-ADTHappinessPill = таблетка счастья + .desc = То что нужно, чтобы расслабиться после кражи диска. + .suffix = { "ГраждоМед" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/leaves.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/leaves.ftl new file mode 100644 index 00000000000..458853b3a7d --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/leaves.ftl @@ -0,0 +1,11 @@ +ent-ADTLeavesCannabisWhite = листья конопли жизни + .desc = Мутировшая версия конопли, содержащая полезные реагенты. Колючая... + +ent-ADTLeavesCannabisWhiteDried = сушёные листья конопли жизни + .desc = Высушенные и готовые для вашего подпольно-медицинского бизнеса. + +ent-ADTGroundCannabisWhite = измельчённая конопля жизни + .desc = 'Это точно мне поможет, доктор?' + +ent-ADTFoodPapaverSomniferum = мак снотворный + .desc = Бутон, экстракт которого используется в создании медицинских препаратов. И наркотиков. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/seeds.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/seeds.ftl new file mode 100644 index 00000000000..7cca3121071 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Hydroponics/seeds.ftl @@ -0,0 +1,4 @@ +ent-ADTPapaverSomniferumSeeds = пакет семян (мак снотворный) + .desc = { ent-SeedBase.desc } +ent-ADTcannabiswhiteSeeds = пакет семян (конопля жизни) + .desc = { ent-SeedBase.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/defib.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/defib.ftl index c57860bbdae..c5a249c7334 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/defib.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/defib.ftl @@ -1,3 +1,7 @@ ent-ADTHandDefibrillator = боевой переносной Дефибриллятор .desc = Облегченная версия дефибриллятора, возращает к жизни лучше и быстрее, хоть разряд опаснее. Можно надеть на шею .suffix = { "" } + +ent-ADTMobileDefibrillator = мобильный дефибриллятор + .desc = Продвинутый переносной дефибриллятор. Помещается в карманы, можно закрепить на врачебный и обычный пояс. Обладает батареей, которая восстанавливает короткое время после удара током. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/healing.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/healing.ftl new file mode 100644 index 00000000000..a35bb1265f0 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/healing.ftl @@ -0,0 +1,24 @@ +ent-ADTAntibioticOintment = антибиотическая мазь + .desc = Используется для лечения как ушибов, порезов, уколов, так и ожогов. +ent-ADTAntibioticOintment1 = { ent-ADTAntibioticOintment } + .desc = { ent-ADTAntibioticOintment.desc } + .suffix = Один + +ent-ADTBloodpack1 = { ent-Bloodpack } + .desc = { ent-Bloodpack.desc } + .suffix = { "ГраждоМед" } +ent-ADTOintment1 = { ent-Ointment } + .desc = { ent-Ointment.desc } + .suffix = { "ГраждоМед" } +ent-ADTBrutepack1 = { ent-Brutepack } + .desc = { ent-Brutepack.desc } + .suffix = { "ГраждоМед" } +ent-ADTGauze1 = { ent-Gauze } + .desc = { ent-Gauze.desc } + .suffix = { "ГраждоМед" } +ent-ADTBrutepackAdvanced1 = { ent-MedicatedSuture } + .desc = { ent-MedicatedSuture.desc } + .suffix = { "ГраждоМед" } +ent-ADTOintmentAdvanced1 = { ent-RegenerativeMesh } + .desc = { ent-RegenerativeMesh.desc } + .suffix = { "ГраждоМед" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/patchs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/patchs.ftl new file mode 100644 index 00000000000..251eaaa79d0 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Specific/Medical/patchs.ftl @@ -0,0 +1,23 @@ +ent-ADTPatchPack = коробка пластырей + .desc = Коробка для хранения медицинских пластырей. + .suffix = { "" } + +ent-ADTPatchHealing = пластырь + .desc = Помогает при грубых травмах. + .suffix = { "" } + +ent-ADTPatchHealingMini = мини-пластырь от ушибов + .desc = Помогает при грубых травмах. + .suffix = { "" } + +ent-ADTPatchBurn = пластырь от ожогов + .desc = Помогает при ожоговых травмах. + .suffix = { "" } + +ent-ADTPatchBurnMini = мини-пластырь от ожогов + .desc = Помогает при ожоговых травмах. + .suffix = { "" } + +ent-ADTPatchHonk = хонк пластырь + .desc = Чудо клоунской медицины, повышает уровень веселья в крови. + .suffix = { "" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Storage/briefcases.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Storage/briefcases.ftl new file mode 100644 index 00000000000..53de4f0d70f --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Storage/briefcases.ftl @@ -0,0 +1,3 @@ +ent-ADTBriefcaseMedical = чемодан для экстренных случаев + .desc = Небольшой чемоданчик, в котором хранятся очень полезные бутылочки с медицинскими препаратами. + .suffix = { "Пустой" } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/vending_machines.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/vending_machines.ftl index 54747e145a5..81f10a4b863 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/vending_machines.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Structures/Machines/vending_machines.ftl @@ -1,9 +1,16 @@ -ent-ADTVendingMachinePatholoDrobe = ПатологоШкаф - .desc = Самая стильная одежда в самом отдалёном месте медицинского отдела. - ent-ADTVendingMachinePrazatClothing = СтильноМат .desc = Особый вид автомата с одеждой, выдающий нестандартную одежду. Одобрен бюро по контролю за стилем NanoTrasen. ent-ADTVendingMachineTSFArmoury = оружейная ТСФ .desc = Связанный с удаленным хранилищем шкаф, используемый для выдачи оружия и экипировки бойцов ТСФ. .suffix = { "ТСФ" } + +ent-ADTVendingMachinePill = ТаблеткоМат + .desc = (Почти) практическое решение всех ваших болячек. +ent-ADTVendingMachineParaDrobe = ПараШкаф + .desc = Стильная одежда для экстренных медицинских вызовов. +ent-ADTVendingMachinePatholoDrobe = ПатологоШкаф + .desc = Самая стильная одежда в самом отдалёном месте медицинского отдела. + +ent-ADTVendingMachineCiviMedVend = ГраждоМед + .desc = Создан специально чтобы облегчить ваш бала.. боль. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Objectives/steal-target-groups.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Objectives/steal-target-groups.ftl index 87bc325ea7d..d46aa9a73ed 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Objectives/steal-target-groups.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Objectives/steal-target-groups.ftl @@ -1 +1,2 @@ steal-target-groups-clothing-mask-gas-ce = противогаз старшего инженера +steal-target-groups-adt-mobile-defibrillator = мобильный дефибриллятор diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Research/paranormal.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Research/paranormal.ftl index cbc59b7bbd5..c338a18313e 100644 --- a/Resources/Locale/ru-RU/ADT/prototypes/Research/paranormal.ftl +++ b/Resources/Locale/ru-RU/ADT/prototypes/Research/paranormal.ftl @@ -3,3 +3,5 @@ research-technology-pseudiscience = Развлекательная псевдо research-technology-combat-pseudiscience = Боевая псевдонаука research-technology-protection-pseudiscience = Защитная псевдонаука + +research-technology-medical-cloning-adt = Устройство клонирования diff --git a/Resources/Locale/ru-RU/ADT/reagents/meta/medicine.ftl b/Resources/Locale/ru-RU/ADT/reagents/meta/medicine.ftl index 53e3991cfa5..6b1e19b1f11 100644 --- a/Resources/Locale/ru-RU/ADT/reagents/meta/medicine.ftl +++ b/Resources/Locale/ru-RU/ADT/reagents/meta/medicine.ftl @@ -39,3 +39,15 @@ reagent-desc-silver-sulfadiazine = При нанесении на кожу за reagent-name-detoxisol = Детоксизол reagent-desc-detoxisol = Препарат, синтезированный на основе растительных ферментов, с целью всеобщей детоксикации организма. Имеет небольшой побочный эффект в виде небольших потерь верхних слоёв эпителия. + +reagent-name-arazine = Аразин +reagent-desc-arazine = Выведенный на основе Криоксадона, имеет профиль в лечении последствий сильного радиационного излучения + +reagent-name-mezadrozine = Мезадрозин +reagent-desc-mezadrozine = Используется В случае тяжелый механических повреждений тела пациента, имеет некоторые побочные эффекты в виде ожогов в излеченных местах. + +reagent-name-alomicine = Аломицин +reagent-desc-alomicine = Очень эффективный препарат в том случае когда организм пациента под влиянием сильных химических или электрических ожогов + +reagent-name-miadinol = Миадинол +reagent-desc-miadinol = Хорошо помогает восстановить тела тех бедолаг, которым неповезло выйти в открытый космос без защитного снаряжения. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl index f9fbd6b518b..863d0d07155 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/healing.ftl @@ -114,7 +114,7 @@ ent-PillBicaridine = таблетка ent-PillCanisterBicaridine = баночка для таблеток .suffix = Бикаридин 10 ед, 5 шт .desc = { ent-PillCanister.desc } -ent-PillCharcoal = таблетка +ent-PillCharcoal = таблетка угля .desc = { ent-Pill.desc } .suffix = Уголь 10 ед ent-PillCanisterCharcoal = баночка для таблеток diff --git a/Resources/Prototypes/ADT/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/ADT/Catalog/Cargo/cargo_vending.yml new file mode 100644 index 00000000000..170e2700c01 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Cargo/cargo_vending.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: ADTCrateVendingMachineRestockCiviMedVend + icon: + sprite: ADT/Objects/Specific/Service/vending_machine_restock.rsi + state: base + product: ADTCrateSecuredVendingMachineRestockCiviMedVendFilled + cost: 2300 + category: cargoproduct-category-name-medical + group: market diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Boxes/medical.yml b/Resources/Prototypes/ADT/Catalog/Fills/Boxes/medical.yml new file mode 100644 index 00000000000..bfc8a442f63 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Fills/Boxes/medical.yml @@ -0,0 +1,23 @@ +- type: entity + name: box of small syringes + parent: BoxCardboard + id: ADTSmallSyringeBox + description: It's plastic a box with small syringes inside. + components: + - type: Storage + maxItemSize: Small + grid: + - 0,0,2,1 + - type: StorageFill + contents: + - id: ADTSmallSyringe + amount: 6 + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/syringe.rsi + state: icon + - type: Item + sprite: ADT/Objects/Specific/Chemistry/syringe.rsi + size: Normal + - type: PhysicalComposition + materialComposition: + Cardboard: 50 diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/ADT/Catalog/Fills/Crates/vending.yml new file mode 100644 index 00000000000..29e09d01900 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Fills/Crates/vending.yml @@ -0,0 +1,9 @@ +- type: entity + id: ADTCrateSecuredVendingMachineRestockCiviMedVendFilled + parent: CratePlastic + name: CiviMed restock crate + description: Contains two restock boxes for the CiviMed vending machine. + components: + - type: StorageFill + contents: + - id: ADTSecuredVendingMachineRestockCiviMedVend diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/ADT/Catalog/Fills/Items/belt.yml index f85b200f88a..0d34f22e8c0 100644 --- a/Resources/Prototypes/ADT/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/ADT/Catalog/Fills/Items/belt.yml @@ -21,3 +21,33 @@ contents: - id: WeaponPistolMk58 - id: MagazinePistol + +- type: entity + id: ADTClothingBeltMedicalBagFilled + parent: ADTClothingBeltMedicalBag + suffix: Filled + components: + - type: StorageFill + contents: + - id: Brutepack + amount: 2 + - id: Ointment + amount: 1 + - id: Bloodpack + amount: 1 + - id: Gauze + - id: EmergencyMedipen + +- type: entity + id: ADTClothingBeltMedicalBagEMTFilled + parent: ADTClothingBeltMedicalBag + suffix: Filled, Paramedic + components: + - type: StorageFill + contents: + - id: Brutepack + - id: Ointment + - id: Bloodpack + - id: Gauze + - id: EmergencyMedipen + amount: 3 diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Items/briefcases.yml b/Resources/Prototypes/ADT/Catalog/Fills/Items/briefcases.yml index 6e5b6f09a15..993dd294227 100644 --- a/Resources/Prototypes/ADT/Catalog/Fills/Items/briefcases.yml +++ b/Resources/Prototypes/ADT/Catalog/Fills/Items/briefcases.yml @@ -32,4 +32,30 @@ - id: ADTClothingHeadHatsPyotrCap - id: ADTClothingNeckPyotrCloak - id: ADTClothingOuterCoatPyotrCoat - - id: ADTClothingUniformPyotrOfficialSuit \ No newline at end of file + - id: ADTClothingUniformPyotrOfficialSuit + +- type: entity + name: box of medical treatment + parent: ADTBriefcaseMedical + id: ADTBriefcaseMedicalFilled + description: A plastic a box with bottles with medicaments. + components: + - type: StorageFill + contents: + - id: ADTMorphineBottle + - id: ADTDyloveneBiomicineBottle + - id: EpinephrineChemistryBottle + - id: ADTOmnizineBottle + +- type: entity + id: ADTBriefcaseBrownHikingCmoFilled + name: Chief medical officer's hiking briefcase + parent: BriefcaseBrown + suffix: Filled + components: + - type: StorageFill + contents: + - id: ADTClothingOuterCoatLabcoatCMOHike + - id: ADTClothingUniformJumpskirtCMOHike + - id: ADTClothingUniformJumpsuitCMOHike + - id: ADTClothingShoesHighboots diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Items/patchpack.yml b/Resources/Prototypes/ADT/Catalog/Fills/Items/patchpack.yml new file mode 100644 index 00000000000..8146e501373 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Fills/Items/patchpack.yml @@ -0,0 +1,16 @@ +- type: entity + name: patch pack + id: ADTPatchPackFilled + suffix: Filled + parent: ADTPatchPack + components: + - type: StorageFill + contents: + - id: ADTPatchHealing + amount: 1 + - id: ADTPatchBurn + amount: 1 + - id: ADTPatchHealingMini + amount: 2 + - id: ADTPatchBurnMini + amount: 2 diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/civimed.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/civimed.yml new file mode 100644 index 00000000000..463d276673c --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/civimed.yml @@ -0,0 +1,5 @@ +- type: localizedDataset + id: ADTCiviMedAds + values: + prefix: advertisement-civimed- + count: 9 diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/pillomat.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/pillomat.yml new file mode 100644 index 00000000000..211d5dc37cc --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/pillomat.yml @@ -0,0 +1,6 @@ +- type: localizedDataset + id: PillAds + values: + prefix: advertisement-pill- + count: 4 + diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/civimed.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/civimed.yml new file mode 100644 index 00000000000..c671368cc88 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/civimed.yml @@ -0,0 +1,16 @@ +- type: vendingMachineInventory + id: ADTCiviMedVendInventory + startingInventory: + ADTBrutepack1: 40 + ADTOintment1: 40 + ADTBloodpack1: 40 + ADTGauze1: 40 + ADTPillTricordrazine: 20 + ADTPatchHealingMini: 15 + ADTPatchBurnMini: 15 + emaggedInventory: + ADTBrutepackAdvanced1: 10 + ADTOintmentAdvanced1: 10 + ADTEphedrinePill: 3 + ADTHappinessPill: 3 + ADTToxinPill: 3 diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/paradrobe.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/paradrobe.yml new file mode 100644 index 00000000000..d25428122bf --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/paradrobe.yml @@ -0,0 +1,14 @@ +- type: vendingMachineInventory + id: ParadrobeInventory + startingInventory: + ADTClothingBackpackParamedic: 2 + ADTClothingBackpackDuffelParamedic: 2 + ADTClothingBackpackSatchelParamedic: 2 + ClothingUniformJumpsuitParamedic: 2 + ClothingUniformJumpskirtParamedic: 2 + ClothingShoesColorWhite: 2 + ClothingOuterWinterPara: 2 + ClothingOuterCoatParamedicWB: 2 + ClothingHeadHatParamedicsoft: 2 + ADTClothingHeadHatsParamedicBeret: 2 + ADTClothingHeadsetParamedic: 2 diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/pillomat.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/pillomat.yml new file mode 100644 index 00000000000..522ba8b7e59 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/pillomat.yml @@ -0,0 +1,17 @@ +- type: vendingMachineInventory + id: PillInventory + startingInventory: + ADTSodiumizolePack: 5 + ADTNitrofurfollPack: 5 + ADTPeroHydrogenBottle: 5 + ADTAnelgesinPack: 5 + ADTMinoxidePack: 5 + ADTNikematideBottle: 5 + ADTDiethamilatePack: 5 + ADTHaloperidolPack: 3 + ADTVitaminCanister: 5 + ADTCharcoalPack: 5 + ADTEthylredoxrazinePack: 5 + emaggedInventory: + ADTMorphineBottle: 5 + ADTOpiumBottle: 5 diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/ADT/Entities/Clothing/Back/backpacks.yml index 83d553cb260..bc499a31857 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Back/backpacks.yml @@ -33,6 +33,7 @@ - type: StaticPrice price: 5 +# Med - type: entity parent: ClothingBackpackMedical @@ -40,3 +41,12 @@ components: - type: Sprite sprite: ADT/Clothing/Back/pathologist_backpack.rsi + +- type: entity + parent: ClothingBackpack + id: ADTClothingBackpackParamedic + name: paramedical backpack + description: Backpack to store some paramedical equipment. + components: + - type: Sprite + sprite: ADT/Clothing/Back/paramedic_backpack.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/ADT/Entities/Clothing/Back/duffel.yml index df8ec44b9b4..1fd36c09d1d 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Back/duffel.yml @@ -8,13 +8,6 @@ - type: Sprite sprite: ADT/Clothing/Back/blueshield_duffel.rsi -- type: entity - parent: ClothingBackpackDuffelMedical - id: ADTClothingBackpackDuffelPathologist - components: - - type: Sprite - sprite: ADT/Clothing/Back/pathologist_duffel.rsi - - type: entity parent: ClothingBackpackDuffel id: ADTClothingBackpackDuffelDurathead @@ -35,3 +28,21 @@ - type: Construction graph: DuffelDurathead node: DuffelDurathead + +# Med + +- type: entity + parent: ClothingBackpackDuffelMedical + id: ADTClothingBackpackDuffelPathologist + components: + - type: Sprite + sprite: ADT/Clothing/Back/pathologist_duffel.rsi + +- type: entity + parent: ClothingBackpackDuffel + id: ADTClothingBackpackDuffelParamedic + name: parsmedical duffel bag + description: A large duffel bag to hold paramedical equipment + components: + - type: Sprite + sprite: ADT/Clothing/Back/paramedic_duffel.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/ADT/Entities/Clothing/Back/satchel.yml index 91803f42f20..6dd39a02416 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Back/satchel.yml @@ -8,9 +8,20 @@ - type: Sprite sprite: ADT/Clothing/Back/blueshield_satchel.rsi +# Med + - type: entity parent: ClothingBackpackSatchelMedical id: ADTClothingBackpackSatchelPathologist components: - type: Sprite sprite: ADT/Clothing/Back/pathologist_satchel.rsi + +- type: entity + parent: ClothingBackpack + id: ADTClothingBackpackSatchelParamedic + name: paramedical satchel + description: A satchel to store some paramedical equipment. + components: + - type: Sprite + sprite: ADT/Clothing/Back/paramedic_satchel.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/ADT/Entities/Clothing/Belt/belts.yml index 74839f112b7..13494912a53 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Belt/belts.yml @@ -211,3 +211,34 @@ maxItemSize: Small - type: Item size: Small + +- type: entity + parent: ClothingBeltStorageBase + id: ADTClothingBeltMedicalBag + name: medical bag + description: Small but capacious bag to hold various medical equipment. It even has some place for a tablet for paper! + components: + - type: Sprite + sprite: ADT/Clothing/Belt/medical_bag.rsi + - type: Clothing + sprite: ADT/Clothing/Belt/medical_bag.rsi + - type: Storage + whitelist: + tags: + - Wrench + - Bottle + - Spray + - Brutepack + - Bloodpack + - Gauze + - Ointment + - CigPack + - PillCanister + - Radio + - DiscreteHealthAnalyzer + - Folder + components: + - Hypospray + - Injector + - Pill + - type: Appearance diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/ADT/Entities/Clothing/Ears/headsets.yml index 48d0235f6d3..89a3271e00d 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Ears/headsets.yml @@ -129,3 +129,14 @@ sprite: ADT/Clothing/Ears/Headsets/trader.rsi - type: Clothing sprite: ADT/Clothing/Ears/Headsets/trader.rsi + +- type: entity + parent: ClothingHeadsetMedical + id: ADTClothingHeadsetParamedic + name: paramedic's headset + description: A headset for the paramedic. + components: + - type: Sprite + sprite: ADT/Clothing/Ears/Headsets/headset_paramedic.rsi + - type: Clothing + sprite: ADT/Clothing/Ears/Headsets/headset_paramedic.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/ADT/Entities/Clothing/Head/hats.yml index d9cdb48c3a4..4285c028513 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Head/hats.yml @@ -171,6 +171,20 @@ tags: - HamsterWearable +- type: entity + parent: ClothingHeadBase + id: ADTClothingHeadHatsParamedicBeret + name: paramedic's beret + description: A blue beret of a constantly busy job. + components: + - type: Sprite + sprite: ADT/Clothing/Head/Hats/beret_paramedic.rsi #спрайты от prazat911 + - type: Clothing + sprite: ADT/Clothing/Head/Hats/beret_paramedic.rsi + - type: Tag + tags: + - HamsterWearable + #октоберфест - type: entity diff --git a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml index c8233dc3ced..70d1b11a827 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/OuterClothing/coats.yml @@ -61,17 +61,6 @@ - type: StaticPrice price: 800 -- type: entity - parent: ClothingOuterCoatLab - id: ADTClothingOuterCoatLabPathologist - name: pathologist's lab coat - description: A suit that protects against minor chemical spills. But still a bit too white for blood stains. - components: - - type: Sprite - sprite: ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi - state: icon-open - - type: Clothing - sprite: ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi - type: entity parent: [ClothingOuterStorageFoldableBaseOpened, ClothingOuterCoatLab] @@ -180,3 +169,34 @@ coefficients: Slash: 0.95 Heat: 0.90 + +# Med + +- type: entity + parent: ClothingOuterCoatLab + id: ADTClothingOuterCoatLabcoatCMOHike + name: chief medical officer's hiking lab coat + description: Partially open labcoat. Does not hinder movement. + components: + - type: Sprite + sprite: ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi + - type: Clothing + sprite: ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi + +- type: entity + parent: [ClothingOuterStorageFoldableBaseOpened, ADTClothingOuterCoatLabcoatCMOHike] + id: ADTClothingOuterCoatLabcoatCMOHikeOpened + name: chief medical officer's hiking lab coat + +- type: entity + parent: ClothingOuterCoatLab + id: ADTClothingOuterCoatLabPathologist + name: pathologist's lab coat + description: A suit that protects against minor chemical spills. But still a bit too white for blood stains. + components: + - type: Sprite + sprite: ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi + state: icon-open + - type: Clothing + sprite: ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi + diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/Boots.yml b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/Boots.yml index 43f0f33c953..aa1c9a0e31a 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Shoes/Boots.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Shoes/Boots.yml @@ -9,3 +9,16 @@ sprite: ADT/Clothing/Shoes/Boots/newmekka.rsi - type: Clothing sprite: ADT/Clothing/Shoes/Boots/newmekka.rsi #спрайты от prazat911 + +# Med + +- type: entity + parent: ClothingShoesBaseButcherable + id: ADTClothingShoesHighboots + name: Highboots + description: a pair of highboot to walk on blood puddles + components: + - type: Sprite + sprite: ADT/Clothing/Shoes/Boots/highboots.rsi + - type: Clothing + sprite: ADT/Clothing/Shoes/Boots/highboots.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml index 20f3bd44033..f9cd9a69498 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml @@ -552,28 +552,6 @@ - type: Clothing sprite: ADT/Clothing/Uniforms/Jumpsuit/space_sec_officer.rsi -- type: entity - parent: ClothingUniformBase - id: ADTClothingUniformPathologistSuit - name: pathologist jumpsuit - description: A lightweight jumpsuit for a morgue worker - components: - - type: Sprite - sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi - - type: Clothing - sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi - -- type: entity - parent: ClothingUniformBase - id: ADTClothingUniformPathologistSuitAlt - name: pathologist jumpsuit - description: A lightweight jumpsuit for a morgue worker. A darker version. - components: - - type: Sprite - sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi - - type: Clothing - sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi - #Brigmed - type: entity parent: ClothingUniformBase @@ -890,3 +868,38 @@ sprite: ADT/Clothing/Uniforms/Jumpsuit/trader.rsi - type: Clothing sprite: ADT/Clothing/Uniforms/Jumpsuit/trader.rsi + +# Med + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformJumpsuitCMOHike + name: chief medical officer's hiking uniform + description: Shirt and baggy pants. Perfect for working in and out of medical departament. + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSuit + name: pathologist jumpsuit + description: A lightweight jumpsuit for a morgue worker + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSuitAlt + name: pathologist jumpsuit + description: A lightweight jumpsuit for a morgue worker. A darker version. + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/jumpskirts.yml index c01a57f99e7..6f7d1355847 100644 --- a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/jumpskirts.yml @@ -217,28 +217,6 @@ - type: StaticPrice price: 15 -- type: entity - parent: ClothingUniformBase - id: ADTClothingUniformPathologistSkirt - name: pathologist jumpskirt - description: A lightweight jumpskirt for a morgue worker - components: - - type: Sprite - sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi - - type: Clothing - sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi - -- type: entity - parent: ClothingUniformBase - id: ADTClothingUniformPathologistSkirtAlt - name: pathologist jumpskirt - description: A lightweight jumpskirt for a morgue worker. A darker version. - components: - - type: Sprite - sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi - - type: Clothing - sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi - - type: entity parent: ClothingUniformBase id: ADTClothingUniformSkirtBrigmedicJumpskirtTurtleneck @@ -484,3 +462,38 @@ sprite: ADT/Clothing/Uniforms/Jumpskirt/oktoberfest_dirndlgreen.rsi #спрайты от SHIONE - type: Clothing sprite: ADT/Clothing/Uniforms/Jumpskirt/oktoberfest_dirndlgreen.rsi #спрайты от SHIONE + +# Med + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformJumpskirtCMOHike + name: chief medical officer's hiking jumpskirt + description: Shirt and baggy skirt. Perfect for working in and out of medical departament. + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSkirt + name: pathologist jumpskirt + description: A lightweight jumpskirt for a morgue worker + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSkirtAlt + name: pathologist jumpskirt + description: A lightweight jumpskirt for a morgue worker. A darker version. + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/produce.yml new file mode 100644 index 00000000000..99fb2863cfb --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/produce.yml @@ -0,0 +1,29 @@ +- type: entity + name: Papaver somniferum + parent: FoodProduceBase + id: ADTFoodPapaverSomniferum + description: A flower which extracts used in making medicine. And narcotics. + components: + - type: FlavorProfile + flavors: + - Bitter + - type: SolutionContainerManager + solutions: + food: + maxVol: 16 + reagents: + - ReagentId: Nutriment + Quantity: 2 + - ReagentId: Toxin + Quantity: 4 + - ReagentId: ADTOpium + Quantity: 10 + - type: Sprite + sprite: ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi + - type: Produce + seedId: ADTPapaverSomniferum + - type: Extractable + grindableSolutionName: food + - type: Tag + tags: + - Flower diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml new file mode 100644 index 00000000000..6de6fd6057c --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Smokeables/Cigarettes/joints.yml @@ -0,0 +1,37 @@ +- type: entity + id: ADTJointWhite + parent: Joint + name: joint of cannabis white + description: A roll of dried plant matter wrapped in thin paper. + components: + - type: Construction + graph: ADTsmokeableJoint + node: joint + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 30 + reagents: + - ReagentId: THC + Quantity: 10 + - ReagentId: Omnizine + Quantity: 16 + +- type: entity + id: ADTBluntWhite + parent: Blunt + name: blunt of cannabis white + description: A roll of dried plant matter wrapped in a dried tobacco leaf. + components: + - type: Construction + graph: ADTsmokeableBlunt + node: blunt + - type: SolutionContainerManager + solutions: + smokable: + maxVol: 30 + reagents: + - ReagentId: THC + Quantity: 10 + - ReagentId: Omnizine + Quantity: 16 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Materials/scrap.yml b/Resources/Prototypes/ADT/Entities/Objects/Materials/scrap.yml new file mode 100644 index 00000000000..28741b44f56 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Materials/scrap.yml @@ -0,0 +1,17 @@ +# TODO Сделать общий парент со спрайтами если будете добавлять еще мусор всякий. +- type: entity + parent: BaseScrap + id: ADTScrapSecuredBox + name: broken secure box + description: Just empty box + components: + - type: Sprite + sprite: ADT/Objects/Materials/Scrap/securedbox.rsi + layers: + - state: icon + - type: Item + size: Huge + - type: PhysicalComposition + materialComposition: + Steel: 400 # 4 sheets + diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/medicalcase.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/medicalcase.yml new file mode 100644 index 00000000000..a9ec9c97d14 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/medicalcase.yml @@ -0,0 +1,29 @@ +- type: entity + name: box of medical treatment + parent: BaseStorageItem + id: ADTBriefcaseMedical + description: A plastic a box for medicaments. + components: + - type: Sprite + sprite: ADT/Objects/Specific/Medical/briefcase_medical.rsi + state: icon + - type: Item + sprite: ADT/Objects/Specific/Medical/briefcase_medical.rsi + size: Normal + shape: + - 0,0,1,0 + - type: PhysicalComposition + materialComposition: + Plastic: 50 + - type: Storage + maxItemSize: Small + grid: + - 0,0,3,0 + whitelist: + tags: + - Bottle + - Ointment + - Gauze + - Brutepack + - Bloodpack + - ADTMedipen diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-bottles.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-bottles.yml new file mode 100644 index 00000000000..4d68c7ce034 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-bottles.yml @@ -0,0 +1,424 @@ +# бутылочки + +##пластиковая + +- type: entity + name: bottle + parent: BaseItem + id: ADTBaseChemistryEmptyPlasticBottle + abstract: true + description: A small plastic bottle. + components: + - type: Tag + tags: + - Bottle + - Trash + - type: PhysicalComposition + materialComposition: + Plastic: 25 + - type: SpaceGarbage + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/plastic-bottle.rsi + layers: + - state: icon + map: [ "enum.SolutionContainerLayers.Base" ] + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon-front + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: Appearance + - type: SolutionContainerVisuals + maxFillLevels: 7 + fillBaseName: fill + - type: Drink + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + - type: MixableSolution + solution: drink + - type: RefillableSolution + solution: drink + - type: DrainableSolution + solution: drink + - type: DrawableSolution + solution: drink + - type: SolutionTransfer + maxTransferAmount: 30 + canChangeTransferAmount: true + - type: SolutionItemStatus + solution: drink + - type: UserInterface + interfaces: + enum.TransferAmountUiKey.Key: + type: TransferAmountBoundUserInterface + - type: Item + size: Tiny + sprite: ADT/Objects/Specific/Chemistry/plastic-bottle.rsi + - type: Spillable + solution: drink + - type: MeleeWeapon + soundNoDamage: + path: "/Audio/Effects/Fluids/splat.ogg" + damage: + types: + Blunt: 0 + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 25 + behaviors: + - !type:PlaySoundBehavior + sound: + path: /Audio/Effects/metal_break1.ogg + params: + volume: -4 + - !type:SpillBehavior { } + - !type:SpawnEntitiesBehavior + spawn: + ShardGlass: + min: 0 + max: 1 + transferForensics: true + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Openable + sound: + path: /Audio/Items/pop.ogg + - type: StaticPrice + price: 0 + +- type: entity + id: ADTPlasticBottle + name: plastic bottle + parent: ADTBaseChemistryEmptyPlasticBottle + +##стеклянная + +- type: entity + name: bottle + parent: BaseChemistryEmptyBottle + id: ADTBaseChemistryEmptyBottle + abstract: true + description: A small plastic bottle. + components: + - type: PhysicalComposition + materialComposition: + Glass: 25 + - type: SpaceGarbage + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/glass-bottle.rsi + layers: + - state: icon + map: [ "enum.SolutionContainerLayers.Base" ] + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon-front + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: Appearance + - type: SolutionTransfer + minTransferAmount: 1 + transferAmount: 5 + maxTransferAmount: 30 + canChangeTransferAmount: true + - type: SolutionContainerVisuals + maxFillLevels: 6 + fillBaseName: fill + - type: Item + size: Tiny + sprite: ADT/Objects/Specific/Chemistry/glass-bottle.rsi + - type: Openable + sound: + path: /Audio/Items/pop.ogg + - type: StaticPrice + price: 0 + +- type: entity + id: ADTGlassBottle + name: glass bottle + parent: ADTBaseChemistryEmptyBottle + +# Заполненные бутылочки + +#пластиковые +- type: entity + id: ADTPeroHydrogenBottle + name: perohydrogen bottle + parent: ADTPlasticBottle + description: A small plastic bottle. The letters on the label so small that they form a funny face. + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/plastic-bottle.rsi + layers: + - state: icon + map: [ "enum.SolutionContainerLayers.Base" ] + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon-front-perohydrogen + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: ADTPeroHydrogen + Quantity: 30 + +- type: entity + id: ADTNikematideBottle + name: nikematide bottle + description: A small plastic bottle. The letters on the label so small that they form a funny face. + parent: ADTPlasticBottle + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/plastic-bottle.rsi + layers: + - state: icon + map: [ "enum.SolutionContainerLayers.Base" ] + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon-front-nikematide + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: ADTNikematide + Quantity: 30 + +- type: entity + id: ADTDiethamilateBottle + name: diethamilate bottle + description: A small plastic bottle. The letters on the label so small that they form a funny face. + parent: ADTPlasticBottle + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/plastic-bottle.rsi + layers: + - state: icon + map: [ "enum.SolutionContainerLayers.Base" ] + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon-front-diethamilate + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: ADTDiethamilate + Quantity: 30 + +- type: entity + id: ADTDyloveneBiomicineBottle + name: dylovene & biomicine bottle + parent: ADTPlasticBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Dylovene + Quantity: 15 + - ReagentId: ADTBiomicine + Quantity: 15 + +#стеклянные ADT +- type: entity + id: ADTMorphineBottle + name: morphine bottle + parent: ADTGlassBottle + description: A small bottle with morphine. + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/glass-bottle.rsi + layers: + - state: icon + map: [ "enum.SolutionContainerLayers.Base" ] + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon-front-morphine + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: ADTMorphine + Quantity: 30 + +- type: entity + id: ADTOpiumBottle + name: opium bottle + parent: ADTMorphineBottle + description: A small bottle with opium. + components: + - type: SolutionContainerManager + solutions: + drink: + reagents: + - ReagentId: ADTOpium + Quantity: 30 + +- type: entity + id: ADTFormalinBottle + name: Formalin bottle + parent: ADTGlassBottle + description: A basis of pathologist's work. + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/glass-bottle.rsi + layers: + - state: fill1 + map: [ "enum.SolutionContainerLayers.Fill" ] + visible: false + - state: icon_formalin + map: [ "enum.SolutionContainerLayers.Overlay" ] + - type: SolutionContainerVisuals + maxFillLevels: 3 + fillBaseName: fill + - type: SolutionContainerManager + solutions: + drink: + maxVol: 15 + reagents: + - ReagentId: ADTFormalin + Quantity: 15 + +#стеклянные обычные +- type: entity + id: ADTObjectsSpecificArithrazineChemistryBottle + name: Arithrazine bottle + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Arithrazine + Quantity: 30 + +- type: entity + id: ADTObjectsSpecificBicaridineChemistryBottle + name: Bicaridine bottle + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Bicaridine + Quantity: 30 + +- type: entity + id: ADTObjectsSpecificDexalinPlusChemistryBottle + name: DexalinPlus bottle + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: DexalinPlus + Quantity: 30 + +- type: entity + id: ADTObjectsSpecificDermalineChemistryBottle + name: Dermaline bottle + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Dermaline + Quantity: 30 + +- type: entity + id: ADTObjectsSpecificDexalinChemistryBottle + name: Dexalin bottle + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Dexalin + Quantity: 30 + +- type: entity + id: ADTObjectsSpecificLeporazineChemistryBottle + name: Leporazine bottle + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Leporazine + Quantity: 30 + +- type: entity + id: ADTOmnizineBottle + name: omnizine bottle + parent: BaseChemistryEmptyBottle + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Omnizine + Quantity: 30 + +- type: entity + id: ADTAmatoxinChemistryBottle + name: amatoxin bottle + parent: BaseChemistryBottleFilled + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Amatoxin + Quantity: 30 + +- type: entity + id: ADTLicoxideChemistryBottle + name: licoxide bottle + parent: BaseChemistryBottleFilled + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Licoxide + Quantity: 30 + +- type: entity + id: ADTLexorinChemistryBottle + name: lexorin bottle + parent: BaseChemistryBottleFilled + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Lexorin + Quantity: 30 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-pills.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-pills.yml new file mode 100644 index 00000000000..6a4a9a3b289 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemical-pills.yml @@ -0,0 +1,379 @@ +- type: entity + id: ADTBasePack + parent: BaseStorageItem + description: Holds up to 10 pills. + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: pack + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + size: Tiny + - type: Tag + tags: + - PillCanister + - type: Storage + grid: + - 0,0,4,1 + whitelist: + components: + - Pill + +- type: entity + name: pill canister + id: ADTPillCanister + parent: PillCanister + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/pills.rsi + state: pill-canister + - type: Item + sprite: ADT/Objects/Specific/Chemistry/pills.rsi + +- type: entity + id: ADTPillPack + name: pill pack + parent: ADTBasePack + +#заполненные упаковки +- type: entity + name: sodiumizole pack + id: ADTSodiumizolePack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: sodiumizole + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: ADTSodiumizolePill + amount: 10 + +- type: entity + name: nitrofurfoll pack + id: ADTNitrofurfollPack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: nitrofurfoll + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: ADTNitrofurfollPill + amount: 10 + +- type: entity + name: anelgesin pack + id: ADTAnelgesinPack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: anelgesin + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: ADTAnelgesinPill + amount: 10 + +- type: entity + name: minoxide pack + id: ADTMinoxidePack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: minoxide + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: ADTMinoxidePill + amount: 10 + +- type: entity + name: diethamilate pack + id: ADTDiethamilatePack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: diethamilate + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: ADTDiethamilatePill + amount: 10 + +- type: entity + name: haloperidol pack + id: ADTHaloperidolPack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: haloperidol + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: ADTHaloperidolPill + amount: 10 + +- type: entity + name: charcoal pack + id: ADTCharcoalPack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: charcoal + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: PillCharcoal + amount: 10 + +- type: entity + name: ethylredoxrazine pack + id: ADTEthylredoxrazinePack + parent: ADTPillPack + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + state: ethylredoxrazine + - type: Item + sprite: ADT/Objects/Specific/Chemistry/packs.rsi + - type: StorageFill + contents: + - id: ADTEthylredoxrazinePill + amount: 10 + +#баночка +- type: entity + name: vitamin canister + id: ADTVitaminCanister + parent: ADTPillCanister + description: Contains healthy vitamins for you. + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/pills.rsi + state: vitamin-canister + - type: Item + sprite: ADT/Objects/Specific/Chemistry/pills.rsi + - type: StorageFill + contents: + - id: ADTVitaminPill + amount: 10 + +# пиллюли. +- type: entity + name: pill + parent: Pill + id: ADTPillBase + abstract: true + description: It's not a suppository. + +- type: entity + name: sodiumizole pill + parent: ADTPillBase + id: ADTSodiumizolePill + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: ADTSodiumizole + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill7 + +- type: entity + name: nitrofurfoll pill + parent: ADTPillBase + id: ADTNitrofurfollPill + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: ADTNitrofurfoll + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill7 + +- type: entity + name: anelgesin pill + parent: ADTPillBase + id: ADTAnelgesinPill + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: ADTAnelgesin + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill8 + +- type: entity + name: minoxide pill + parent: ADTPillBase + id: ADTMinoxidePill + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: ADTMinoxide + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill20 + +- type: entity + name: diethamilate pill + parent: ADTPillBase + id: ADTDiethamilatePill + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: ADTDiethamilate + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill9 + +- type: entity + name: haloperidol pill + parent: ADTPillBase + id: ADTHaloperidolPill + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Haloperidol + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill9 + +- type: entity + name: ethylredoxrazine pill + parent: ADTPillBase + id: ADTEthylredoxrazinePill + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Ethylredoxrazine + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill17 + +- type: entity + name: vitamin pill + parent: ADTPillBase + id: ADTVitaminPill + description: Found in healthy, complete meals. + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Vitamin + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill16 + +# Пилюля для ГраждоМеда # Убрать и заменить на норм настройку цен в вендомате как будет возможность. + +- type: entity + name: pill Tricordrazine + parent: PillTricordrazine + id: ADTPillTricordrazine + components: + - type: Pill + pillType: 0 + - type: Label + currentLabel: + - type: SolutionContainerManager + solutions: + food: + maxVol: 10 + reagents: + - ReagentId: Tricordrazine + Quantity: 10 + - type: StaticPrice + price: 5 + +- type: entity + name: ephedrine pill + parent: ADTPillBase + id: ADTEphedrinePill + description: Feel the speed! + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Ephedrine + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill16 + - type: StaticPrice + price: 4 + +- type: entity + name: toxin pill + parent: ADTPillBase + id: ADTToxinPill + description: Whoops. he-he + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Toxin + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill14 + - type: StaticPrice + price: 4 + +- type: entity + name: happiness pill + parent: ADTPillBase + id: ADTHappinessPill + description: Feel the speed! + components: + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: Happiness + Quantity: 10 + - type: Sprite + sprite: Objects/Specific/Chemistry/pills.rsi + state: pill11 + - type: StaticPrice + price: 4 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemistry.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemistry.yml new file mode 100644 index 00000000000..29145775efd --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Chemistry/chemistry.yml @@ -0,0 +1,45 @@ +- type: entity + name: small syringe + description: A small syringe to take.. you guessed it, small samples of liquid. + parent: BaseItem + id: ADTSmallSyringe + components: + - type: Sprite + sprite: ADT/Objects/Specific/Chemistry/syringe.rsi + layers: + - state: fill-1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - state: syringe_base + map: ["enum.SolutionContainerLayers.Base"] + - type: Icon + sprite: ADT/Objects/Specific/Chemistry/syringe.rsi + state: "syringe_base" + - type: Item + size: Tiny + sprite: ADT/Objects/Specific/Chemistry/syringe.rsi + - type: SolutionContainerManager + solutions: + injector: + maxVol: 5 + - type: FitsInDispenser + solution: injector + - type: Injector + minTransferAmount: 1 + maxTransferAmount: 5 + delay: 3 + transferAmount: 1 + injectOnly: false + - type: Appearance + - type: ExaminableSolution + solution: injector + - type: Spillable + solution: injector + - type: TrashOnSolutionEmpty + solution: injector + - type: SolutionContainerVisuals + maxFillLevels: 5 + fillBaseName: fill- + - type: Tag + tags: + - Syringe diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/Seeds/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/Seeds/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/Seeds/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/leaves.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/leaves.yml new file mode 100644 index 00000000000..464cad38c2d --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/leaves.yml @@ -0,0 +1,71 @@ +- type: entity + name: cannabis white leaves + parent: ProduceBase + id: ADTLeavesCannabisWhite + description: "Recently legalized in most galaxies. This one have omnizine inside" + components: + - type: Sprite + sprite: ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi + - type: Produce + seedId: ADTCannabisWhite + - type: Food + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: THC + Quantity: 5 + - ReagentId: Omnizine + Quantity: 8 + +- type: entity + name: dried cannabis leaves + parent: BaseItem + id: ADTLeavesCannabisWhiteDried + description: "Dried cannabis leaves, ready to be ground." + components: + - type: Stack + stackType: ADTLeavesCannabisWhiteDried + count: 1 + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: THC + Quantity: 4 + - ReagentId: Omnizine + Quantity: 7 + - type: Sprite + sprite: ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi # Corvax-Resprite: Fix path + state: dried + +#измельчённый ееееееееееееееееееееееееееееееееееееее +- type: entity + name: ground cannabis white + parent: BaseItem + id: ADTGroundCannabisWhite + description: "Ground cannabis, ready to take you on a trip." + components: + - type: Stack + stackType: ADTGroundCannabisWhite + count: 1 + - type: SolutionContainerManager + solutions: + food: + reagents: + - ReagentId: THC + Quantity: 8 + - ReagentId: Omnizine + Quantity: 14 + - type: Sprite + sprite: Objects/Misc/reagent_fillings.rsi + state: powderpile + color: lightgreen + - type: Construction + graph: ADTsmokeableGroundCannabisWhite + node: ground + - type: Tag + tags: + - Smokable + - type: Item + size: Tiny diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/seeds.yml new file mode 100644 index 00000000000..ae4457d2319 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -0,0 +1,20 @@ +- type: entity + parent: SeedBase + name: packet of papaver somniferum seeds + id: ADTPapaverSomniferumSeeds + components: + - type: Seed + seedId: ADTPapaverSomniferum + - type: Sprite + sprite: ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi + +- type: entity + parent: SeedBase + name: packet of cannabis white seeds + description: "Sweet." + id: ADTcannabiswhiteSeeds + components: + - type: Seed + seedId: ADTCannabisWhite + - type: Sprite + sprite: ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/Chemistry/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/Chemistry/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/Chemistry/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/defib.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/defib.yml index ee787c7a4ce..8a0f5286656 100644 --- a/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/defib.yml @@ -1,3 +1,31 @@ +- type: entity + id: ADTMobileDefibrillator + name: mobile defibrillator + description: Mobile version of defibrillator. Can be fixed on your belt, a medical one and even fits in pockets! #somehow + parent: BaseDefibrillator + components: + - type: Item + size: Small + - type: Clothing + quickEquip: false + slots: + - belt + - type: Tag + tags: + - Defibrillator + - ADTMobileDefibrillator + - type: Sprite + sprite: ADT/Objects/Specific/Medical/mobile_defib.rsi + - type: Defibrillator + zapHeal: + types: + Asphyxiation: -20 + doAfterDuration: 1.5 + zapDelay: 6 + - type: MultiHandedItem + - type: StealTarget + stealGroup: ADTMobileDefibrillator + - type: entity id: ADTHandDefibrillator name: diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/healing.yml new file mode 100644 index 00000000000..10a6bec47ce --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/healing.yml @@ -0,0 +1,124 @@ +- type: entity + parent: BaseItem + id: ADTBaseHealingItem + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Specific/Medical/medical.rsi + - type: Item + size: Small + sprite: ADT/Objects/Specific/Medical/medical.rsi + heldPrefix: med_tourniqet + - type: StaticPrice + price: 0 + +- type: entity + name: antibiotic ointment + description: Used to treat blunt and burn traumas. + parent: ADTBaseHealingItem + id: ADTAntibioticOintment + suffix: Full + components: + - type: Tag + tags: + - Ointment + - type: Sprite + state: antib_ointment + - type: Item + heldPrefix: antib_ointment + - type: Healing #по факту, эта штука может вылечить аж 210 урона за 10 штук, но учитывая то, что кислотные раны очень редки, то где-то 190, что тоже достаточно. + damageContainers: + - Biological + damage: + groups: + Brute: -9 #по 3 в каждом уроне. + Burn: -12 #по 3 в каждом уроне. даже кислотных. + healingBeginSound: + path: "/Audio/Items/Medical/ointment_begin.ogg" + healingEndSound: + path: "/Audio/Items/Medical/ointment_end.ogg" + - type: Stack + stackType: ADTAntibioticOintment + count: 10 + - type: StackPrice + price: 10 + +- type: entity + id: ADTAntibioticOintment1 + parent: ADTAntibioticOintment + suffix: Single + components: + - type: Stack + stackType: ADTAntibioticOintment + count: 1 + +# Стаки Для ГраждоМеда # Убрать и заменить на норм настройку цен в вендомате как будет возможность. + +- type: entity + id: ADTBloodpack1 + parent: Bloodpack + suffix: Single + components: + - type: Stack + stackType: Bloodpack + count: 1 + - type: StackPrice + price: 12 + +- type: entity + id: ADTOintment1 + parent: Ointment + suffix: Single + components: + - type: Stack + stackType: Ointment + count: 1 + - type: StackPrice + price: 9 + +- type: entity + id: ADTGauze1 + parent: Gauze + suffix: Single + components: + - type: Stack + count: 1 + - type: StackPrice + price: 13 + +- type: entity + id: ADTBrutepack1 + parent: Brutepack + suffix: Single + components: + - type: Stack + stackType: Brutepack + count: 1 + - type: StackPrice + price: 9 + +# Емагнутые хилки для граждомеда + +- type: entity + id: ADTBrutepackAdvanced1 + parent: MedicatedSuture + suffix: Single + components: + - type: Stack + stackType: MedicatedSuture + count: 1 + - type: StackPrice + price: 5 + +- type: entity + id: ADTOintmentAdvanced1 + parent: RegenerativeMesh + suffix: Single + components: + - type: Stack + stackType: RegenerativeMesh + count: 1 + - type: StackPrice + price: 5 + + diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/patchs.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/patchs.yml new file mode 100644 index 00000000000..fb090c74d06 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Medical/patchs.yml @@ -0,0 +1,161 @@ +- type: entity + name: patch pack + id: ADTPatchPack + parent: BaseStorageItem + description: It's a container for storing medical patches. + components: + - type: Sprite + sprite: ADT/Objects/Specific/Medical/patch.rsi + scale: 1.3, 1.3 + state: patchpack + - type: Item + size: Small + - type: Storage + grid: + - 0,0,1,2 + maxItemSize: Small + quickInsert: true + areaInsert: true + whitelist: + tags: + - ADTPatch + +#BasePatch + +- type: entity + name: patch + parent: BaseItem + description: + id: ADTBasePatch + components: + - type: Sprite + sprite: ADT/Objects/Specific/Medical/patch.rsi + layers: + - state: patch0 + map: ["enum.SolutionContainerLayers.Fill"] + - type: Item + sprite: ADT/Objects/Specific/Medical/patch.rsi + size: Tiny + - type: SolutionContainerManager + solutions: + pen: + maxVol: 20 + - type: DeleteOnSolutionEmpty + solution: pen + - type: Hypospray + onlyAffectsMobs: true + solutionName: pen + transferAmount: 20 + injectSound: /Audio/Items/Medical/brutepack_end.ogg + - type: Extractable + grindableSolutionName: pen + - type: Appearance + - type: StaticPrice + price: 10 + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: patchused + - type: Tag + tags: + - ADTPatch + +#Patch healing + +- type: entity + name: healing patch + parent: ADTBasePatch + id: ADTPatchHealing + description: Helps with brute injuries. + components: + - type: Sprite + layers: + - state: patch2 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerManager + solutions: + pen: + maxVol: 18 + reagents: + - ReagentId: ADTStypticPowder + Quantity: 18 + +#Patch healing small + +- type: entity + name: healing mini-patch + parent: ADTBasePatch + id: ADTPatchHealingMini + description: Helps with brute injuries. + components: + - type: Sprite + layers: + - state: patch1 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerManager + solutions: + pen: + maxVol: 10 + reagents: + - ReagentId: ADTStypticPowder + Quantity: 10 + +#Patch burn + +- type: entity + name: burn patch + parent: ADTBasePatch + id: ADTPatchBurn + description: Helps with burn injuries. + components: + - type: Sprite + layers: + - state: patch4 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerManager + solutions: + pen: + maxVol: 14 + reagents: + - ReagentId: ADTSilverSulfadiazine + Quantity: 14 + +#Patch burn small + +- type: entity + name: burn mini-patch. + parent: ADTBasePatch + id: ADTPatchBurnMini + description: Helps with burn injuries. + components: + - type: Sprite + layers: + - state: patch3 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerManager + solutions: + pen: + maxVol: 7 + reagents: + - ReagentId: ADTSilverSulfadiazine + Quantity: 7 + +#honk honk? + +- type: entity + name: honk patch + parent: ADTBasePatch + id: ADTPatchHonk + description: Miracle honk-medicine, increases the level of fun in the blood. + components: + - type: Sprite + layers: + - state: patch20 + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerManager + solutions: + pen: + maxVol: 6 + reagents: + - ReagentId: Honk + Quantity: 6 diff --git a/Resources/Prototypes/ADT/Entities/Objects/Specific/Service/vending_machine_restock.yml b/Resources/Prototypes/ADT/Entities/Objects/Specific/Service/vending_machine_restock.yml new file mode 100644 index 00000000000..b218a6867d6 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Specific/Service/vending_machine_restock.yml @@ -0,0 +1,65 @@ +- type: entity + parent: BaseItem + id: ADTSecuredVendingMachineRestock + abstract: true + name: secured vending machine restock box + description: A secured box for restocking vending machines with corporate goodies, the contents of the box gets destroyed if it's hit by force. + components: + - type: VendingMachineRestock + - type: Sprite + sprite: ADT/Objects/Specific/Service/vending_machine_restock.rsi # Update this later with a new sprite + layers: + - state: base + - state: green_bit + shader: unshaded + - type: CargoSellBlacklist + - type: StaticPrice + price: 0 + - type: MeleeWeapon + damage: + types: + Blunt: 5 + soundHit: + path: /Audio/Weapons/genhit2.ogg + soundSwing: + path: /Audio/Weapons/punchmiss.ogg + - type: Item + size: Large + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Metallic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 100 + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + ADTScrapSecuredBox: + min: 1 + max: 1 + - !type:PlaySoundBehavior + sound: + collection: MetalBreak + - !type:DoActsBehavior + acts: [ "Destruction" ] + +- type: entity + parent: ADTSecuredVendingMachineRestock + id: ADTSecuredVendingMachineRestockCiviMedVend + name: CiviMed restock box + description: A box containing medical supplies for the CiviMed vending machine. A label reads THE BOX IS TAMPER PROOF AND WILL DESTROY IT'S CONTENT ON HARM. + components: + - type: VendingMachineRestock + canRestock: + - ADTCiviMedVendInventory + - type: Sprite + sprite: ADT/Objects/Specific/Service/vending_machine_restock.rsi + layers: + - state: base + - state: green_bit + shader: unshaded + - state: refill_civimed + - type: StaticPrice + price: -1500 diff --git a/Resources/Prototypes/ADT/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/ADT/Entities/Structures/Machines/vending_machines.yml index e53ac62c62c..b184599628e 100644 --- a/Resources/Prototypes/ADT/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/ADT/Entities/Structures/Machines/vending_machines.yml @@ -65,6 +65,8 @@ - type: TTS # Corvax-TTS voice: bebey +# Оружейная тсф + - type: entity parent: VendingMachine id: ADTVendingMachineTSFArmoury @@ -85,3 +87,107 @@ shader: unshaded - state: panel map: ["enum.WiresVisualLayers.MaintenancePanel"] + +# Таблеткомат + +- type: entity + parent: VendingMachine + id: ADTVendingMachinePill + name: Pill-O-Mat + description: (Almost) A practical solution to many of your sores. + components: + - type: VendingMachine + pack: PillInventory + offState: off + brokenState: broken + normalState: normal-unshaded + denyState: deny-unshaded + ejectState: eject-unshaded + ejectDelay: 0.6 + - type: Advertise + pack: PillAds + - type: Speech + - type: Sprite + sprite: ADT/Structures/Machines/VendingMachines/pillomat.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + radius: 1.8 + energy: 1.6 + color: "#a1e1f0" + - type: StaticPrice + price: 2600 + +# Парашкаф + +- type: entity + parent: VendingMachine + id: ADTVendingMachineParaDrobe + name: ParaDrobe + description: A vending machine that dispences new clothing for paramedics. + components: + - type: VendingMachine + pack: ParadrobeInventory + offState: off + brokenState: broken + normalState: normal-unshaded + - type: Advertise + pack: MediDrobeAds + - type: Sprite + sprite: ADT/Structures/Machines/VendingMachines/paradrobe.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: AccessReader + access: [["Medical"]] + - type: PointLight + radius: 1.8 + energy: 1.6 + color: "#1ca9d4" + +# ГраждоМед + +- type: entity + parent: VendingMachine + id: ADTVendingMachineCiviMedVend + name: CiviMedVend + description: CiviMed, distributing lifesaving meds harder than the rocks you break! Miners, DON'T DIE! + components: + - type: VendingMachine + pack: ADTCiviMedVendInventory + offState: off + brokenState: broken + normalState: normal-unshaded + priceMultiplier: 1.1 + ejectDelay: 0.6 + # ejectState: eject-unshaded No sprite, see chefvend/dinnerware/BODA/etc for expamples + - type: Advertise + pack: ADTCiviMedAds + - type: Sprite + sprite: ADT/Structures/Machines/VendingMachines/civimed.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#4b93ad" + - type: StaticPrice + price: -2000 + diff --git a/Resources/Prototypes/ADT/Hydroponics/seeds.yml b/Resources/Prototypes/ADT/Hydroponics/seeds.yml new file mode 100644 index 00000000000..b485419d428 --- /dev/null +++ b/Resources/Prototypes/ADT/Hydroponics/seeds.yml @@ -0,0 +1,58 @@ +- type: seed + id: ADTPapaverSomniferum + name: seeds-papaver-somniferum-name + noun: seeds-noun-seeds + displayName: seeds-papaver-somniferum-display-name + plantRsi: ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi + packetPrototype: ADTPapaverSomniferumSeeds + productPrototypes: + - ADTFoodPapaverSomniferum + lifespan: 25 + maturation: 10 + production: 3 + yield: 3 + potency: 10 + growthStages: 3 + waterConsumption: 0.60 + chemicals: + Nutriment: + Min: 1 + Max: 2 + PotencyDivisor: 50 + Toxin: + Min: 1 + Max: 4 + PotencyDivisor: 5 + ADTMOpium: + Min: 1 + Max: 10 + PotencyDivisor: 5 + +- type: seed + id: ADTCannabisWhite + name: seeds-cannabiswhite-name + noun: seeds-noun-seeds + displayName: seeds-cannabiswhite-display-name + plantRsi: ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi + packetPrototype: ADTcannabiswhiteSeeds + productPrototypes: + - ADTLeavesCannabisWhite + harvestRepeat: Repeat + lifespan: 75 + maturation: 8 + production: 15 + yield: 2 + potency: 30 + growthStages: 2 + waterConsumption: 0.40 + idealLight: 9 + idealHeat: 298 + chemicals: + THC: + Min: 5 + Max: 15 + PotencyDivisor: 15 + Omnizine: + Min: 3 + Max: 8 + PotencyDivisor: 15 diff --git a/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/chief-medical-officer.yml b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/chief-medical-officer.yml new file mode 100644 index 00000000000..2d0d34f7d37 --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/chief-medical-officer.yml @@ -0,0 +1,19 @@ +- type: loadout + id: ADTCMOJumpsuitHike + equipment: + jumpsuit: ADTClothingUniformJumpsuitCMOHike + +- type: loadout + id: ADTCMOJumpskirtHike + equipment: + jumpsuit: ADTClothingUniformJumpskirtCMOHike + +- type: loadout + id: ADTCMOLabcoatHike + equipment: + outerClothing: ADTClothingOuterCoatLabcoatCMOHike + +- type: loadout + id: ADTCMOHighBoots + equipment: + shoes: ADTClothingShoesHighboots diff --git a/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/medical-officer.yml b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/medical-officer.yml new file mode 100644 index 00000000000..68b18d6ac94 --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/medical-officer.yml @@ -0,0 +1,9 @@ +- type: loadout + id: ADTMedicalBelt + equipment: + belt: ClothingBeltMedicalFilled + +- type: loadout + id: ADTMedicalBeltBag + equipment: + belt: ADTClothingBeltMedicalBagFilled diff --git a/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/paramedic.yml b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/paramedic.yml new file mode 100644 index 00000000000..04758e6d02b --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/paramedic.yml @@ -0,0 +1,29 @@ +- type: loadout + id: ADTParamedicBeret + equipment: + head: ADTClothingHeadHatsParamedicBeret + +- type: loadout + id: ADTParamedicBackpack + equipment: + back: ADTClothingBackpackParamedic + +- type: loadout + id: ADTParamedicSatchel + equipment: + back: ADTClothingBackpackSatchelParamedic + +- type: loadout + id: ADTParamedicDuffel + equipment: + back: ADTClothingBackpackDuffelParamedic + +- type: loadout + id: ADTParamedicBeltEMT + equipment: + belt: ClothingBeltMedicalEMTFilled + +- type: loadout + id: ADTParamedicBeltEMTBag + equipment: + belt: ADTClothingBeltMedicalBagEMTFilled diff --git a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml index 876fdcdaeec..1d052192bab 100644 --- a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml @@ -64,6 +64,31 @@ - BlueShoes - MedicalWinterBoots +- type: loadoutGroup + id: ADTMedicalBelt + name: loadout-group-medical-belt-adt + minLimit: 1 + loadouts: + - ADTMedicalBelt + - ADTMedicalBeltBag + +- type: loadoutGroup + id: ADTParamedicBelt + name: loadout-group-paramedic-belt-adt + minLimit: 1 + loadouts: + - ADTParamedicBeltEMT + - ADTParamedicBeltEMTBag + +- type: loadoutGroup + id: ADTParamedicBackpack + name: loadout-group-paramedic-backpack-adt + minLimit: 1 + loadouts: + - ADTParamedicBackpack + - ADTParamedicSatchel + - ADTParamedicDuffel + #Science - type: loadoutGroup diff --git a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml index 46ed80e3098..d7cf3d54f3b 100644 --- a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml @@ -87,6 +87,7 @@ - MedicalMask - MedicalDoctorJumpsuit - MedicalGloves + - ADTMedicalBelt # ADT tweak - MedicalBackpack - MedicalDoctorOuterClothing - Trinkets diff --git a/Resources/Prototypes/ADT/Objectives/stealTargetGroups.yml b/Resources/Prototypes/ADT/Objectives/stealTargetGroups.yml index a38dc508afd..d6398f274cb 100644 --- a/Resources/Prototypes/ADT/Objectives/stealTargetGroups.yml +++ b/Resources/Prototypes/ADT/Objectives/stealTargetGroups.yml @@ -6,12 +6,12 @@ # sprite: NES/GraviCore.rsi # state: GraviCore -# - type: stealTargetGroup -# id: MobileDefibrillator -# name: переносной дефибриллятор -# sprite: -# sprite: ADT/Objects/Specific/Medical/mobile_defib.rsi -# state: icon +- type: stealTargetGroup + id: ADTMobileDefibrillator + name: steal-target-groups-adt-mobile-defibrillator + sprite: + sprite: ADT/Objects/Specific/Medical/mobile_defib.rsi + state: icon - type: stealTargetGroup id: ADTClothingMaskGasCE diff --git a/Resources/Prototypes/ADT/Objectives/traitor.yml b/Resources/Prototypes/ADT/Objectives/traitor.yml new file mode 100644 index 00000000000..3ff93ad8fda --- /dev/null +++ b/Resources/Prototypes/ADT/Objectives/traitor.yml @@ -0,0 +1,9 @@ +- type: entity + categories: [ HideSpawnMenu ] + parent: BaseTraitorStealObjective + id: ADTCMODefibrillatorStealObjective + components: + - type: NotJobRequirement + job: ChiefMedicalOfficer + - type: StealCondition + stealGroup: ADTMobileDefibrillator diff --git a/Resources/Prototypes/ADT/Reagents/medicine.yml b/Resources/Prototypes/ADT/Reagents/medicine.yml index d4f5faee2a3..462da158d54 100644 --- a/Resources/Prototypes/ADT/Reagents/medicine.yml +++ b/Resources/Prototypes/ADT/Reagents/medicine.yml @@ -501,11 +501,117 @@ - !type:HealthChange conditions: - !type:Temperature - max: 153.0 + max: 173.0 damage: types: - Poison: -2.5 - Radiation: -2 + Poison: -5 Slash: 0.4 Piercing: 0.8 + - !type:GenericStatusEffect + key: Drunk + time: 8.0 + type: Add +- type: reagent + id: ADTArazine + name: reagent-name-arazine + group: Medicine + desc: reagent-desc-arazine + physicalDesc: reagent-physical-desc-fizzy + flavor: medicine + color: "#ff6d05" + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate : 0.5 + effects: + - !type:HealthChange + conditions: + - !type:Temperature + max: 213.0 + damage: + types: + Radiation: -4.5 + +- type: reagent + id: ADTMezadrozine + name: reagent-name-mezadrozine + group: Medicine + desc: reagent-desc-mezadrozine + physicalDesc: reagent-physical-desc-acrid + flavor: medicine + color: "#47061a" + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate : 0.5 + effects: + - !type:HealthChange + conditions: + - !type:Temperature + max: 173.0 + damage: + groups: + Brute: -9.6 + types: + Caustic: 1.0 + - !type:GenericStatusEffect + key: Stutter + component: StutteringAccent + time: 60 + type: Add + - !type:Jitter + time: 60 + +- type: reagent + id: ADTAlomicine + name: reagent-name-alomicine + group: Medicine + desc: reagent-desc-alomicine + physicalDesc: reagent-physical-desc-exotic-smelling + flavor: medicine + color: "#b315c2" + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate : 0.5 + effects: + - !type:HealthChange + conditions: + - !type:Temperature + max: 203.0 + damage: + types: + Shock: -4.2 + Caustic: -3.1 + - !type:GenericStatusEffect + key: TemporaryBlindness + component: TemporaryBlindness + time: 60 + type: Add + +- type: reagent + id: ADTMiadinol + name: reagent-name-miadinol + group: Medicine + desc: reagent-desc-miadinol + physicalDesc: reagent-physical-desc-strong-smelling + flavor: medicine + color: "#111b30" + worksOnTheDead: true + metabolisms: + Medicine: + metabolismRate : 0.5 + effects: + - !type:HealthChange + conditions: + - !type:Temperature + max: 203.0 + damage: + types: + Cold: -4.4 + - !type:GenericStatusEffect + key: Stutter + component: StutteringAccent + time: 60 + type: Add diff --git a/Resources/Prototypes/ADT/Recipes/Crafting/Graphs/smokeables.yml b/Resources/Prototypes/ADT/Recipes/Crafting/Graphs/smokeables.yml new file mode 100644 index 00000000000..86bb9716fa5 --- /dev/null +++ b/Resources/Prototypes/ADT/Recipes/Crafting/Graphs/smokeables.yml @@ -0,0 +1,44 @@ +- type: constructionGraph + id: ADTsmokeableGroundCannabisWhite + start: start + graph: + - node: start + edges: + - to: ground + steps: + - material: ADTLeavesCannabisWhiteDried + amount: 2 + doAfter: 5 + - node: ground + entity: ADTGroundCannabisWhite + +#сами сигарки + +- type: constructionGraph + id: ADTsmokeableJoint + start: start + graph: + - node: start + edges: + - to: joint + steps: + - material: PaperRolling + - material: CigaretteFilter + - material: ADTGroundCannabisWhite + doAfter: 2 + - node: joint + entity: ADTJointWhite + +- type: constructionGraph + id: ADTsmokeableBlunt + start: start + graph: + - node: start + edges: + - to: blunt + steps: + - material: LeavesTobaccoDried + - material: ADTGroundCannabisWhite + doAfter: 2 + - node: blunt + entity: ADTBluntWhite diff --git a/Resources/Prototypes/ADT/Recipes/Crafting/smokeables.yml b/Resources/Prototypes/ADT/Recipes/Crafting/smokeables.yml new file mode 100644 index 00000000000..0372ddc8685 --- /dev/null +++ b/Resources/Prototypes/ADT/Recipes/Crafting/smokeables.yml @@ -0,0 +1,32 @@ +- type: construction + name: ground cannabis white + id: ADTsmokeableGroundCannabisWhite + graph: ADTsmokeableGroundCannabisWhite + startNode: start + targetNode: ground + category: construction-category-misc + description: "Ground white cannabis, ready to take you on a trip." + icon: { sprite: Objects/Misc/reagent_fillings.rsi, state: powderpile } + objectType: Item + +- type: construction + name: joint of cannabis white + id: ADTsmokeableJoint + graph: ADTsmokeableJoint + startNode: start + targetNode: joint + category: construction-category-misc + description: "A roll of dried plant matter wrapped in thin paper." + icon: { sprite: Objects/Consumable/Smokeables/Cannabis/joint.rsi, state: unlit-icon } + objectType: Item + +- type: construction + name: blunt of cannabis white + id: ADTsmokeableBlunt + graph: ADTsmokeableBlunt + startNode: start + targetNode: blunt + category: construction-category-misc + description: "A roll of dried plant matter wrapped in a dried tobacco leaf." + icon: { sprite: Objects/Consumable/Smokeables/Cannabis/blunt.rsi, state: unlit-icon } + objectType: Item diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/chemistry.yml b/Resources/Prototypes/ADT/Recipes/Lathes/chemistry.yml new file mode 100644 index 00000000000..3cfc29c6831 --- /dev/null +++ b/Resources/Prototypes/ADT/Recipes/Lathes/chemistry.yml @@ -0,0 +1,27 @@ +- type: latheRecipe + id: ADTPillCanister + result: ADTPillCanister + completetime: 2 + materials: + Plastic: 100 + +- type: latheRecipe + id: ADTPlasticBottle + result: ADTPlasticBottle + completetime: 2 + materials: + Plastic: 50 + +- type: latheRecipe + id: ADTPillPack + result: ADTPillPack + completetime: 2 + materials: + Plastic: 100 + +- type: latheRecipe + id: ADTBaseChemistryEmptyVial + result: BaseChemistryEmptyVial + completetime: 2 + materials: + Glass: 50 diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/medical.yml b/Resources/Prototypes/ADT/Recipes/Lathes/medical.yml new file mode 100644 index 00000000000..a086e6aa63a --- /dev/null +++ b/Resources/Prototypes/ADT/Recipes/Lathes/medical.yml @@ -0,0 +1,15 @@ +- type: latheRecipe + id: ADTSmallSyringe + result: ADTSmallSyringe + completetime: 1 + materials: + Plastic: 25 + Steel: 25 + +- type: latheRecipe + id: ADTAntibioticOintment + result: ADTAntibioticOintment1 + completetime: 2 + materials: + Glass: 50 + Plastic: 50 diff --git a/Resources/Prototypes/ADT/Recipes/Reactions/medicine.yml b/Resources/Prototypes/ADT/Recipes/Reactions/medicine.yml index b82129eb614..71d216b233c 100644 --- a/Resources/Prototypes/ADT/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/ADT/Recipes/Reactions/medicine.yml @@ -169,10 +169,11 @@ products: ADTSilverSulfadiazine: 5 +# КриоПрепараты - type: reaction id: ADTDetoxisol reactants: - Ultravasculine: + Diethylamine: amount: 1 Diphenhydramine: amount: 1 @@ -182,3 +183,59 @@ amount: 1 products: ADTDetoxisol: 4 + +- type: reaction + id: ADTArazine + reactants: + Arithrazine: + amount: 1 + Ammonia: + amount: 1 + Cryoxadone: + amount: 1 + Gold: + amount: 1 + products: + ADTArazine: 4 + +- type: reaction + id: ADTMezadrozine + reactants: + Razorium: + amount: 1 + Silver: + amount: 1 + Cryoxadone: + amount: 1 + Carbon: + amount: 1 + products: + ADTMezadrozine: 4 + +- type: reaction + id: ADTAlomicine + reactants: + Insuzine: + amount: 1 + Sigynate: + amount: 1 + Cryoxadone: + amount: 1 + Phenol: + amount: 1 + products: + ADTAlomicine: 4 + +- type: reaction + id: ADTMiadinol + reactants: + Kelotane: + amount: 1 + Leporazine: + amount: 1 + Cryoxadone: + amount: 1 + Phenol: + amount: 1 + products: + ADTMiadinol: 4 diff --git a/Resources/Prototypes/ADT/Research/civilianservices.yml b/Resources/Prototypes/ADT/Research/civilianservices.yml new file mode 100644 index 00000000000..fe2347a45db --- /dev/null +++ b/Resources/Prototypes/ADT/Research/civilianservices.yml @@ -0,0 +1,13 @@ +- type: technology + id: ADTCloning + name: research-technology-medical-cloning-adt + icon: + sprite: Structures/Machines/scanner.rsi + state: closed + discipline: CivilianServices + tier: 2 + cost: 12000 + recipeUnlocks: + - CloningPodMachineCircuitboard + - CloningConsoleComputerCircuitboard + - MedicalScannerMachineCircuitboard diff --git a/Resources/Prototypes/ADT/Stacks/consumable_stacks.yml b/Resources/Prototypes/ADT/Stacks/consumable_stacks.yml new file mode 100644 index 00000000000..91350a55606 --- /dev/null +++ b/Resources/Prototypes/ADT/Stacks/consumable_stacks.yml @@ -0,0 +1,13 @@ +- type: stack + id: ADTGroundCannabisWhite + name: ground rainbow cannabis + icon: { sprite: /Textures/Objects/Specific/Hydroponics/rainbow_cannabis.rsi, state: powderpile_rainbow } + spawn: ADTGroundCannabisWhite + maxCount: + +- type: stack + id: ADTLeavesCannabisWhiteDried + name: dried tobacco leaves + icon: { sprite: /Textures/Objects/Specific/Hydroponics/tobacco.rsi, state: dried } + spawn: ADTLeavesCannabisWhiteDried + maxCount: 5 diff --git a/Resources/Prototypes/ADT/Stacks/medical_stacks.yml b/Resources/Prototypes/ADT/Stacks/medical_stacks.yml new file mode 100644 index 00000000000..64fdce6f304 --- /dev/null +++ b/Resources/Prototypes/ADT/Stacks/medical_stacks.yml @@ -0,0 +1,6 @@ +- type: stack + id: ADTAntibioticOintment + name: antibiotic ointment + icon: { sprite: "/Textures/ADT/Objects/Specific/Medical/medical.rsi", state: antib_ointment } + spawn: ADTAntibioticOintment + maxCount: 10 diff --git a/Resources/Prototypes/ADT/tags.yml b/Resources/Prototypes/ADT/tags.yml index c523760fff4..4278293e1a3 100644 --- a/Resources/Prototypes/ADT/tags.yml +++ b/Resources/Prototypes/ADT/tags.yml @@ -133,6 +133,12 @@ - type: Tag id: ADTMagazineRifleAR12 +- type: Tag + id: ADTMobileDefibrillator + +- type: Tag + id: ADTPatch + - type: Tag id: ADTUnderwearB @@ -141,3 +147,6 @@ - type: Tag id: ADTSocks + +- type: Tag + id: ADTMedipen diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 4976225a664..54893c6e576 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -254,12 +254,15 @@ - id: MedicalTechFabCircuitboard - id: MedkitFilled - id: RubberStampCMO - # ADT-WikiBooks-Start + # ADT tweak Start + - id: ADTMobileDefibrillator + - id: ADTBriefcaseBrownHikingCmoFilled + - id: ADTBriefcaseMedicalFilled - id: ADTBookSRPcmd - id: ADTBookSRPmed - id: ADTBookPCDcmd - id: ADTtelescopicBaton - # ADT-WikiBooks-End + # ADT tweak End # Hardsuit table, used for suit storage as well - type: entityTable diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml index 8592b56bfa9..4c5cf5d828e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/medical.yml @@ -12,6 +12,12 @@ amount: 2 - id: Ointment amount: 2 + # ADT tweak Start + - id: ADTAntibioticOintment + amount: 1 + - id: ADTPatchPackFilled + amount: 1 + # ADT tweak End - id: Bloodpack amount: 2 - id: Gauze @@ -31,6 +37,12 @@ amount: 2 - id: Ointment amount: 2 + # ADT tweak Start + - id: ADTAntibioticOintment + amount: 1 + - id: ADTPatchPackFilled + amount: 1 + # ADT tweak End - id: Bloodpack amount: 2 - id: Gauze @@ -114,6 +126,7 @@ - type: StorageFill contents: - id: BoxSyringe + - id: ADTSmallSyringeBox # ADT tweak - id: BoxBeaker - id: BoxBeaker prob: 0.3 @@ -140,6 +153,7 @@ - id: ClothingOuterHardsuitVoidParamed - id: ClothingOuterCoatParamedicWB - id: ClothingHeadHatParamedicsoft + - id: ADTClothingHeadHatsParamedicBeret # ADT tweak - id: ClothingOuterWinterPara - id: ClothingUniformJumpsuitParamedic - id: ClothingUniformJumpskirtParamedic diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml index 466749120bd..6bdb8e73739 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml @@ -2,11 +2,20 @@ id: NanoMedPlusInventory startingInventory: HandheldHealthAnalyzer: 3 - Brutepack: 5 - Ointment: 5 + # ADT tweak start + ADTPatchPackFilled: 3 + Brutepack: 4 + Ointment: 4 + ADTAntibioticOintment: 4 + # ADT tweak end Bloodpack: 5 EpinephrineChemistryBottle: 3 Syringe: 5 ClothingEyesHudMedical: 2 ClothingEyesEyepatchHudMedical: 2 - + # ADT tweak Start + emaggedInventory: + ADTMorphineBottle: 1 + ADTOmnizineBottle: 1 + ADTPatchHonk: 3 + # ADT tweak End diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml index 405e2eff564..32b7bebc528 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/wallmed.yml @@ -2,7 +2,10 @@ id: NanoMedInventory startingInventory: Brutepack: 3 - Ointment: 3 + # ADT tweak start + Ointment: 2 + ADTAntibioticOintment: 2 + # ADT tweak end Bloodpack: 3 EpinephrineChemistryBottle: 3 Syringe: 3 diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml index c38c869f2e9..84fc3bde702 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -58,9 +58,9 @@ description: A void helmet made for paramedics. components: - type: Sprite - sprite: Clothing/Head/Helmets/paramedhelm.rsi + sprite: ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi # ADT tweak респрайт от празата - type: Clothing - sprite: Clothing/Head/Helmets/paramedhelm.rsi + sprite: ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi # ADT tweak респрайт от празата - type: TemperatureProtection heatingCoefficient: 0.1 coolingCoefficient: 0.1 diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index a60d9bc75c2..47d00d11877 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -99,9 +99,9 @@ description: A void suit made for paramedics. components: - type: Sprite - sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi + sprite: ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi # ADT tweak респрайт от празата - type: Clothing - sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi + sprite: ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi # ADT tweak респрайт от празата - type: PressureProtection highPressureMultiplier: 0.5 lowPressureMultiplier: 1000 diff --git a/Resources/Prototypes/Entities/Objects/Materials/materials.yml b/Resources/Prototypes/Entities/Objects/Materials/materials.yml index 8371e21c659..fc9b376f2e8 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/materials.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/materials.yml @@ -86,6 +86,7 @@ - Biological damage: types: + Blunt: 0 # ADT tweak Slash: -0.5 Piercing: -0.5 bloodlossModifier: -4 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml index f28548a8d1c..683ac75a2c0 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/healing.yml @@ -210,7 +210,7 @@ - Biological damage: types: - Bloodloss: -0.5 #lowers bloodloss damage + Bloodloss: -2.5 #lowers bloodloss damage # ADT tweak было до этого -0.5 ModifyBloodLevel: 15 #restores about 5% blood per use on standard humanoids. healingBeginSound: path: "/Audio/Items/Medical/brutepack_begin.ogg" @@ -276,6 +276,7 @@ - Biological damage: types: + Blunt: 0 # благодаря этому дает лечить кровотек всегда ADT tweak Slash: -5 Piercing: -10 bloodlossModifier: -10 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index f6967f44789..059aff3eed5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -124,6 +124,7 @@ - type: Tag tags: - Trash + - ADTMedipen - type: PhysicalComposition materialComposition: Plastic: 50 diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 2eca7a723b6..b64273a77d9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -997,6 +997,7 @@ staticRecipes: - Brutepack - Ointment + - ADTAntibioticOintment # ADT tweak - Gauze - HandLabeler - Defibrillator @@ -1009,9 +1010,16 @@ - LargeBeaker - Dropper - Jug + - ADTSmallSyringe # ADT tweak - Syringe - Implanter - PillCanister + # Start ADT tweak + - ADTPillCanister + - ADTPillPack + - ADTPlasticBottle + - ADTBaseChemistryEmptyVial + # End ADT tweak - BodyBag - ChemistryEmptyBottle01 - RollerBedSpawnFolded diff --git a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml index 885072e6537..1e814d08df6 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/morgue.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/morgue.yml @@ -49,6 +49,7 @@ - type: ContainerContainer containers: entity_storage: !type:Container + paper_label: !type:ContainerSlot # ADT tweak - type: Appearance - type: GenericVisualizer visuals: @@ -73,6 +74,23 @@ - type: AntiRottingContainer - type: StaticPrice price: 200 +# ADT tweak Start + - type: ItemSlots + - type: PaperLabel + labelSlot: + insertVerbText: Attach Label + ejectVerbText: Remove Label + whitelist: + components: + - Paper + - type: ItemMapper + mapLayers: + morgue_paper: + whitelist: + tags: + - Document + sprite: ADT/Structures/Storage/morgue.rsi +# ADT tweak End - type: entity id: Crematorium diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 54c5c29d556..5907c848322 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -937,6 +937,7 @@ - LeavesCannabis mutationPrototypes: - rainbowCannabis + - ADTCannabisWhite # ADT tweak harvestRepeat: Repeat lifespan: 75 maturation: 8 @@ -1153,6 +1154,7 @@ - FoodPoppy mutationPrototypes: - lily + - ADTPapaverSomniferum # ADT tweak lifespan: 25 maturation: 10 production: 3 diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index e149f93b2c8..e9f43f19bfc 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -1177,6 +1177,10 @@ - ChiefMedicalOfficerJumpskirt - ChiefMedicalOfficerTurtleneckJumpsuit - ChiefMedicalOfficerTurtleneckJumpskirt + # ADT tweak start + - ADTCMOJumpsuitHike + - ADTCMOJumpskirtHike + # ADT tweak end - type: loadoutGroup id: ChiefMedicalOfficerOuterClothing @@ -1185,6 +1189,7 @@ loadouts: - ChiefMedicalOfficerLabCoat - ChiefMedicalOfficerWintercoat + - ADTCMOLabcoatHike # ADT tweak - type: loadoutGroup id: ChiefMedicalOfficerNeck @@ -1200,6 +1205,7 @@ loadouts: - BrownShoes - MedicalWinterBoots + - ADTCMOHighBoots # ADT tweak - type: loadoutGroup id: MedicalDoctorHead diff --git a/Resources/Prototypes/Loadouts/role_loadouts.yml b/Resources/Prototypes/Loadouts/role_loadouts.yml index ca2910f7100..212bd7d0818 100644 --- a/Resources/Prototypes/Loadouts/role_loadouts.yml +++ b/Resources/Prototypes/Loadouts/role_loadouts.yml @@ -590,6 +590,7 @@ - ChiefMedicalOfficerJumpsuit - MedicalGloves - MedicalBackpack + - ADTMedicalBelt # ADT tweak - ChiefMedicalOfficerOuterClothing - ChiefMedicalOfficerNeck - ChiefMedicalOfficerShoes @@ -613,6 +614,7 @@ - MedicalDoctorJumpsuit - MedicalGloves - MedicalBackpack + - ADTMedicalBelt # ADT tweak - MedicalDoctorOuterClothing - MedicalShoes - MedicalDoctorPDA @@ -633,6 +635,7 @@ - GroupTankHarness - MedicalInternJumpsuit - MedicalBackpack + - ADTMedicalBelt # ADT tweak - Glasses # ADT underwear tweak start - ADTTop @@ -672,7 +675,11 @@ - MedicalMask - ParamedicJumpsuit - MedicalGloves - - MedicalBackpack + # ADT tweak Start + - ADTParamedicBelt + - ADTParamedicBackpack +# - MedicalBackpack Закоментил для нашего + # ADT tweak End - ParamedicOuterClothing - ParamedicShoes - Glasses diff --git a/Resources/Prototypes/Reagents/medicine.yml b/Resources/Prototypes/Reagents/medicine.yml index 8793452c0da..9108eb7e666 100644 --- a/Resources/Prototypes/Reagents/medicine.yml +++ b/Resources/Prototypes/Reagents/medicine.yml @@ -185,6 +185,7 @@ physicalDesc: reagent-physical-desc-fizzy flavor: medicine color: "#0091ff" + worksOnTheDead: true plantMetabolism: - !type:PlantAdjustToxins amount: -5 @@ -207,10 +208,10 @@ damage: # todo scale with temp like SS13 groups: - Airloss: -6 - Brute: -4 - Burn: -6 - Toxin: -4 + Airloss: -1 + Brute: -1 + Burn: -1.2 + Toxin: -0.8 # Start ADT tweak - !type:HealthChange conditions: @@ -221,11 +222,11 @@ max: 213.0 damage: groups: - Brute: -4 - Burn: -6 - Toxin: -4 + Brute: -1 + Burn: -1.2 + Toxin: -0.8 types: - Bloodloss: -5 + Bloodloss: -1 # End ADT tweak - type: reagent @@ -236,6 +237,7 @@ physicalDesc: reagent-physical-desc-bubbling flavor: medicine color: "#32cd32" + worksOnTheDead: true metabolisms: Medicine: effects: @@ -245,7 +247,7 @@ max: 213.0 damage: types: - Cellular: -2 + Cellular: -3 # ADT tweak - type: reagent id: Dermaline @@ -1449,10 +1451,10 @@ max: 213.0 damage: groups: - Brute: -4 - Burn: -5 - types: - Poison: -2 + Brute: -7 + Burn: -6 + Airloss: -3 + Toxin: -4 - type: reagent id : Aloxadone @@ -1472,9 +1474,9 @@ max: 213.0 damage: types: - Heat: -3.0 - Shock: -3.0 - Caustic: -1.0 + Heat: -5.5 +# Shock: -3.0 ADT tweak +# Caustic: -1.0 ADT tweak - type: reagent id : Mannitol # currently this is just a way to create psicodine diff --git a/Resources/Prototypes/Recipes/Reactions/medicine.yml b/Resources/Prototypes/Recipes/Reactions/medicine.yml index a99015fe90b..2e06a4b4b5d 100644 --- a/Resources/Prototypes/Recipes/Reactions/medicine.yml +++ b/Resources/Prototypes/Recipes/Reactions/medicine.yml @@ -57,24 +57,28 @@ - type: reaction id: Cryoxadone reactants: - Dexalin: + Siderlac: # ADT tweak Может сделать новое особое растение для крио, но это лишь в планах. amount: 1 + DexalinPlus: # ADT tweak + amount: 2 # ADT tweak Water: - amount: 1 - Oxygen: - amount: 1 + amount: 2 # ADT tweak products: - Cryoxadone: 3 + Cryoxadone: 5 # ADT tweak - type: reaction id: Doxarubixadone reactants: + # ADT tweak Start Cryoxadone: amount: 1 UnstableMutagen: amount: 1 + Phalanximine: + amount: 2 + # ADT tweak End products: - Doxarubixadone: 2 + Doxarubixadone: 4 # ADT tweak - type: reaction id: Epinephrine @@ -561,7 +565,7 @@ id: Opporozidone minTemp: 400 #Maybe if a method of reducing reagent temp exists one day, this could be -50 reactants: - Cognizine: + Cognizine: amount: 1 Plasma: amount: 2 @@ -588,12 +592,14 @@ id: Aloxadone impact: Medium reactants: + # ADT tweak Start Cryoxadone: amount: 1 - Aloe: + Pyrazine: amount: 2 - Sigynate: + Phenol: amount: 2 + # ADT tweak Start products: Aloxadone: 4 diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index 87fd003dbc7..41ae4e43090 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -46,7 +46,7 @@ equipment: id: CMOPDA ears: ClothingHeadsetCMO - belt: ClothingBeltMedicalFilled +# belt: ClothingBeltMedicalFilled ADT tweak storage: back: - Flash diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml index 42c388f9b74..80a0486c788 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_doctor.yml @@ -20,7 +20,7 @@ id: DoctorGear equipment: ears: ClothingHeadsetMedical - belt: ClothingBeltMedicalFilled +# belt: ClothingBeltMedicalFilled ADT tweak #storage: #back: #- Stuff diff --git a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml index 6a143daf6f5..95e6ef28f1c 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/medical_intern.yml @@ -24,7 +24,7 @@ shoes: ClothingShoesColorWhite id: MedicalInternPDA ears: ClothingHeadsetMedical - belt: ClothingBeltMedicalFilled +# belt: ClothingBeltMedicalFilled ADT tweak pocket2: BookMedicalReferenceBook #storage: #back: diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index 166f9ac42b7..5e810308de7 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -12,6 +12,7 @@ startingGear: ParamedicGear icon: "JobIconParamedic" supervisors: job-supervisors-cmo + canBeAntag: false # ADT tweak? access: - Medical - Maintenance @@ -22,8 +23,10 @@ id: ParamedicGear equipment: id: ParamedicPDA - ears: ClothingHeadsetMedical - belt: ClothingBeltMedicalEMTFilled +# ADT tweak Start + ears: ADTClothingHeadsetParamedic +# belt: ClothingBeltMedicalEMTFilled +# ADT tweak End storage: back: - EmergencyRollerBedSpawnFolded diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..e9e2d26ad1afaf9246eda81bbda08f80ce45ffe1 GIT binary patch literal 900 zcmV-~1AF|5P)Px&K1oDDRCr$PnmuR~K@`W|A#$;aAk1A?AU6hNGSO+G`( zW0I%>{G^NS=~HJJX!QV-3F+FR28ca?8X+}7ghBt;ZG_eUKwy3d1Tk*%_`FpBysAMM zbg%o>=e1)k0No{|nlAuMk+jv0D8SarnTlH!V2Y%zc0>WTR?bx1q5xAQZM7o`u(fig z;uZy%B5A7~QGl(LGZnWez!XVa?T7+wt(>X2BP-zfiw$Rf;lBI(`yjuwP2bq3fTXv?!yx*7lLB6^KLIS*&C3^9C4>S% zgGd!Gta_02vjl)(MTwi{vH-Zf_oUARgegGf+kcKAtY@(R-fgV+kD#<8U_5j+G4^jYEr8LG- z0TeU#uCSvsN&wjX@c@!{?_KBMK^lpZPb!}G9D(Y+KncKmB8wno^##ZeTPJq536gw} zs!a;OSV;-7zXj5i@j>}!-vkdTkhJ^=fV9YG#jhwJE0stq4pBf_Px%AxT6*R9Hu2WEfz;IKcKZj5=U61cp`!NUB==CnncCzkPyej}fg9WVwL26pH=Z zmdye4y`oZ3#6P@z#z3qih;jhTaser6xJ8r7Q7z5ugg6ESK0JHMK&&H(a)6My=6`lR zeg@6ui05Ogr z7zOAKfZ2*35+I+$08Jeb9^=oja>+)Ncn4Vw3LRuQs)PV2`+@0OWXPGarUOZ{FZ^1WpHl z;$B=;lL6TQAWI230%SS3FoGsRkOMwly~ObI-cGD`;SB+h53uEbV(J5!1HN+0ft8c& z09firP6M#ez~=yvdQiwAr-5&v&>%Gg&>aACh=QRh-T-)T{xmrMgAy)?1|>qOIRF+N zFc)lEF%!)6i%5q%3T8Pt*eP)UdK~}@T2M5=z~o82U}kP!FJvbUaD0_Fh_vm6`U2(8YVFBgAyJr=!vnM=n#Ne z0IQY>WkX^uC)ojnEG9>us5C&1!Nlqrb-;j!0072LJutumO1uC7002ovPDHLkV1l;b B`3?X8 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..645451d1406748df1a86c2fe931313f236f6b665 GIT binary patch literal 669 zcmV;O0%HA%P)Px%S4l)cRCr$PnjuJoK@`Vt$)>|HoW8Lxw^)#LMRLiW+Jn06^^hZBxfyTrMeB;g~$c>vq~2Ds{_}1q88&^#e6C zJ*hRmytP!NTC*07$!GJuc-?j@5f_jEh>P7@U(te(FK@JHo65!GK@5Pv9snf0y;@R@ z>s|}QznfY&l>ngMtL0r)KRVF>@Vl!6-k%=T)a)F82LJ%Djr$zkPO|jrJOdmn#(Y{(;rEandj+hLNyA0YNbQ4-$?)00bTz0Ps72 z@aHD(#~=tr5GdL-@qWPZc&@Pq6_3OL!&r^$I|6`fWqj!p2lyh*bscd4*UI?PB@XaK zn(I2^0IrqsrAr*(i!|4D!~t9@<4cz~z!zz*>xcumR>qeuaeyzZA3ATKnkF7(TrSX0!;P^s(A!50Fb=POn_07fMOnj3_xYS7P-s>m;j)hM<4@$=dtZf zfGGfYpJE;eS5}f5f00000NkvXXu0mjf DAI%}6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..67055a0152bad5cef1fc94a698ae7ea3255ecab4 GIT binary patch literal 658 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-HD>VDj;FaSW-5 zdppa}gE^3=EneMRSMTU9ixn3xItmmPZ?br)aLZSwv{*-WN%FykeUFwkEtve`iJF#$ zh1i;AZ|&G6yDUSCR10M8>@9y=t@8Bgvc)nd=j+$s6V;P^`g7{XJ$0%KM;PY`PZ0cY zhoOk$6vqjU3O@(81I5fIq8;2o3??I{dC~{|=mtdGd|@h=?{>&AbBmf-OXIR<)2bd! zS^wGALZQd^pxX^Ym)h#S5k+vz|Tm>{BC)Fh?hYLd4prz|Wg6J0AGn zKg~)QzzpybKTap3Di{$-r2%Z||y^tw$fqFfbI%+n_La=?bpn zd#*9~JmcEC@gwKg@4pw9m2YeQkuE-+tN!;plZbsnhttJ(FwDAo|-1_4yv$Q@sA`2qWp7 zwjzgF??0^LmNco$VpzP(Sb#l4fg!}2nc@Do@{?B>G|Jfw$}?Bbh}tg79`KIGrTBK! zgf5kLT!C*u>|6dGybW3D46+T@T-(g9u`xMpG!~F!obmkm>ME_bVdof5&27whcdM|K zjbXx)8od8q=3F(yf9~wWfXTk?XMl-}!PC{x JWt~$(69A3f9ajJV literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/meta.json b/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/meta.json new file mode 100644 index 00000000000..84bb9e9bde6 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Back/paramedic_backpack.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/equipped-BACKPACK.png b/Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..3e092c6b48a6e9582d3d309e8ab9b367c158f34c GIT binary patch literal 1058 zcmV+-1l{|IP)Px&+(|@1RCr$PnmuR~K@`Vdu&~n*#GI$aDFzZDA{J_qB85%FDn$~}Mo=N55v+m) zyg(4^Cg8>tX=oQI%r!ho33tjmSJQ>#8-I>kJesD9DdNZ@{ z{pSDXt@~aRHTY<1aR12yunK5!0yYF1TmbeGv>{+aK!d=}_9M=YJvn+mJ(&pQw6u0O zTeoee=GH8IUt1BLd|i5}Wt-OI1IPQEmVNta_U;X>bsCJ7r^?PZXLr*^c~z`koSo9L zO>1(J0OW`B&Yg!(#pwe84}j2tpalRANdg2o-+ri_GMNnJayjZbbM+sDh5!KhPZcMG z^M{Z2(3=-e1O$wYYMH()&nX|Q@6rYHjPFiLoK7R4TMIzeM?)c`cu`CcCfbsFfhcesBMvaGoZ6NSMhW-8;K;a$`(HnQ(0X-I`#`l9)G`1@+H(FRio=UPgZ~o0uaK)KHFAz0NLzbr(FJA z_kH>Hhv6IwVbY%aQ0i`IJx|@e7a-u@@cz#uZ0s9TfJp$nH-o_6!(4o_jj2+A3Ah%3 z394z@(<&fMr)9!cs{j*J)3m2mK$=d=gsoNqCa9)qPpg15ot6n(tpZF?P1BxM0ckod z6Si6f1X1O$vHa~l)7dGOB&A1y?Z>Bi{JFBQAif#m!>LN0&{qNMJXc?^;qNVf#52(- z5m&DO8a2EcA!^y|S1k1fP$(1}6dt(xB5%aqB2h!|bDq_}5V&UOS2Xbjz_mDR3=rMj z-T%#xx;_{bviN;wX2wCa2qUOy;t2p0u>oQUg-0|bc#%vR1Sl7dql%2M#qbIPPXPG# zj_T{k<#RN4>z?n0k~9GBdjNd|UiE{T0I&gwJt#gFDtJ5hnjXEH_w2oi5hh*GYz^@LcVwlPW z7BolBKIlnszmLc*G;$VTpOh4UNmwv+wqIO+$N=Ic!>0}(WfLVot5!n>9~#?>%W(XD zQST0L=Tp?+RZ>dO=|%CooVrJEPX@jX`o0Iqa$@6EUN56?wAM4^CJOwn(mE6PpCP$1 z0h?~N9&Zv(7+V7Y@O{9BZ?+z95nGFI?nwqfH>(V;n`LJNjQZ#ZLkW6lYSDO c-S7(d3!#(>Uz}QirT_o{07*qoM6N<$g0ZRPoB#j- literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/icon.png b/Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..7acffef099747fd0806331c10bb63cd83d4ffa55 GIT binary patch literal 591 zcmV-V0Px%2}wjjR9Hu2WEfz;IKcKZj5=U61V%$(Xoi5Ks>Oc+aVd-<v0{8A@uJ2o|2`YVm~%P6xn( z85FFb;NG@u4#S(*kHL;;nLG!@5#FW-4B3S_3{(53Fl;@20W7y@Vm(|fzNo?K0Q5M< z=7=e4x5FK=tfvud`O&AZQN)lPjLQ*N9iV9w^j|iB!jY^IRh~c$O-mju(Gs3aRk{807ZeIyd1-uCl45e zMPwLYQ2_EDEG@+4H=_6!B<>ZJf*}S9Es$E0q5zcoC3JQ1I$+JZO$_(%KVVQ)RKQB# zzju#e)vC4N=%UC0%zv2}et!DM0LqFWaBS~3u%Uht>3FlFt*JIcXGb?&EyxUPWe3(Y zfE)tI4uDxsOnHE=mLvy&yr$(6_8*i6{=EMT_dU6V5y)~DL0*PeH%<|k3(y?^;_uwH z0$i}<<`okx3DMPpf?iC+>_15kKz0N+jRakRqyS{Oh>QZmwLPnd4*{5dSX99H#5x9K zDNGM8%R%x))rKHPzzhSW3t|AsQW(JIbC?`a4nVdL*)jMWg3nT9eIz@87~hkkX4CPx%)k#D_RCr$PTF*;WK@>iM;7%Gm2=}>Zjbxk{J7`6r!!|(kIT$AbH4MPGY{s= z0Lw>)3`g;h>g zb`I?Sm?2YFQF){D_w)}OAFhyLdWk0m#NcBO8TL&^b-L?hu!D0V6MzRrK+O8kKrhVC ze1%t2@BKZzZ(|d$g&7oKQL2hW0iN6u3?&*Q;oaPVyT|XtJ)f9FB*`*Rzrn`FCX|(x!sE79mlP2J@vuBHFBAbUh6f?Dq((^r7mfg|+bgxTaI&>c z(gQ?T=dK4}O;tZ=cMg`8q;3HWaQWk8+_Dp4ox5AWYbto~M1grkiRP%xQ@!uw&5zUs zgP=&l&z;TCee#P-6J|bkQ5e?I>MYq=N&g5@Wg=ZTNntfz!RYME1n974(i&EPN!iqi zg%zN~nn`O|0VZWrCl*$K4r?Z@VFj3!O`TX+0XnRiw1yR6QZ{vBVFl>0X3`o~0ChG~ z^{nlkJE|WcDGEpx2^4+=QUdU?w4=*PpU){8A*COIoB*s(1dY7~M4kZE z{~;m|LGTuk*_*5hh6N(y8&D+x=gZ*A%pt!93o38BD!`%Y2~Z`1%8!s#1*isPx%zez+vRCr$Pn$JsAQ546|tlFhn_-mvTf1rY*_ydDBMH_#t6a*7mv^F%bofwJB z0g3zzgf>zxq92>6jnJTif}&D}CYl=lNOyuTaUQ&3=FOYA=gD#2yWI0u!<#$je$VHA z&%Fcpguw78WO)7{0K@@?6Oa-x+yJr(N(o2_7*0S+z;FY|DIg^vC15xKDFMR`KsyDB zD%)b`XQyy{uoig7K1;tjZ&X$Ix-3Jg7aZUz7^d%%r5w_$&IIdB_craiz-bCLsUANIyD zDat8OSXT$DU#3ZCZMNzk=gD*mxM@yF03oOnqm0RB(v-Q?!&Yl6BxBUJCI9go?yD38e_~8IA zdjMz80M3io*(blZt$ihN5BNC01Z%T1O82sqfS)}B_T0`>02AZtO(IdG^aD`FP*%h_ z=Bnb_^N;}GU_W~XoOAzOpCjv5L1zo3nkcB>8xP<=S1j^SJonNA00000NkvXXu0mjf Dl*d>O literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/meta.json b/Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/meta.json new file mode 100644 index 00000000000..84bb9e9bde6 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Back/paramedic_duffel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000000000000000000000000000000000..77d2c2f1f24b4e32506bfd78fe160e98e7620202 GIT binary patch literal 853 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/meta.json b/Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/meta.json new file mode 100644 index 00000000000..84bb9e9bde6 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Back/paramedic_satchel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/equipped-BELT.png b/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/equipped-BELT.png new file mode 100644 index 0000000000000000000000000000000000000000..46df54d9520391689212b5cf722fd35a40d0f645 GIT binary patch literal 539 zcmV+$0_6RPP)OvBgoeJngIxW z4}f)y@W?#jwBT3rsz#;X_i`Zvgq zf2-Z0dlo&M9+0_Ogg8m9HNu_kO_Rm6{qkVB003dVX0=PhWuxu&2LRR!AR;0nA|fIp zA|fIpB9FyPj+u70Hw|EAPvD82l>VJ;Sn5?>nyb&Jj#sDv*@DE)@0yJj6D}>9ic`Kl zxVJ1C#>7d={^3!+F!84xf2Z*AsW@fxb@HtQ5H2lVd)O!)lij;76{l=ozii~!f$!y` z_^Y|y)lBw)Y!?B*tGetT9{u&$ywHlwLlM?%`8LXF_w!Uc12b8GgX5D@;Cm+f{J--N d5fPbDKLEIPw9TQ;!4m)g002ovPDHLkV1k&*_U`}y literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/icon.png b/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d4c777f50c0deaa985112ba5f6dd7ebb015e0b85 GIT binary patch literal 523 zcmV+m0`&cfP)ul|)l05j3KZB7~&SL(&C(07>Oj_-b}mHWtB7!jU2&qzD+i2)X14F~RmM zWY)di*+04Su*p~5vBQ49o1K|kfPa=_3UKR{$Q0xChQ@uY0Yt;)YHi%4u$NB^6AO0h zl}I!kjVIa-%V#GsV1%&+VL`mP$PP?-X# zKqv?aKt-AsM772Myx!2^+bJsu@dL>t$RZ0W<@gt`H*_{JzrVX>vHmn5V;)~#wOy6d zEt<@WhX?GPe?|rK5L(Sfq=QJ*1-0{%RhB3yEr89BXH&VgYV4@A04SSj=uZO(=3yE( z8NlYx2LMn$J!TLl1@jR6X#o5A-M^iLrK2J<;N|rP@bL6Zt^vr|O$>kqCT3yu{t+|B z_0RQ}Lmh46HU#*|0ve#<_0@$0hESAZ0ENB0RUKgZF$-RQpp0pEy3l{~l|@ZvfS-oq z44;LISgcL2>qOoOO<9E>LFyZDtJ(PN7_Q%Srdw^r>l+gYN literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..2d9103b393ecbee0530442d501f02c3740c153e5 GIT binary patch literal 557 zcmV+|0@D47P)Nkl%iH_JU)I zCprOcwT!)^Vn^!sN8Bu4^P)e^5 z>qdIPcMpr)lWtqxu8HS5D{ENCS~sYoKmcHG*T&ax->u}N$+4=^@n6qxald%{w^&sa zNb-xTD3J76mDTN9u49{d1g__|c;9X<(`fYb($Zs9Ht6@{^yFAP*U9z#+pHV+i%09n zcp{$b;Pm8J0ATp*vZOH0@%LT$`z`?B)8{W6(?2rnSr*znPf53yrel|TOgFuR%O zel{}$fTt`_M;$pkzW@NJRujYV^kvZ*rWZe&T;+QHuNweh`Sp{NSK0LU45P^vhT~~@ znL6nAWYF)uihqA1A|fIpA|fIpA|gXxW8Xm9#?n~YHv0xlyr<9xs3?%Ths8?8IBzq; zOLRL2xhuX#t?Lo^AAJLLyC%Bvp-hF3fd1m?1%Ev1lo!<+rsm&R98G&}IT6ow;JJRL1*zggzLn*Z=`7CaS5;lDOb9wyAn7eQW08g8+w`)UR0C0AG0o7`j5z`9QYC@Oj zlkY4;;SA7{jS?UFJ?X}W#>(fqL_fQk=j!^{3e)9tmgkAcgg?o{v~?lzUsV7A002ov JPDHLkV1kaf6a4@H literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/meta.json b/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/meta.json new file mode 100644 index 00000000000..9578ed8cfd4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Belt/medical_bag.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Clothing/Ears/Headsets/headset_paramedic.rsi/equipped-EARS.png b/Resources/Textures/ADT/Clothing/Ears/Headsets/headset_paramedic.rsi/equipped-EARS.png new file mode 100644 index 0000000000000000000000000000000000000000..87da680017fd323bfeb7507490f5cd90b61ef28f GIT binary patch literal 370 zcmV-&0ge8NP)Px$EJ;K`RCr$PnZXUhFc1Wja_AsPh$48<1=Y|64~jrYNe7e@L-x$ZpV=g100l-XJ9~bJC1A^;Gmp50|S!V zab&{)2j%1$7?9kKBO3-dC@0UrfaG=@*)YICIe7*KB)8+ph5-)B$ulq@xgAF~3{WX6 zZ}IA^mgi&xl(+bni>P-?0F-BFHDK#=5`bT*e}NzaXx)tKegL>gr_RBE)Mi|{Fu+AR zbq)rkHsi{L0WQ+1b1)#a8CNb0aFI@(g8`|{xN>2Di*)K73`lLpm8*LLzOA1yLB<+( Q)Bpeg07*qoM6N<$g5~|4f&c&j literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Ears/Headsets/headset_paramedic.rsi/icon.png b/Resources/Textures/ADT/Clothing/Ears/Headsets/headset_paramedic.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..202fcd895e53d2fe87e1423ff599b656709b5f14 GIT binary patch literal 397 zcmV;80doF{P)Px$M@d9MR9Hu2WEfz;IKcKZj5=U61V%%Eq!5r)wfO(@(?bZ^}2f)(6|2Nm*A;2i2 z1x}EZCPbp*59R<+Jc1knvK$2H<^Uma&Htdh4+5|(2x5cEgm*8m6Xgkt5+O*lnwr}G zHy@e7g%HSM5&pjnw{G1+v0PkS{6Ea1moHxupPx(I!Q!9RCt{2nqO#JRT#j3No$&vu1&9{cS)fO}hOF@jS&Vd*6Txd(?8VN zbJxwu&hO=NzjM#`o$ov6e&^x)K=Nc`voh)B56+H-B4L92+erQX2g&$6KYV;_Y>(IW zNbJ{(PSE;>j8G&T^ZP=$9qag=3II!eLq_8A1xo=HK~Xg$ac+{OAH7`jc2LOPq>#&^ zs9H3iO9D=1fOe1HxLwTG-t)Sh<+6j!+C~f= zPM4^CAx!0K*n#yVsHK^f> z^Z?+C^q>YcDyv0H`h=2(yVYxGuO7t}=#6d9!li}TXyUu`6jrhiEfKm~y@uVN5Jtx* zj2GT~Z*ko)GN#N`S1m`xzdhgo&Bd<)DCDv%rDla~2~SW|%}|3Hx6;=DxLwRM^-Ct! z?pUvVvs`vm$L=!nAVDylZ>r-AK)X}lu%X)-?)F8STB;o?Py3%GmrCqdIK3aj<#B*p z>1zZ!{pjTqjs_RQ-M;9Rypt<=XU%zlraI1;$JPq<_4_cLhiYI=JHy?+sH4G!UM>;n z^w%~-6iWfn%Ow_Wr0EKU(JLj6PhEQ3yVD8syi%K#+4}hYy(b}w#S+nD7 zto{=Bb}+i5vVURo?wii9tmbR>%r!U~T5;=zE}!?nQfO+8#1kL z$e25QD*D`8AI8juCgbzGeeB4V9osF*_&kTZ0(^1y;uiVb=~Gd&7h$t~tL%A0gLzAs z6mnSr;Va4$>@@()>lUz-<^OXORWq#g5m=okkw_#Gi9{liNF)-8L?V$$?#ti6YpY8# S&Z5)+0000VD9pCaSW-5 zdppZFL)cN|czn`LvyEFkS7c63TDwG(jdi8Mmj~O;`=`!fajkmkI>pJhV?(3>zZln| zb~&9(&C4&y?d=G%=VRqxdO<2fN~6hBc&qPHwYNc=Kd~*Fl9iIad$#1uH=6RhfB$>` z{hx7h#d+4>e~R9I{&P^M!TWoh%C2fZhb?PaFP*-hkeJ4I&t}iG6{0@YkByl-=DsvO zcRy^aN4h!76s|Qd@=oaJ9=Lsc)~sI!C;!-mWi(!!5qSTKkKE_2Z3}0dpLBk<{j~(u z`AL1}zc8r1=icso|AI2_ySanUi?w!+pjZ zt28c1_5OX>P-De<+=}0ty83%GcF#`Fc5 z>~F-n1YYECwPA{En7Q-15rd6j27`Keow4Ver*fwmz6pgaNmpfB zN4uP!v9$SBXE7!INVasm{h8VPS13!<-G?z%vn=JGv1feRV%xj+<;0E8XKi2Sl*an# zIKLH_qUC>M!JG>Vw>)h-_;2SNT<~ z(UiuhjN5Zcy^aVqSZ(Kvl@s zt82>GV6r!E|H3QP9-o$8TE+dnHR8{-w#msAmZeG$&h@`PzH&>*r%o?(+d0w;q9Xc( z(%3_|8{U4puyeK4zxP-6FwFHlaO(EeN!xiD)cOS0yg8D#+Ra~K_oU-HwlNvZ?(q2T z$)FV4+%EQ#LGFrcm!_;jkZDE6M7{@(u}fxLVkA!Lr*!XuRRP!H?iT^GD1)b~pUXO@ GgeCyQ_rg2? literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/icon-flash.png b/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/icon-flash.png new file mode 100644 index 0000000000000000000000000000000000000000..b3a169bce3ab72629b356a8dee2cc85923d0e67a GIT binary patch literal 637 zcmV-@0)qXCP)Px%H%UZ6R9Hvtl|N_`Q5?s=*HlfAYjcgFl^T%N!GcH!LFgjRu2C$w=-R=dj&2SP zIyluuigXABsuskh{tG$?4oYY_YZ7Y}Q`6eyyg#|Sm*ie~*IrCx>NROXmb>L0_wN0^ zpZ9rp?{Vnx#dSCz9)M@SGvFC;H4sZGhif;hODFlYR&8KA0#t%a+|k;wx1YZyPK1YG z(aoOJ(jp#2&bUsd9(3J7cKB8>rBtXM_;D!{@9z)ebT2^{N3mw?!*apbG{ipuPIx7_ zj9~}hS@hB5Xyh7(_##AkKP&)c%2iA}yfFsx-Q$K#{2zdYclib#fLBjr6K5}8#z24| zss05x9w^%u?p-;LmE`;80k+M4E1aX$&j8}H(eWVPi_pj@2Ks`?5unIs58#;J!pnse z5_fMR^*xQ%mGrJ5w!OF$!0Vam@e7fw`1Inr4bamgpkz^m4s3pfKXf0yd|hlmz?&yg zgif6Ue@Fn&3l#&Y-% XPW4hSYqh#%00000NkvXXu0mjfb5SDt literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/icon.png b/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..fc2f3974870bc788b3ccad2ebc0410d0e2f9e55e GIT binary patch literal 429 zcmV;e0aE^nP)Px$XGugsR9Hu2WEfz;IKcKZj5=U61V%$(Gz5lb2xP3j_+Ld)9bSmuxqp*kMyNhn zo*`Ki%yKiKA7BT({K3lb@EbD&xsD*o0h%^J|C1*yV*pux>KzA0H8Qs#isAZ^btIWd zl440!i~q&T4`4Vzp6f3-6nY~a7@prgL6Vt7D;ASf{;wjZ%%E4&&ETx90=5taKn~b@ z^$x?Oo>GQ8kM1(OdVZH^bBR(YASm_!*U#?^2D+wT2fz{_$YKzHr2(2dfQMg*K_{`9 zLCsJb?g)?rKnd{H`Kt_9=GQX(`thCN!~17Mc?_hND21>PKz0Cn3Z$t6K$d|V0ircs zgBdtgEHQGx_dCZKuJ2w87N>d$z-$u|*ZeQ8s>vWAC5_>L56_-5yu5v#;oZyYM1?BM z0Fo4g9Kg=U&mbT!h3SBo&lrAw`bb*`Acq9H3rO`jSs_4+7BopwFzSHO5Eu=CVHpAd X&@qxBOL3%)00000NkvXXu0mjf<3g@` literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/meta.json b/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/meta.json new file mode 100644 index 00000000000..3dd3d65119a --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/meta.json @@ -0,0 +1,34 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:Празат Д.В. aka [767Sikon] (prazat911)", + + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "equipped-HELMET-vox", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vox", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/ADT/Clothing/Head/Hardsuits/paramedic_hardsuithead.rsi/on-equipped-HELMET-vox.png new file mode 100644 index 0000000000000000000000000000000000000000..bef2769716f9d7a0306112efa50664f50981a936 GIT binary patch literal 1464 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..9cd1e23b7af1edfc45449be4c64fd9bfffa934c2 GIT binary patch literal 514 zcmV+d0{#7oP)Px$yh%hsRCr$PnxReuQ4mF66`}#rCUpoL3WMYe5EXm?!C?rZ4g#J!R6hWLKvj^y z7obQ5D3XdMAV`{Y1*8JCWHy-%*#yz;eNArOeIIb&oilfK#hXS*{4^4;KL~&lkT?O2 zK;i+=M^Gc65lEbXMj-J3=r5oV&Aj$}AZtdm9^=JMarqkEjcXT>Ch0a=Yy=c?N z@N00r2R*jqYKZ)w%U# zAjbe|)*v9wt>Om-1+WUk=sN@eO_WVf31I6O+OHCTCd#I#1h91s?NpB>qnBb^~d*DF6Tf07*qoM6N<$ Ef>~kNuK)l5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Head/Hats/beret_paramedic.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..505255291b64c5a96b0f6fc2ed37c6e5af992c23 GIT binary patch literal 524 zcmV+n0`vWeP)Px$#z{m$RCr$PnxReuK@f(g3ekYLCUub1p+GdKJ^>^MR0Sb89HNed`kt#GeE^;S zf#3;{7!*lG1%jkWD9mv}xOi7M`{l)6^FYW1u-`nL@6>8E=yeuNy}0U@ z4uUJ53unJ>eNHC1Afy6t#eWQkiC!GvQs??+AzrpoSdPCl%20esNCn`c|Mv2jYmPQG z_p8oz$?%OqW`PXB_i-5uU)Ph`4zF8i)_wqxBB@me3DDX(Dc?wd6iKZ*NPyPPN%=+s zq)2MjK?1aPPRchDAVpHE4iccXb5g#M04b7Mb&vq9os;s71W1w8s)Gb*?VOZvB%mnC z-?y`@<-3e5dY<(6g%Xf!$#EbCt0y(c(o9@+rFPiK}_|1PHU z_R0SS@K+HHeU6GQg@gbAA?a$+MglZ+DWpdvAS7K4+DL$gE`{`HJ^?>Pvur^#@+r;$ O0000%&r(5aq|l|;!S5%ZWLehlY}J(92OfHoPWs;ce7fJ= z?|y(rqtR$I8qF)p-mWX4g45{=qf$dS9fOXK@7`8w3+o}L(-q;!NAPI4^qkprg;BSZ zE5gwS0Hbb2*X3(m{WtO!bbEba*){;cKXS$J+x}kKJ)=^K-P;y1ea{2^pFHR4=Q4oX z>x*mGZ^W+see;(1<;U;#KDc>HShkIF)dT=KZq*1$ebSmu0+g#}bgrWR`nm#6rz_l# zKE`Yk;K|9aICt(%l&dDrmoDPsrOW;Iu3SaAYR2wgdjAUk{0IHtpZxYUv#q)G_e&)J zh>if1^fbV$-M?S*o7_&)$Yu9hU?e#_8hH~^tll}lG>t`B(Ugmq= z(&##y1ZaQrJ)S-s#-4e6_x2tcN$xQ!Wa+PhtDiXtlEvj0(f^ihnBmwXB948*cbET`K5c$U%Wg!{#BR(iqK!{ z1!S&%_GL^gDNgr`qU0QA>eGD=xvk}Nx}wo)N8g(~DAC;9vTd9m4+@zMn@v|79Jv7I z-@iQhp@9+ro<1D1K7(96Agl4feB>n`+-SAobh;b4zclE(Pc|M{%t_>OdC6q}np9-1 zy2uD}`E4Qhuw>&2GJ;X5v3`Kui=nixZ8lvYcek_qV%r8tb7#p<09d#~j{D7J0M1J{ z_5FF?YuWbFbXcYF0MiTX3hHGv)s@#Dz;fd`gJ8ZMup$VOQQ55zf}|fj8ZLd~n?!^( z8jVJy(P%UpjYjh-qO^ph<)~4qp@^+;4sNe6C={o%BxVOh%%&@hN)3%x8{u?ZNB}f1 zPNyrv=@^Yx8%CuTZJcmm8Nlgug;BSn;AErKMmX|!Vg$+-X|&plfN0%f*ClsQ6qtAU zWHQ9TkxLUjhJ9-HhAoi|(C!qI6+jsJJ06q|?1~Po$;5aO<#@jgi4mKcM6s zf_866F!o|860=LF h4!e#_X*B;+{skqmF!SlVOJe{4002ovPDHLkV1kqzWZM7$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/icon-open.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/icon-open.png new file mode 100644 index 0000000000000000000000000000000000000000..b002149e1ec495ba5262a24537bd69cdef90d014 GIT binary patch literal 728 zcmV;}0w?{6P)Px%l1W5CR9J=Wl|4)oaTvyb{lGg8YCl8;S_n{sNzqD48sf*$7?h}+2`-IOCq@UE z>#BpB4yKb~QCCCUItYP9gvOgVOY8?BAxES@KxogQ-i1ceyBnPBv;6Pw|J?gN_q^}_ zJ!qkY7Fzh<;jlxFCR3W4SGYFy7=VvYQjP~NGaA6k`?mxJ!>rC`Y{j%pPCQL(;Yb8U zmRXz6GBAD%Pfw7_Mv3*M&s@5hK;O^4NL!BUwwiqW&RqZ$Sq7k1J*KizqEtjCj1Wzxw8XLCq^{Z>wz1eZV_1 zW;n3-bDM*MUzApt!R^9-{sP0JG1|KO((4P^rY6t%C z>dD$9so`GVw*%8Tpd*@0X;;RtBMuBB1pDz^>;b?n2ngLlhHl>{9EnivJZtIv>##Hl zqsf#OpO`cnQt|~F_9b7yXw>+`B!Fi1pJ1s3dWWm!0)o^*yU!1R=&i5qK0kugVTiCg zge(g<3D+5+A-TTl&+Woe3Dk0dwfQWeSe$mBAJOY)Zf4rB_}=r^ntuK1%_{A%8oyO6hhhlL{6R?FAbo>T5F8>^%dd?OA0000< KMNUMnLSTaVCR?=t literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/icon.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..0bcbc00a3385ba883da88c81847885bef218fec2 GIT binary patch literal 566 zcmV-60?GY}P)hZV?WLDvll8(p5)62PwF85<0l0 zO(Ba%kAp&6c$2|G{!AgmadngDaNaXjBzXbRA)n>F-~0XE@Au0u@BJQ7Q&Us(kD02n z$=-5UmV{iERUQ5-r;;zBO_RW@8|~k81JA9LNNHoM(`A#u0i`fZlk4*Gz;kiByHnb4 zDMNe9Ve9uFa5;@5{>77uC>r7V{=t6fN?a`)JdGoq^^ZUd12d9@x%mYIC&!n9_Yd~b zXiQ`I_8nYb)SdI5zg^`2N|8a9gh=BE0i}En0E$Miy3xkKa{-L2k|iMmO8LAD*NO~I zcXy^_RcBceBKs0t(z!35LB99!XRfOtVoA$px9-|7OcRPmkj4?*cW=;s@)QB3 z`25L7)boXW7FOU_vLr;7gpgGo$8TRkvex)-sDe)nS+>K0JTS*B`xp&u@uH69P(H!#tDV zibk-x=Rva8u({_!(FhFFgskc!?!*(wlg1I`C4={csuXs@Jm)=s`^NH$(`Zcdp8u^W zIdk(12q>-mA_`%3x{S1JmR}<+n^~PM`_rD9nwtNb@8B=UUr;9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..11ac597b52b6e84c85b22116bbcea296d3b5c5ea GIT binary patch literal 650 zcmV;50(Jd~P)v~*~L2cs!chE$z2cnCBBck$5L|3McoEy6<#9i48)V?*~WA$aPNLU%bH zyf_fNbCLRlvmIw)@Z`DMZKRb; z8}PAnA)+wA$oH}Trh+I8;GG=U^@;B)51}uw6eY1c>oZF0SwaufW&#L zq<#X9Dy7_@>tWdM0RRlsLbcw2cXA8>81{P@biIG>?0jAn1`F4sFi4!Yik2zxZdeXd+??XNfa<7v2H;;7%6?W{ngZbhfUc4$}*a$9qN}1Ei z7}Lo({{25_8%Y4jZ$1_I&1doP)%7o2UH?{YLwDXXTBZO16l<>7JvhASY&by1gDX_H-+i|e}y^G89PW(pDkte0eyNlMxNxrKGT@No`S26N^^uDx|+mLxu z+Pt-}N@X#>*O4bT9eG4VL_|bHL_|bHL>V@}Ql#?f{9!LLtRM>|WW7KX1~`5HHqkw4 zTN_+Aw|ypt{T^(`iC3jnWOe{#4T51>m`=us!T^J=mpCW0Q@|>fMYY}lFk3U6PR2@w z6PX==b<_?#c(Xy6ZK`zx+Uf)DL%z5dSEJq34v3`FAkzadUzemR^K+(Hb46imJ3fB$ kXybY3^QWKp*rjaw1044#`2^8gy8r+H07*qoM6N<$f;}586951J literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/hike_labcoat_cmo.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..efe0b04fec3cb9e47b1b608b8122cab66ef8ecd9 GIT binary patch literal 661 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 FV1i^gdPx8P literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..73ca22563dffb3616b9f43e9e7d18f1fb0335fbf GIT binary patch literal 790 zcmV+x1L^#UP)Px%&`Cr=RCr$PS}|x8K@|O0*=gA3NP?i~DO-t1;DP}gEn>hTLQdaLp3!tVZ6jKP)SEH#K*{*?OAOMdG3BYIn<(RCkf?eNu|HB0(V7%2f zfB*cZW-F$#iAg)zrw?!G;j?Ax9VT?;>NPq&-0wSQ5fAL#i#K$3a_ofnVI?R5Q8P9O za;!OF2|xfpejd@c@5l6N$O%Z()O_CAr=`WG z6wl0C5?(%^wd3`TZJK@3rYMT~5>Ujibe0LhC%aot_>mJ3&&(SHjRJ;npf!N2H5V=Rgo~oHzuD*B7qXL%b#5Rf~| zy6iUSiyt`w>l@n!#V#v`jpBHigH`dv>=%Czo&sD4vQOBz2b+>=%VT`-&O8Js0EZdO z&U-%Z?f7ocA&5P$ig%9OV^zx97V-b!3J?)>&PgRe+KPqtR}~PNQEB#60n%11w7;r= z(2Pp6rwWj^Vxj$21%zf)nmtv3v=s~OuPPukqtfiD0;H{2Xn$1!p&7j_d)#pOb@0`; z;0E;^2l*sU0SFucq3N2xH{eTxNCG%`G+uAqpRz>Y-KFnPRD(DI5CBwwfbqOveQoa@ za4W8C3Q8ov@Z}3$d2YkkMFD2K)wYEX_m0wDLKyo554A{CfK@qqj&~nDw(s0ZFDrl1 z1fY$6=k_Gsx_RARrkZ+i&ucNgKt4=g0OmXue9r))6_C4kP$>?P3gE*~h`WRT0BE~t UP|$RYi~s-t07*qoM6N<$f{^uWHvj+t literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/OuterClothing/Hardsuits/paramedic_hardsuit.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7c08180e94346b209f0ba9f5a9cf1d7111508d GIT binary patch literal 776 zcmV+j1NZ!iP)Px%!bwCyRCr$Pnz2hGK@`ScD!Ws*33?nTVzK2Ff^umsRIpIc!q&pVbXNwBllu?S zTw!Yw3k%`A;%o%PfQVQHjiMkL(gg3it46+MXW49a#Y}X3>%Ohr1!unZd*7QkWF|)$ ze{va*p9Fw7Amaq21Tt;_Sp=m7qy#cfKuRFv29PcwB_Jh`aRO2T88?7*f!Gq5Tr8@i ztuoB<9!f+_E*9x%s~j6k$43N@$bA3-1Rn}}AQ7EjECArg)SC4;-HS0C%`_NB~dX+7NsD5alUHwK6_jif<+k$cOu0oIl`5_Mg2DrMu zrHjiu`dV5iz-cvWYypJzAMR`f+JBTc=%INZtG_LnR;#6c|EbdQ(hRwUc@M(c!nF6k zS=puOsR?o%hb@4p{!(#;5Pa=mJ5hgIFm7R9A!yV;>IT+{zSj=6*#a=p9~X>r@~&6! zD20%9($W>W(jVIe^rE3RNqSLCY9*XDQ|JQS=ud2e7zB3Lwn}OvoPzgTp4a-GtG@%l zW@T4lvGW(hT=bn=z)?Nj>Q7qGJc|BKF#I?7__e-g>+b-7%>+i#Jzw`$eB-;3NhQ=fl%D za7F;|+q=F)aC3Sb+$Ye-Q7@UH*B;9VK=}9x7boxlNZPUw-9`Yk1F!~YC-~Vn9`m&` zoix4?01O5Qje3=EmjK7-fPr^YsHp=GJ~lt!-(!7u=qb3y4mdtJQ==oFf{RGYOEbn} zy;b&mwySQ3X|%qE-fPzMIegDB-^v9&0SMpAOXDU8njZn!i)By(3J?a z<*?|3rLi(SEWMXP;#3L~Fb70%7E z%oN;TA$vU{ltFO5>z~W2>-?RLypLjuee}3O)2tvi_t)&80~X)9uNU`*%JU@0=xN8c zm`RmY*PZWAv{cN#d-u;LQJYW6K1d#Lk#|4xd{gLOzgfStHSOK5;A=VzpCy(hg{0@}F?=ZZXDFzNuY3O{-to*{nT`i0{lF+-@O1Ta JS?83{1OTlCxx)Ye literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/icon.png b/Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..1675f9131099517bc697599e288621554144e5f4 GIT binary patch literal 326 zcmV-M0lEH(P)hbtOeSZe$O_FGq0YaGF?e+j}2ane3?cfR9Fo%zugb-%k zUm2qyrNC;nj`n$2j?_(Avx5QgC|rIH2l;=$IS4(g>zO2Nh=#pHdKh(Ip7L(+050RR910001Q z<&e=JVU^XY!Qe}|7gS_X42lo*rx{wzs~G3|;MW0G^BcprAh`paj_ zVBZ^lSbHCo^Smie*QL^RHDT{-42#=Z(*i6@P4s#lCDqL@%Pi+YS$lk)3#IFlrfHP- zKS^&b;#y6wfK-$3`?F$9T9#QcrrS|o8zblWR?O$m)|x*meSa>}?^7VHf5hzG+wbfo zOw-tWzW@LL00000004Lwhi)~sm_=yb9DOyL8?c7#mL{xp@B-M}fED3>y;jrtfLC%Z zl-fNWZ(U?-$!~GU0@x^yRNL@2jWP_EhoOo!4*3Y$J-?qJu!0Q3<&Zf60PqjK04CmR ULe={aN&o-=07*qoM6N<$f-8TfdH?_b literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Shoes/Boots/highboots.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..cfa8f10802d0767250356a21eb387861a29c0299 GIT binary patch literal 368 zcmV-$0gwKPP)eMuCb>hA&olN7HCH1;IFPXLWo|TgC+T)njG_A%lPfJ_jX$9EQ zu>r@}Dy2@t(7!qKzhRR!f6kNg=qV$%&%F+;gsP_hHR__NqvchRfog^KiT>i?Y1Y9pk+_k+AZwc(bEZz^Ov5Kpe%B}M1 zTv)8VAHk*sNSDE<)TxxLVd!t$U>N#CCSh~HDRq7R;woYTbcWv^Bf2)nb*J8a~8`?+?tT zlB#Fe3;)m{Hd`#xd@6;PPX^Y^q*mWv>%y_4hnML0^*@9X3JB|ODmLL_PcItxw=nUo zJFC#w{}6j>cB$J5QTNpBQv3QJV(ZQ-*lS&wPo>nx{VllI)4S@8Q~kQVjZD9$Y2UK? zHBI}Ne%;D4 zn4FSfG#J#*j&_{s?qcJl(utPiUHInqcTAjern?KB9qlk04C>^REV}0v^)H=24Mmo7 z^zF5-9DPNWaq0YNA^m~@Fq_IS?Des0MV6V^_{dXi-C4!1Nu`q+1b|_$4`x$Y$&bRt zp57(;T1cf6HBI|+g0F?@7o%VRLK6|Sv!flsaCliGCyul(D;x}m(b>_C&_qNn>Oer> zP6*^^WZAiLGy*#z!ukczfX4bdDHsl`!(JbP!LS5Cm7@_B^;-`H*=uTy&ZB?-eALgs z;{y7TXpF6^^`O-TkTb8bzOLxIT)_-58Vs16k|hTrQZNvJ5(;2^jE%uRG>Gw$r)<;I3y^&z z{X>HYjE&{!7lZ3_0A+j2LDgRC0sttX004kq)3KLN287n+#nG@As@cj?I$xI}y-rFo z-!txYxy)KB2vRdLY}PHzfX!-Q_Y=vK=Jl&J4*=D7I*6LDm+vPMlZEt)=Lmq*O!jnt zW3<3*wZT|sg2`6S?!QUIkx9?tbut0qm54qURDUK7n5{Ng9NS>g=%*5K%rSj2xB{TX zSZ2x*2LOw$9H~USBm<(96UUM<>ZcU_q928sNCi>NRvUn9#I?|Cv(*Mm1zFWwUoriB zZLNn=^tm&Draq0f)=2&sP1&`C24AZ~GcSLhh(31!XnJYI^9^N6d=7c_%~l&S={W$| zM^USr?~@my6O*Q)vCOpO9^HIuM(h+WMSmqq(HAyLpE0cwmL2Q3`SsE-*|7Go`7bv9 zuIcOO=;-L^=;-L^=;&-{gug{y?CFJr5CFiAZDdu&&$ZyrV-IKzFeb~wbqJvV9Qx`! zHvf~s{+5r_W_JS~c?KkBRTau@HdMTy{eHgQ0lD+o0|1!$JArs2fyl%J4z(RrhrK@h z`s6ohev=W8zWtheJ?;QBeA*2xWS~s^#fl@xjvfX8G`kxB0GWjasov$n0cRz*0TG5G zQH%xxFd7Uh09LQ;>wgF!TOhGl?UGo-_a#<8P^vAen&yQ`}K0Db*gue=Bq zM(l*JbPtBZ0KjVWv|+-vYx#QpS}^kaD1N*bS<;jd42QA1x*E;y26%?ONT<`>YjPJx zlG6%+#rprS*N0~>6U@l$iwT_R?t*VDP-vM|LD!~z38d1AXD<^up0r+h;10m-v;zOo zV8J=J9t;YJi;|pHpvW?AJy_X?e`pZ1>k)wYRJI~J;Q2+md+)yV+#iy(wR->1AWj@< z6%rR^c3R2lO8~Nc0nhy*>F&Mz(tzg|N$Zsd?$eUi=e2ctAbTz-vdm6o(fYgy+8zOW zt&3@EQ9=PB58Q{~LNW={bPSQvk(_bboI>mKbDOQaOA13h06=7P1j}^`*{l{J55lD} zn|)hOEe=>LnNNoN>t3X=R1kGXZ5>i?dlK?}B$O#355oNcg{s4%mDy6DC9(Xzsj$OY_Cf2P#fO^nYsj0r!lW32CP=7!)s_| zw%QPvW2{p|>nD|nFOG9&qELT;vCOpOxuXWki34#t#=G3A(EcNq^CR+4D5*bSIZ8Qz zN@1mgm?GLEu;Kax*4o2{?GJcYJm~1?Y;67obR5Uky|?pm00000NkvXXu0mjf*64YO literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..57322beb00dd1ede49bb56cf87e82570780919d7 GIT binary patch literal 533 zcmV+w0_y#VP)>FSf*`1ybSgr-Ik~wzbu5a4^j~mu5TQ_A zY7j}bBp&Dxjzc+&wv_T50dOzQ0XRE3W^LtDU@r5sQ00qlp zer6iabt7h9_m3iL&vlufnWkV_{RJ4$We1v$gV$4kb`6wnxcvRWxL{4)WM)O{|X(furBojo2SZl_x63=yqkpP4JcQt{>j-VswZbG z7glguP0mk`0Vr&2^7-gJtGNuhOq#8=)v50r&pUeiW>}|_H_hBDU~6qPl*^=P)N25I zc>Ri0Hcu*>2cS`}&D7ZOyu!vNscfFY#->)@G)A_7YK)q#=TDz-etJB7p0%;+`%bHg z(`qvQ*;MDjz!m_AFW5dnEMd{>c*AmQ@gClf?*Mc!oPU0o>AaiVH4y@X#)czNlJ*j= z(QFIx$OL(q0j4kta$)k&!yM# z=z8wN`gs`{0JUUQV}X%It9qThtIIwxn0ej2n;01Y70A0CquWbQLo{&nj9R~hR-?zI{+}a zi~;cRoBnZGV7I`e15%x1vp}zaSi&Nfu(<#5k# literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..2afe2f3386d32ef0cbc81558df767d1cc3c6f1b1 GIT binary patch literal 675 zcmV;U0$lxxP)mW~>AD5V3Bz+FPuPOIDxy$Fi_uLKn9ta_X5JCtcgb+dq zAq0?o`O5DeE3KFPpm81a%XM4cd;NBrwe60bOY3F-{iiQ zV|&LxKK;hd@hQ)8FL0_A&QFd2$Stq%<6xJ3CPgNdWOX6mv;Vkt=RNrFt~EDI-kue( zx{#m9q>`NN?*VYQwMinKC6UeoaJIjv&B;S=-rVvEiFB6S@(OT!-oRTxeOXm=ZE2qK zlcUzQE+?<3JWjQOQ?1bbc~IWKiP((o0~n@7&OdmebpS8H}Dov)rwhhT&G6k(!+IX#H@J7 zye``F)IFERrAOU!1LwO17CCVQr~&|d{dv=QIoyiw)rXMJfS_h$R9jG?SHPpE&oN93!?f-)&)9`7fa}zl zoSN3QTRf~#1yFB~sP=i3g(`r$>S_f<_5L48Y{vF=ds9S&@CSWbGnG~Pe$)T}002ov JPDHLkV1ngTP<8+S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/meta.json new file mode 100644 index 00000000000..92e0986e8f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/hike_jumpskirt_cmo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000000000000000000000000000000000..73d28687847a3e926a2a3f2d8c09e1129976d0d3 GIT binary patch literal 2226 zcmV;j2u=5iP)Sgq}q6~%JxcsiCk9$B}MW*_8pd}KTFIllB^ ztN)9o(ee5H&o}3sxqKf`QAHJ1R8d70RaDVWQxZ?3WBqT!>GdL;Oxhi9oWVd}H)^~- zskiIrmpC?XL&+Jb0F`n<)fT6>4J>0O0zyo3vg3rD3RzO<4PG z0RS*C@GEY9*%`33qCt^md+5R-u3jFd$JNFr^j{jrpFjI6g%e%9JdB|WgHUAIURu#a z$NWnEdpF*Nu4yIwKzp!+uWK6KyYa3Nzia?JZWkt}L-f0@X%zN+>IrI&H`DKGV-qz9 z0F%=pc-*c%FNIsT?`-3Rh8z$Vd#-C zo=-i2witsR3FFGSGtd@e&=zBOKJ^58B#ilR81Vp>^<5`ndwg_C6E4dJ04Zfk%b};-{c;7sTc^U|asp3`$@u=R09*O4Y7eUODSI1li=TCeN6M_HxcR%!kqsHki}2Q|@c8^tTyCT@X(%o? za+x%|^+%D*q>(ZWBsba}v{n~iAhW^u)*s#Wdz$d$FNFBq0r1wTw#Vm3ty&KNNE!)v z{k8NjBO3xsOO&s;-0=EqkqvVJj{-6529SrU8%7PkksZH&Uhnhpb3>E63gMuFnDhAUj>i zrq}IUCJnE@7K+OakIxT7Ujchoa+x%;>2+In?tTLzBH8Ie-pbh?pC14yp9Dd1xd8wk zpC5TEC&cFpKvh*$3CQcO-B@p$lrjyv1cmvxZ0zoP6P%R@yKRa8+$6;)JGMgK1nz7@W8`wr^W;w@>z zQFUL*&x6ptM`Iv4z-3Jn&O-Hc5ZecfI7a_q6x)ZC0(zaMq46`vFj zJ0SNSjR64SKNv_D24V{fcx&KIdvZF2e}DZSDO;uB%fI}IyFcy#bp7TsVCA4Mys$}9 z;^O(U0D!*kE&xEzvZT&n5N|X!avKoQL~Ic=;V=|gwgJ$5<;dtm0L27Jpt(hYtRVEa z&$#;JejN5xS0gt4lvZf;b$8Jm{m90#p$mg{JdrrG$KrS*fzDvi{`)`w1yT_L03Uwz z0VbzI7#RihNZ4-bK6&u3#T~MYz~(>!0Kfag??I|FKK=L;^mTV(Nm~^i7q>$Hji5pO z89x2^6IzsU@%&kwXl=!b)>Z(($Y{|kuS8ymAfT#ry3a?W06=r}q+lZ0vU9%vAT;&O z4E}LHwyh{*J{rY|)>ia&cVTRD8ktOnyHD;{V&Jrq(COmy*!*~epFNuS^ULV7kEk=R`Q?8G>(oI4`~7uDLTUQ(9;6zc+>%|@ip?|&gZ z9{WmSz4C~AwT3HRzUVlz`E z$H^OblAljIeY{-?i+BKl*vu4mdi(G9d4)Xi2Ow!8UI09G4FEv1L*zYueB;%$+cLS~ zqO#Xb#Ph|^<$NePeh=JxK(4U)nN51`D9#!LzX2rAxa7(NV?4F_8d-bkQH04LEzsngby_{v{gr%gEq@2 z>3Y$Ag#UpB(>(n~%KXO)0`b7|fxVpw;YtQl5W&_38Tv}`_#qTWZI!o9ManctcDi_M z!_TX7hvg&`05U+fK#4>@8P^VV{Zn3Cqf?zJjG~@IPlE82^{WlYTh_KcAaCWQ_|gl} z?)Id*h88$vW!oO$kY&lxmW28eUIJwB1Pm0HMWG;Y?b)Xag#w-KY;8i`vV?0BgdT^9 z*tJG#1FS6nBj|o*WiybSF3HeW4y72QqMwrf2fa3hq*{z%hyVZp07*qoM6N<$f}Kw~ A0RR91 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d0d71acb1c17b54a4041fcac0e6949cf9ca90c48 GIT binary patch literal 555 zcmV+`0@VG9P)XBPL9&jLh)a4a}c3W zU2G^N-O@CmU_6e5BWDvbybj@glM{uzm=5B7m-l%e-uL-_-k%UERH*-5kx3`+?ClE~ zzkK>+;yQsRK76(<9+XRzOGTBd*3LPu);N0oDsa6UK?WB$w#3ZroH8A6XJ+RpZfuD^ zPX1efJC*waz|3ShYdIY59#E~FbGUoJSnqF5=W^2pSjc7~7tJPiqt4~&$4kb`6wnxcvRWxL{4)WM)O{|X(furBojo2SZl_x63=yqkpP4JcQt{>j-VswZbG z7glguP0mk`0Vr&2^7-gJtGNuhOq#8=)v50r&pUeiW>}|_H_hBDU~6qPl*^=P)N25I zc>Ri0Hcu*>2cS`}&D7ZOyu!vNscfFY#->)@G)A_7YK)q#=TDz-etJB7p0%;+`%bHg z(`qvQ*;MDjz!m_AFW5dnEMd{>c*AmQ@gClf?*Mc!oPU0o>AaiVH4y@X#)czNlJ*j= z(QFIx$OL(q0j4kta$)k&!yM# z=z8wN`gs`{0JUUQV}X%It9qThtIIwxn0ej2n;01Y70A0CquWbQLo{&nj9R~hR-?zI{+}a zi~;cRoBnZGV7I`e15%x1vp}zaSi&Nfu(<#5k# literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..2afe2f3386d32ef0cbc81558df767d1cc3c6f1b1 GIT binary patch literal 675 zcmV;U0$lxxP)mW~>AD5V3Bz+FPuPOIDxy$Fi_uLKn9ta_X5JCtcgb+dq zAq0?o`O5DeE3KFPpm81a%XM4cd;NBrwe60bOY3F-{iiQ zV|&LxKK;hd@hQ)8FL0_A&QFd2$Stq%<6xJ3CPgNdWOX6mv;Vkt=RNrFt~EDI-kue( zx{#m9q>`NN?*VYQwMinKC6UeoaJIjv&B;S=-rVvEiFB6S@(OT!-oRTxeOXm=ZE2qK zlcUzQE+?<3JWjQOQ?1bbc~IWKiP((o0~n@7&OdmebpS8H}Dov)rwhhT&G6k(!+IX#H@J7 zye``F)IFERrAOU!1LwO17CCVQr~&|d{dv=QIoyiw)rXMJfS_h$R9jG?SHPpE&oN93!?f-)&)9`7fa}zl zoSN3QTRf~#1yFB~sP=i3g(`r$>S_f<_5L48Y{vF=ds9S&@CSWbGnG~Pe$)T}002ov JPDHLkV1ngTP<8+S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/meta.json new file mode 100644 index 00000000000..92e0986e8f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/hike_uniform_cmo.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Materials/Scrap/securedbox.rsi/icon.png b/Resources/Textures/ADT/Objects/Materials/Scrap/securedbox.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..959a2e1e40c585d3caadede214130ed0ee3baef1 GIT binary patch literal 473 zcmV;~0Ve*5P)Px$lSxEDR9J=WmOE~PKomufqjXlfOkv3aQASEfJrYfJkjgvA5?BFC@D8Z512;(2 zbdg++nAYy1)TD4`GW^UZky3`85GI zTq%W8swQDRyCP#H1_heo0L8~WuW#=y30GvS#8rX5aD&)vYZC5xV&DFU+=>9b5?2RN z9LH4{hMZ0(OgqG8TdP30J_DC3!DT*Zt?@k14l608JwMNL%CfY%g9F3&{g#9&c~`g) zf}$t@@H`J_Pt8dJeG-7}aWmXZLQ`@hVq_)>m_4DZ9fq!OmuBxLSHRF!iJ|Z=W^YDc z=2aMm_UV`!-lX?2?AnggG$l!rRZ$cOA$}YVGu{UbbGBZC+k%CKg+J#LF<>HU{Tj)@ P00000NkvXXu0mjfE6mDc literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Materials/Scrap/securedbox.rsi/meta.json b/Resources/Textures/ADT/Objects/Materials/Scrap/securedbox.rsi/meta.json new file mode 100644 index 00000000000..c2e4f5dab81 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Materials/Scrap/securedbox.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by ADT team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill1.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/fill1.png new file mode 100644 index 0000000000000000000000000000000000000000..f34f2651cf1c289d0e9799823539ff1bd3d47654 GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzV^0^ykcif|=Qi>(DDW_EI3)S^ z|F(UM+0XSnPTVt6@nT_M=wF+;ah2csnU=S1U1nyedCZjQ!@~0RH=_hlJA(DDW^JY*=C3 z@O{2+wu5)B>!JtiixW=^0#)so&fB=^+g#Pi=*zYjQgIE!D*){pa PKqU;Gu6{1-oD!M9dXr+on|=xO??gs$Jy61LxTp7~Y!kPh+uA TeS5M2XcmK~tDnm{r-UW|FWM-Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon-front-morphine.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon-front-morphine.png new file mode 100644 index 0000000000000000000000000000000000000000..8d493a15676c732556cd774ff36b4962a917c20c GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJC7v#hArY;~2@#VOyKhoHQN+N^%}+v?g-6snwicNx);hoaJu&Og)};;KKe=Z1{r%|q?x+FJ=lgpY YUUpe|UcDlx1oS3@r>mdKI;Vst06!#amjD0& literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon_formalin.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/icon_formalin.png new file mode 100644 index 0000000000000000000000000000000000000000..bb1edd545cebf100dd962b69af6b5a75ba8eb191 GIT binary patch literal 288 zcmV+*0pI?KP)wPaAiC$NJ{kt#@qKyYlRTil#F^c5=3T^-#7AEAP{wGZHsshu2L91053 zK?#Jk*d||RM{g$a{>Bf^;qYBhN-3pIneBSUc0H4(<1$TnvtFf%1CWshZPznV7!ZX4 zSCw1wFNg;8oxA}kU*C``6ajduW<(=ICz$5%=vgzCyFFjoZvZB79r!r9OMC(zM?8!d zOyWA-w@-16XuxK@!f_m$_iX@t-zN$K(SQp{=)G4mtrzRyZCKmVdEFh|CmI0o+^`J5 m&tJlCoG_Rt;x46>I&c3H20iPMFX!$60000VdlgY zRwDCQcoqqTZe7$SUBK+ua=&Pny?n2dtiQ8IdL{S$;s&W}sQYOmjB5Z}|)&t;ucLK6Ul)MnTK literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..b50056f6b431816f1b304a6c02bc0d5205eb2f98 GIT binary patch literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=w>(`OLn`LHy|t0=V1UT6kLz#v zm`#p7l=LFQNK)tC0cnpt{d>TxMU`c;+P(%CPZw^p5g6J~sT+rETgkt3aY zSC{=dy0h>1fnOhNfWqlE8MA*c-kVg)IBClazkB{uHx_LP5m2u@4mKA|eDL4&!+1g( z|LeCOl;gH1EplFQ_SXNfdF^J|@fQ`Rygg+deArEKazN(SpBYRb4G+TaGQ{n(6=`*S QJRQXMboFyt=akR{0CnwmNB{r; literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/meta.json new file mode 100644 index 00000000000..0226f96b065 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Chemistry/glass-bottle.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Created by JustKekc.", + "states": [ + { + "name": "icon" + }, + { + "name": "icon_formalin" + }, + { + "name": "icon-front" + }, + { + "name": "icon-front-morphine" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "fill1" + }, + { + "name": "fill2" + }, + { + "name": "fill3" + }, + { + "name": "fill4" + }, + { + "name": "fill5" + }, + { + "name": "fill6" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/anelgesin.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/anelgesin.png new file mode 100644 index 0000000000000000000000000000000000000000..f418bdb42d633b51e5cebd568d0f87f8e037f23f GIT binary patch literal 413 zcmV;O0b>4%P)c5y5fL+hfmlpuJSTb=X< z+xj2kP!k20Tv9_dG8$O_R~p0@DyorXc`}_t(@lG6nEFF9K*Z8UV~@K6f`ErP3y*A+%~~1&GB? zrHXAC_`XlPez*@X4Z-QT!^u&&`T(x$MoKC64i1sQ82Kp%uq`8z_qtN&POR&^EQDY< z=;KtXNf-8acar^HSJG^W-}wiG5IB`8YS72F49boJKq$X%+-wPK%SbH;%?^Agl#)=& zBnZIurQ+pnu2m;>2b5AcEIR@G=)i2Q0604y5&SBjh{ZA( zXA)-$AcHYVEx+?{&Es&cT8CZNP3C@HaX~>r!Jpv+M=^nDOWds>00000NkvXX Hu0mjfcY?D$ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/charcoal.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/charcoal.png new file mode 100644 index 0000000000000000000000000000000000000000..cc985b33f411965b024f1802d8f05eb4f6ad2cdd GIT binary patch literal 394 zcmV;50d@X~P);M1& literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/diethamilate.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/diethamilate.png new file mode 100644 index 0000000000000000000000000000000000000000..07e10f8b55dd80babf56fa97dcb648a07c53e2bf GIT binary patch literal 440 zcmV;p0Z0CcP)6RzuquIq+L_DoGm43NoW0BE&Z z6bgk{vuDN;JB||yA%?^NolYnAjFAEy#|Z)Q`8)tpN`w$BudcJQWbk}`_d5Xtv1w&l zSu&7P^8LAg{Yakx-F=;WfNk5M)|!Lk0>0P8{}Ka;`+z<{lCwli$6Y9%dThPTan*1! ztt_UMMcfA*?&pTqDW&NK@nd2KEE)zGa|iL%i^NvBh*zmcVx=@EwKHb-HYXqO6R%Ro ztJJZ|MU>KPoaQ*Go$=uNiRL8w2$j+-8U_GXxd<>Myu7_bN=d0yihaMt4tQMXv36v_ z#SKd7Nc__NeBZv;1V|)L6fod@d!F5VZfx;L0lwEnYt2hL;Hu#QP_0(Sy3P}AwrxB5 i(TpojNl8ihGkgFf&zB=Tmb}9N00005ij9JJd zrR4kb$-RI8UZ3>n18m!ll~RgX*akC_SxE4?~_ML6Df^X*Bq>!jy~WgqG}?lCbAL| zDNTLv0k5uk^!-$GQhkJx(jTt@kd+XiPk42Ehm?|Xxt#cZNgS{;y-R7+;^=IhNPV3& ze2xI{TOL3vd8&XeI}67MA%+$Y6yUc!lv0Gx5!aV40JU0esOvn{X4|%VKbm3185tQF ae};EvmzE6p*6zjt0000UwO6iXjLD$=z9A3&&U5T!35go3Ao2=4uHNaq$I z^bDo#>fqoI7aQ!Bv=v11ZAb3z`vSQOL_|bH{3k5S@+`~p!mL?Zlo&wMGys~-CdFbg z(B3Qah)vV<6h)a51B^zazzBECwk-u#__iC9f%NW@nW zLhy6^{L-f@`^YzU@d1Wmc&_VmSSVt*8ra`rfUf+YEBj&I#b-I_#CGqU;itkw-9k-g zP}3Q@@`Iy;+|)cr4(L0tiw{VqHpuSo(C)qa;z}vc<;|ThcI1HTi!+Y*HvvG4##4oIdpd@(@Bw*BY#k5338D3{BD@0Y*<@z{vmUY6Re ziz5fVSPsVk*sTUYD0!%W3EQa{x~|PFo+-d?HE>-QIUMs)w*aVCt8-oFp%xp4;s0pn g6-PuwMEn`P0245qYW_h+9RL6T07*qoM6N<$f?i3+u>b%7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..f6d65cbcbf00bf372bde7a95c6e97c6a7f95336d GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=eV#6kAr*7p-a6QMC_#kff#8~h z6`j5v>e@cqFP%3lM74A#K28IXvb&OTXD(!P)GFU+xJzf1=);T3K0RWTNPWAu* literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..276c0d6166b7c5d980171c3a556105f7784027fb GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=&7LlfAr*7p-g4w>Vh~`xAYam! zlRUj6O!kcMG{-B7lN5Hh%vA^o;;hNHJv{&K9~PjNhSW%2NxRtm*hz1;&7P8Knejb- z?Qg!Y(5rX#pR1hQtf6Mj0aOJ7$G(5=uU~i0;j+oy$6wEV+#qkdxZM81?44H3rLoI% fZ+jX84SV{7;fIuL>`f(J6Oa~9S3j3^P62O5= literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/meta.json new file mode 100644 index 00000000000..3aa2afba911 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Created by JustKekc.", + "states": [ + { + "name": "pack" + }, + { + "name": "sodiumizole" + }, + { + "name": "nitrofurfoll" + }, + { + "name": "anelgesin" + }, + { + "name": "minoxide" + }, + { + "name": "diethamilate" + }, + { + "name": "haloperidol" + }, + { + "name": "charcoal" + }, + { + "name": "ethylredoxrazine" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/minoxide.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/minoxide.png new file mode 100644 index 0000000000000000000000000000000000000000..53774fa07404e626045691020b78fae4cd29863d GIT binary patch literal 429 zcmV;e0aE^nP)j7-r_7Z&Zt{dp76y5#{0B_T2=o%XZux;A|D3wY8xUNe#k>*rCSp`w3r4+yy zo7pqc$vCd-;y=e?hv=yk6+`Ft@oDz~EX(qwlw9AG5yJuETMUp+#`!opref$c$CKb! zgkeAQN=tWR{$mXRsnpm7!EcPZxlcb2S_QIEtYgz4giftV(?k00000NkvXXu0mjfA6C5B literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/nitrofurfoll.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/nitrofurfoll.png new file mode 100644 index 0000000000000000000000000000000000000000..1598c36e6123a9a20b6b348aaa1fc7de85e0f6d4 GIT binary patch literal 420 zcmV;V0bBlwP)U|bQ+_Ef}ixkmvU_1jreyjucILLrySuQ}eS_QziKS{m6kiAUq8Cf3R zfG2Deie%Cnwr%76pReE0l5t490ylws1~y=trYoi7_O6B)_7OW_fJ|D0*iL*^R~QLS zRf=_8r`u^`6pDTdm2&B)U{%N2G?d;zU<10Y|C+c`E|E73CPMf%&ZeZq}6hL3Ao*_gkid6LkVJbaA)gfhwxCOJ%keORp8JrANPXJ8j4v~kDOVFVOg(^~Q z$WT>&8xr<=2J``s$K&}=NGV$>W$Uu$=2~KaIF11*%aSxrt@gf~BF^)?4T4}G256eb zdXG^7d7ifbNs<7dlp+WM?jIgm%x8Vb)dM?iBEoT5D>p2f|B1 zzhV6fj4?!fJ&8`%g>>xRKTt}MWtsJS89fI&@!@y^KvxBTlYCOZRPm?)T@@H(I2=#x vw-SKOW;1D=J1rJM^go)ZVvon;`7?Y1XTNbs-6*2E00000NkvXXu0mjf6LpV1 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/sodiumizole.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/packs.rsi/sodiumizole.png new file mode 100644 index 0000000000000000000000000000000000000000..88bf34d2d9dda7533bb48a32bf3bee6f5da65279 GIT binary patch literal 440 zcmV;p0Z0CcP)xM5)%Fswrz*DZHIAc=4K@ZC>DzVG@DIy zU60f|J&oA1tWZ&uF)=`=(}~<;q5zg@aGmQ1JimWN4lo~eVLqFtw7E#&nB;DbIXOBUle>O^>jzxO3>)Xx>;wFyUP@6f zrBIz7t{U46$BUKRO}*j zaIi$k>*VYb7ZdFGE{G2AOz&N|_n!9&7K_DV`D2!(iAt%w7;CNZeP2{dl%$l(9mgr> zvuw`z=}{!HA`#G9myHY3G?kPx7bsRA$MHhrqmwp39t45WE{Jv@NfKPwWtPope#eFb zB`GBnsMZ@KNm3p~nx=T3M-)ZBFR=D}P3?0Fc5bNF8vwYK4R|2cdr<~yaCYe-2IMwbC^$eY6>*!_(EzWt~$(69D=8Muh+X literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/pills.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..4b4e5619f6d76af14e7ee5b478e3d170b6e003d1 GIT binary patch literal 191 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=ZJsWUAr*7p-a5$3tjNRSFlCu$ z%j!eDF^YR)STz+YC%6>s%2>v*$LP;AkamU&Q9)&;V^=NHbWYxklHU70FnjM&p{n)8MCAOpwH8HDuzInIh{$DG7RFsa;Prg4BsLrYYi$Vj7-KlC;syNb zo2HosU#>R*aAjFW?E-5DwAN5cq3Z{v<6L_uPAi_k{&0lWI{XS_4DvijUDw|cNOs#G z0sv|pbBGr3t4*SqN=J~dOFYM+B+fk3bF;f#Pspu egbRWo`~`2-tXMS~{oaiL0000<~JLzrZ-Pd$yJv zniPuQ;20NE?3f2dhx?|x2k*V_-f;&8gTY|WNDP_9@+QMA4atu=$efFKCAFYxfPbVV4d298;b>QT1Tu>jolsc`g8|?-5oNEr`RW7+ZO=v`gK;Rrq=FJYxkJN zQy%ZnC8cB^k?;FiwSKk{8;=x4pP*PEm-zkpNSYfA2E)JL8>0kj&D}m}RsaA107*qo IM6N<$f_=KAy#N3J literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill1.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill1.png new file mode 100644 index 0000000000000000000000000000000000000000..f21d8446925c5f58b66fc04c7d07d18e04799a16 GIT binary patch literal 102 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzT~8Oskcif|XBILtDDW^J+!X76 zt}NlADaX4z-AlL_8t$)sX>fAi?%l`Z8Ei@!{J*j=J@Y*WGKs;{)z4*}Q$iB}cbFiN literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill2.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill2.png new file mode 100644 index 0000000000000000000000000000000000000000..bffbc8ed49a04232321d6d5f58e6245d3dae3faa GIT binary patch literal 112 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzb59q?kcif|7Zinn5-bjXW&NL( zN69L)HSO*#U_UIuz_5Sz)r7Ql#eE$?;hH7-^_GkNGBa$s{cH;l%a-CL6M;rBc)I$z JtaD0e0sunZA{_t# literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill3.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill3.png new file mode 100644 index 0000000000000000000000000000000000000000..a63161b31949162a1ff287a3fc0ecd1d8de2d3a9 GIT binary patch literal 135 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzKTj9Okcif|7k3LXC~~+4-nG(b zbkdmV^uj&(?ukk^weKkghtn6BGB7k8-xW1uW^%8x(<@cczwP&RK5BB$xEc7adcw%(e5oK-dw$>!~1qjWj>R$%KY)f qAZ~8=Px32P-8bH`+lHHALn!;ksl05-FV=#rWAJqKb6Mw<&;$T_0x{|U literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill5.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill5.png new file mode 100644 index 0000000000000000000000000000000000000000..785369617bf7bc2dcd8031e7e48dd22a5e391ae0 GIT binary patch literal 146 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJNKY5Xkcif|mk#nCP~d1yyj{ZM zmLTAkCh+ZI_Un^2vnzh?pRLBvvCx!(q2R_+Hsj6v?+Yqko#a&fd9Gq!DuZ$Kujr2+ uD|_3FGnwlr^>0{ZSN`B#kuJl5KxWT>yd0;~70&@JVeoYIb6Mw<&;$T8r!)Zo literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill6.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/fill6.png new file mode 100644 index 0000000000000000000000000000000000000000..bb787c28ff5d9af524e9bc90cf5a5d22e302ffa6 GIT binary patch literal 149 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJ7*7|+kcif|mk;tDP~d1yyj{ZM zmLTAkCh#qD{aW?UCLb^S-<`>{MAegL(YBAHc)45(w3UJOFnGH9xvX0 zy+FXdOyIlcx?I19ODCNEe^)3#zG*EZL&1%uVrgmh`<0zusfwOGT<&zoi@`YhSM*1Z wP-*7$OKksK7=H4sepSr*PVYMtgN!Ld?QvcnDTOa;Kx-I0UHx3vIVCg!0F}cs+yDRo literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-diethamilate.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-diethamilate.png new file mode 100644 index 0000000000000000000000000000000000000000..fab6d00435f934b8f041cc2dab9ebe6961cb6364 GIT binary patch literal 278 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJyPhtNArY;~2@ zBn&34{`hb4@!*L+yNWj5d@|#()4He2{bkN4B_t$N{QRWq)1%`)L58V2c=o?&shLIw z)vtY=#p(@`-LL&zEiTz*=BIelXOi=SudBm(47sHxrx{#HKX^pWzRqctVZi~HzGbQ( zzk((HET3Wk0#9=0IBa9~=xYjH9cK9FPVM9UODAeFGczCh{(OC0iU6-+dQWe!>PeeT zP6w8m72f(-yj-$xzV+D;PreqneGb<*V)4_P|Lxb;>`7;(KIB+%xgFF1`Q`v4!-Ep9 VpQVyd#DE@U@O1TaS?83{1OQFqacKYm literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-nikematide.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-nikematide.png new file mode 100644 index 0000000000000000000000000000000000000000..2d1cd60853fe2caaeabf9ca1e9e2bb3906a93c25 GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJlb$Y)ArY;~2@ zBn&34{`hb4@!*L+yNWj5d@|#()4He2{bkN4B_t$N{QRWq)1%`)L568{(~tk!-XDxP zLS^Q*>HJ%F*y{Cz-f$k*-*ppG)J`gXcyidkZC`p2Pq6ix%^p{~c?~8m&RliTxb01G z5Kkd{rKE&}!~+w{hA$csTe}()U0>Cwa@L7_Y&MTG>`*(G*3;XodeUZ-(}9vhQ!~rs zYf>5>f}~jVcG$lC`ue)cY|{rf3m`6bJJ`U?@Gi=ALGsUSsz6UMc)I$ztaD0e0suFz BY9s&v literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-perohydrogen.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front-perohydrogen.png new file mode 100644 index 0000000000000000000000000000000000000000..9e1d466cdb328de9fd815e8a6f74f9187c8b2761 GIT binary patch literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJqn<8~ArY;~2@ zBn&34{`hb4@!*L+yNWj5d@|#()4He2{bkN4B_t$N{QRWq)1%`)L5As{Xzl;AId3Ev zeL1pBv0H!l7p>Ph0Ip*HvblKDb!`ajo0I24;pEs*X#fqg7pj9%Arx^>bP0l+XkK)Tw96 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/icon-front.png new file mode 100644 index 0000000000000000000000000000000000000000..be6d8afc8b03be90531752f3d82d5844952ec2a9 GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=ffJcuyC{kcigg1PRu~2_ijBfd*V` z5(bl2fBd)jc<{uZT}7L2KACaYY2DN1{xav25)u+BetuH*>CthY@RWfK2!gp!XFhr5 v%I0&$Ams|9^DRc^dA#liHNd9vSTHb5DHScM-~4$N&?*K`S3j3^P6b^l5JewREH~TOwQu1Yx%X-4eE`lyW4W*;0|L7s%_>^$u9O&OlOntZ2{C^@!;FAT zCX@MNL~7tL3|uak2w;p6UDy4d0i_i4JhN?Eyw&OZ{;<|tiUEMCs-o5!tu;XW>imxy zsOuVlwry#e2HVP{1T zi_O%zQ+t;#b>Fb%&atfBx=p=%w<_*zX%zS-Fx#tR=|feeKld5$@$|nfI|DQT2-J$~ zRGvHk`YLxnYGu=^T^rZ+Zx%HS-?@ot-SpyX+w`@&dP{3Vj?Vh5cvt>>$&Fm&$QLJ~ zWFzi*o&M}JZMlvx#1Igcq!RrN@-;Q5a^45HI dA|9;zPcviR6ZZv6#g7$&_@1tQF6*2UngG4HVKx8& literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..853d38480a3dbac6b1a37d1aca47e90406363751 GIT binary patch literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=Cp=voLn`LHy`|50$Ux-yNA`zO z-WFHyh@=Uf6r6BEG9>nB)4|1&+l(h{@x1&+!1bZnr498C`{e&#`kwtcWD+ zuc~&d`)6HZ?&!EO{nzIZW8-Iv=h~MhgN*|dKh%rg@c7(R{#m}me`!gHoyX;}gTe~DWM4f(8y^@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/meta.json new file mode 100644 index 00000000000..8c77cf9dc23 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Chemistry/plastic-bottle.rsi/meta.json @@ -0,0 +1,55 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-NC-SA-4.0", + "copyright": "Created by JustKekc.", + "states": [ + { + "name": "icon" + }, + { + "name": "icon-front" + }, + { + "name": "icon-front-nikematide" + }, + { + "name": "icon-front-perohydrogen" + }, + { + "name": "icon-front-diethamilate" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "fill1" + }, + { + "name": "fill2" + }, + { + "name": "fill3" + }, + { + "name": "fill4" + }, + { + "name": "fill5" + }, + { + "name": "fill6" + }, + { + "name": "fill7" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-1.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-1.png new file mode 100644 index 0000000000000000000000000000000000000000..1e33adaa7c7ad4cd6e709294e765baacb9c19e7e GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzXHOT$kcif|=MM5V7zi*QbSMmW z&bq68t|o(_QAFwOAKmv7lTbP0l+XkKrZ*}B literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-2.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-2.png new file mode 100644 index 0000000000000000000000000000000000000000..81405aecbcf1eafe53b7b945bcd60ee78f18e835 GIT binary patch literal 113 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz3r`ovkcif|7dG-T81OJT_Mcp% z;~sTAP-NDA)(S&r28M!zWvd>026dlMdRc#@?m(ITA~QaQink2&N{zDw)*n0xG=ss@ L)z4*}Q$iB}p_wCC literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-3.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/fill-3.png new file mode 100644 index 0000000000000000000000000000000000000000..2423b8a2e0cc960d88213315518401912dade4b0 GIT binary patch literal 122 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzM^6{Wkcif|7cO!#81fvx&^I%3 z>zwziCop;)YP`o}WamCf<*(?3s}+;h^z8V!dR3bH7Yl)eGMD}JHuv1u998vPU#nl{ W_2$I%Yny?7F+j zIjywKc)7wlktbP0l+XkK_SP_+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/icon.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..46e0c75f9a3b1482f3f3aec868745b77cc02c3d4 GIT binary patch literal 336 zcmV-W0k8gvP)k1 z1H*qpjv(j&WFR9W!@$eS3+KnAlrk)t(~ZLZ{P{B}Mv~?LWB{`;CZ&`?QBDT#5K;jX zxeh?K{QjdS;FiN2Lk=K23Tm4sGBnraGcYiqrUkk<0Np}zEhpIlPo6;H zy1F=t;rjLKWLrwU1D?KPU|?Win7?QVR{6xZ80tIV`=_@I$4{MRxN+kqikP996^gp^ zr;afkKXsacfq?<8_WP%|lsfsxneh)+DPkx^wqB iQRa_=Q7{TdHUI$Ie`AM^H$y@I0000!mlZ#Y_(3{?lw0P(An}@@Lj`%;3V%W*%u#Ry;HUk;C*Rk3(Spl@EzpB}xb0>}^nFVdQ&MBb@0Ijcc AmjD0& literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Specific/Chemistry/syringe.rsi/inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..863a40a4932e2c99de5896ae8ff3802dd5b9d66f GIT binary patch literal 300 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=oCO|{#S9F5M?jcysy3fAQ1G6o zi(^Q|oVT|w@--1 zbs4w){eH}9*6|wAgyh`RKUX={Za?4^zF*^U?yich4AZ~X-7)<3%H|x?8oQtA$FnM| z=Wk~CZ}ju#tGgGPlOnDvN-7BU|RLZf4to&zBufFxmob?Ig8C5KHL3KIIP?g z!RY(@!`x+mzn^GND3#xL_{#02j&>=q@p zF8|#}`D6Pkir9VM9?G^fv*R(ic-(RaBe&`-_FMt>mSunL*M9j?Ut7#?v1~T;1YPxG zGOLy`))x2wFAG!SQFZNgap!dX*!Jf1j}C@5=i}!L?$m#2S@OjpkVE6tNdpl0^5v?r zj8$3N!E>ir-Wkj~Vr|61;rsJE1E-@K$e7x{#s)e|XDVONZNK=$qTz`KNOphXSDCaG ztpD}q-8p#VKtl)LtfqzwQ$T9}83TIwP4kYVt2 L^>bP0l+XkK2L*)9 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/dead.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..3a1e5735cd8f286cdfbb1b189ede7e41d816a118 GIT binary patch literal 581 zcmV-L0=oT)P)4*7?Tc$vjM!uJo1oYoWT)sMze8ZTeJb+mgo z802%YmVy5GGVOr2Z)R#TIy>(m3@@a{&sVy1fIFBcq1_V)Zua#70362w0JyGuC1C$R zM7?^m>J0Q3P`NWKeO{_X+j1L3K&|!}0MO}#0Dx-slaT1n$w~Yj!|+040H{;h00000NkvXXu0mjf&TtA; literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/harvest.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/harvest.png new file mode 100644 index 0000000000000000000000000000000000000000..51469d0a083ced1936a1c57edd798daec9f70db7 GIT binary patch literal 658 zcmV;D0&V??P)Px%Oi4sRR9HvtS4}8HQ4~IJ!2+|Pkwn>$NU^e^W{|`Rg$yfVAuQNqjRmqGR*X=x zA_+6a#%dNKKO039VKG>+xcY9+bLY;yj3!g^?qcqH=YHp$?|kRHH!}u(t~c>6cCLL? zn_X?NP2Yh@G!iV&b^PYlwy4T-lkTJ1WiSK|`tHc#PM2T?sDxAu?0R6`hwnLV`Cc9E zS8NdbvfW5o$PufqSs4(Zlj#6Gtlf}G2qb}fY`c&c1k%s-B7iT<%#&E%he@O^=8_}; zAQqB~`eafa4=cB&N~OEi0{ijJxp~eCq1uu2F_}yTU4Nm1o)XJ@6aw6H`=ud+I~tr~ zWx^{}zyTIWAQ?a)$u>^Hq+y3GtufOi4?iSfl@Js7Na{)gk@_{1H)s;#WUBP2zRBMe zk_a|dLhU^#1`%#|m;x*rf;9JgLgqkKg%v;`5K!kwuY9W0O#|}>hB_aZhvLy&n%O#% z#mf&!JmSxy;iofdea#@RCrG&Oo%4mXgl7aj#-OsaoLC)VTsJMfN&;vx@ccM-*A$5m z0w6KoQ6`35*W~d!OagGm@Tq;*`v?+hzcC9?6N?GpT1{$6015dJgmn2J>1u0|IZUVs z1d#}8p=vCam}A65fE7S8tAK3hT`wXg0;;o3;D0F)>9P4$1vsI;$88Az1OcnJnbmv1 z3Lo)J7>xopf$tRPYbgPx%zez+vR9Hvtl}%_9Q51zwAjz(Z6jE>&{v>D>#84@S7NLSrw{8^Lg^&bkq#FZ8 zY^4>GO(kxMQE3WYv|G0kToj5Gp->`1jgt7Y=)!J_?LtffPtMD{IE==5GodYrZ!_~I z^X~cXx%Xy#*yH8fV}1M^098>FL0`aAGM)}u%SQ3-#SP3YTt#a3rR#XE57@=6`;p5% zc>4UUtC)^2+wE2RPoL++zK@r1XKDb`g;mgnt)nk+4mi~QJY95eP~B)=%lSpTvBf)U0zGzh2Oa0JN4`h*HjQ6MWDLnu1)r;&FAuxHJHT!i60-60@>R5>X4?0z0s?#87XofnOkI*tH022Kej zq%xo&g;j=DH`MdnPg1f3sxe#jf+GM$6$FJkmkgvMevA%&Z@R#DSc20%IRx(ouy!qj z!h=E+kbSUL%7~NQW54NX0Z<@4?-#s|m+Qa=fG|+KRYUM$0H^@za}6j0R3~aEzn?KII|{H3paX!qnm}%|=P`E<*o32Hpx9-?RM4>BVT~O^42C`m=K1o44Px-8DRO~ zCQt&ReoN=8a->{LlZ`;j0a=3jFLBv`5lb0%8bCrPAXN6v37GVrx%(;L=nXgi3yP27 z!z2WD8$daM8Te#b2-4>A9v}fhkT&((5AYwLT?c*wxLZds*IS5G00000NkvXXu0mjf D;o)Rp literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/seed.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/seed.png new file mode 100644 index 0000000000000000000000000000000000000000..2c7324164f52fa0d48637d218e4565502182a2d7 GIT binary patch literal 333 zcmV-T0kZyyP)Px$2T4RhR9Hu2WEfz;IKcKZj5=U61V%%E=nyzjq4@vn`>zb#g4_&*Xp4^fM4L;L zLXhQuIYby(gcTUrMHCo*zIlL?{`2+$1H+e>4Awo5h%%cfMMoP<{}W?5%yA$`ST~#| z%50((Av=Ij$q5P_x;bF)p5qM8E|w^6qMHMzFWkYPCe6=q>*+^^%yWQigh_#p;b)ya# f4S~@R7!3gc5vb}ReuO4R00000NkvXXu0mjftbcrc literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-1.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-1.png new file mode 100644 index 0000000000000000000000000000000000000000..f9dd270748187e94ccb377dff360c0291a5980bc GIT binary patch literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}M?75|Ln7Rh zQzQ}&SRD9f++&qs!s6zPAQ2rB!4M>KOj_mF|IfRwt5h~+unRmE z_`EmozrWS{rrDkE6mrrMEEuM%%}ASJV|Mt$QI3y}YYlm>A2L~Z`GuIWwa9cC9hZWc zuG5$krYTx8*p^(7ZPEYoK=HwXgTMYC=)K>w_rwEs}f!%tSy|hiAQ(VhsAsnyp0zHBt8f*FzofyFpyp2_!HPx$J4r-AR9HvtmLX3AK@^1F3K9ZT)&K%UXsfC#AmJB)=NIsM_yq_A33wD02vUJ+ zOHc^FoGhq{C9`2R)4d}pn3`9!$=jK?^S-_GF4&5HVa4a02XF#TzzH}3C*TBX1hy{s zVz~WEZ|T`hmG)bw?HErsQ?0kXZ&k1lTN#f5@<|(=|~-FKReINjDQv^fdBdAm{X`p^0ih zLkG~n&?$}H)rL*ht9*qE0bnFfT~WsYikgA+nt1Q1bq2d}`tX*5X@Iit!ZXl0+=Px%0ZBwbR9HvtmQ621K@^71U04VWk#=K+hDasEM}sCl62VTevcbyA$8Yc(gdc!J zEPSMPB$bLpB8ZS^no6;zaG-lPv%}=)Tho4BSv>MT_)%I%Gq|7qf3K(oIQ{m``VK-j+s--jX zD%@wE;J@{wHlGhW-)0kH0%MO$B#{y+G}?Vh7qZFTr}&~g@AG~7I|3X64uO&r_y(05 Vk}$Q-lHmXV002ovPDHLkV1o9E0bT$A literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-4.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-4.png new file mode 100644 index 0000000000000000000000000000000000000000..988693e410b18cccd263d3f9194625dfdcc0dfe2 GIT binary patch literal 650 zcmV;50(Jd~P)Px%L`g(JR9Hvtl`%+MK@f)L5o|OEiV-weXcI*d3;|kyEDpv7S!cSQo)i3p-a3@D0%Xo8I*5``;Iud#UHfABA}tMBrZpv~LnExS82|9msM z&yxop-UG*%SU^l5CU7ePkLT+A=BLkOo?_M;5f3~zup>*psy@g9571p2UbU$dJu8(3RGXmfMfm18> z(*Ed5zV(#`Lf{O6Km`M2AOLesifcMJh~%4c!OtI$L}sFkaDc&5jgNPL|aWfO;x}a;Rod1b|~^LSy!bt}ktPUfXG*xXx@= zivVg0j0i?!EdX_9FCY`Qx!k~700e{Rr{t;8V)X#;zUxE_82XU%zn^TGTM;I}B>}=L zi+k10EeKN&0lEhel#fhQ0y+scD=1^#2w)KR>y`ko8k}_3zL43kOV&H$W`0v2>4Yo+ zE`hKnBmp$7`@|NbcvDYV0+Nj-!Q*mYW9|2qT>=QGN{Hn0B2m9uY*ZVbyC&eiGI!(r kxBvQG6Nm-G1Y!bz0Wll|KLXfgg8%>k07*qoM6N<$f@v8XZvX%Q literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-5.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-5.png new file mode 100644 index 0000000000000000000000000000000000000000..4d198317971680b4d2b77eb67deb00c36a0d3d90 GIT binary patch literal 751 zcmVPx%sYygZR9HvtmOW?`K@`W|odzU&Xb2I%3e%h)hoF@NELH^Z0}Dk?%wZ*{sGtzF zNpU%C6tzfUp&}M~5rY^D6%~Y21V0)DNsJM}LR5?r;Y^woE5Cs^%RMM8pb)7;MP zym`O(fBzXSCDS}o)0|)aFMv7MmioCxS$VnP(WHSV-e~RPjeaqEO!Ad|@_Wyx#BqOX zabTm&juzkFK3lduoG&-7zp~%-J=HVf6aaGllLk3`@?J{S@+vds%&Ggaz=010^?H|N z*O7u$Zx5Sq`mQu|PImS;OR4F3qyi^8xA@+HqgJ7$ibX0wVwIWdx6W#nyPLmDxc|T% z{*bd31ON1LcVG_qM4qWpVE2nwNq_tyJ&oUF<)Jmw|7A#0eWTJowm`Cr=Ss(wXC@|G zF)+oEHlq;hiOml*OL1PbV(N{W-t6DB$}bnHrdpCSq5zQCZ3zISUu`C#-MnwqwldC) z7C=q2`s`PEb9|xTc;sV_8hGOT-gQ0-u$B!E4z7^&jC8n3wocb0rV1eM zt=vyjK^TBwl7vm^0K2C$pmWphFlUhfmD0K~|r3TWS{JW2t#HQHYQx<=j`IFxf+ zMq*-6m!a@h0pubWx4TJM>;f>S4S?bm_lRjicRel8i%b){<~0B;=xSPKH=YQ9$Dh8582=`YVo04PwE#qjx_F&k@-VVFJ+Kq1{r$@PF+ zgzo7U!L$3m4p3LXD&Q?|FxTi*jmqG-$sGV_$%qVBMUwuyut{TdT@AogRUXbWX@4&N hwSYQ6U4gm+e*peA(?7~=bN>JU002ovPDHLkV1kNqS84zN literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-6.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/buckwheat.rsi/stage-6.png new file mode 100644 index 0000000000000000000000000000000000000000..a77d1a4090107f8928078a6fbbc1dbad4aaaee39 GIT binary patch literal 784 zcmV+r1MmEaP)Px%%1J~)R9HvtmrY1iQ546|BaECHqJ^4f)TSv%f?T<2F%W3E5nC8IwF+wyQDAL# zoTcT2WQ6vG#0a`5S`;A(vuM$jP!RSpwFt5ga1k-(Cg{rl#(A83-#q6v)ClU^%=q59 z=lst9{LeV!kaa!yIHfu>C+Nqq503rpfBbC}LGk8yjg;LrOKsa*JOFrJ=)NCVka(j= z_;8h)7)n!r?jmImO#KxcAY{Q}%`mi4qU(mB3BlU*SVXUl7=$GHkMBS+?u8HJ<@Qp(qfqy~TzwpUQF zu`Z%>&wkDk-Xo9QjO`Z}Ko$Z7E>18R8zo5DpQ)#w8;>0n!#(L0IX(a)9uTⅆxfl z_quy19nTXA961x$eqflymfacv#kf;mSKLGAILGQhF~l#mz8(+6(_w1AHs~f9?LJF2 zw2np|zH|nU?^mny=<3*vn*(t;%c{Y&0Jc|B!sx>?03$#W$jy$I0Ell$^wN_{1C&fXG89DI zi}SVGgitcFZL>QvUSZq7I)PjvD1aoON4J=<1VC}WPfNtXKPYaG?DVq+8lIccTOkds z0Wd!lgsfc)TaCkbZjXQsn!hveQ2>QyJbQ+rcw5*XIsw)SbA{wkK+@X)42dxX1wc{u z7V=@dtgfK|Xl;5wfc15ibou7fKnipmimGb$XOnn^@fm{#+yuO0#Q+$xqPCKTZv_Le zo5+3ou3>P$WPqAzH6>HiffSGc_WP0nN>$*W0c@xb(a`nmDpp|SjUcwCLjQ{`*Ohtm z%UnYMRE3G=^F%>kC2Y_$9OnTjSLaK9BU%oKvi$l9{FQ7?fi(q|LxDy2_i|2uT=P=^ O0000(x_j5LCx=u3=Tomc+ImNO5 zo2^%m!g;g&Y(aBIaVJ;f-1O;x=hwc_ef-8bUs8XWmSKg=Z@%fl!9uA5 zRYzIN&#bLpFR69<$-m1g+3#$2^UQl11ax7!dd46Bt-}BMWvtS=egB^hJ8?lh`jAY6 zo}bsO1sc+in3gB`2b=R=5aP*Yzq9N6tf+So?ljA6#haGvX$70>u^#;q?}}g>M+61?!8jIcWld2^#|k!Af~hVNPrv56It3=OVM-J(;_W`kU-j)q*P(r zgi%XnWyD4;l^vZPLsF^>0hJ~I0DD`z@GgDSWd)K_h1RLz)tlGC{exkjQA=f7rv^!> zqAn}&E`6Mzcok6zmMWJUtjh{oiVoLv;g3TAfYzyj5}LbqHJjijn!z83aL)pvpQWe3 zJqs%SIK)jfgX_7VghK1oa`&bQrJWa*tyCX4+&M@hOoOk9zVXP5dPE@s&U}BnU*VY$ zWg%ORWs!3fYJgfQlN(a<&O2YX*T$F06py|4z5^%}}rNxCd7 z)X_(X2XY009wc=SCtvX`$}hPn{XmI6Fh>Tzdi$nfBw~B^{3+hOeV>SMM5QjSl0DcRNAJdWJphcQ1 zU)AQoCmXfYIiu84*^8G?7KRkHRA$){8~^|S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/harvest.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/harvest.png new file mode 100644 index 0000000000000000000000000000000000000000..2faaeb24961482ea4db1bf91b98de40aa90a7846 GIT binary patch literal 697 zcmV;q0!ICbP)JY80*bTDO zR9w=?4R?A0U~+nDx5-lN^GZxy)>tSZc9!>{&REzDC2FQ~NVAv~s{)o|L+;2}By-3enZLU@fS0>h$#QH2 zyMQf{d2Il_ZeJpYq(WQMU_?3_B##IE)F=QqbJ;r2F&z1|SrB~f0qZ>HnXmI4ZB2vR zk$Es>J4f}Qv#xpylRGke?E!=25dg3qzkS3z-m5sYhn!IWz;8vW`k}Hx(kx~%Ql5c0 zRQl*04HOEN_5#3kHbJo}@a^jpmYXHFu}J2aIAd<(s06B~u&4Yxe>Phtrn3n*93!oY znae*M`52CTeEB?p<=7aG`~&9zPESNSyEH(8UBIujrg{ofJ%!h@{N14Gsd@?%*F+yD zOQ3oRvm6_J^zftg6Z9>hTE5)9O0-X`C(R2|j3gh9d{~an*TQaidM1dGiP5W`!m|)F zF9&W!I#*BRiRxAPJ&K4_pqh&fw9a#`LYV{XyPWPV$L81r;P)26Nv`tl_bvGq8uY*m$wdYvcR*A!timr#X;Mo}HeU zbHMd%KR*OOvz|HwF!^{i4LB0MD45=N@toBm1iff^Vy@ zHIVro1KH8=0(@OPG3 zOi~G2ye^0*mXt=xm1Eok2yWzFhsShP~g}hPwVCa^QrUy0529c zo==_u{4O-JP5b^OHN>0Eu7@~_=ze?OSW=vlH~(R^59H-@>b;9Dde`~|=<{n~OxXQi P00000NkvXXu0mjf`;!S~ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/seed.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/seed.png new file mode 100644 index 0000000000000000000000000000000000000000..685a329bf36e597893975541917eb32cf6879d7a GIT binary patch literal 400 zcmV;B0dM|^P)0StpD<1{4*mkoi1%TVgg>7`1t7 z;@}1>-f?}co0000@5XQgA)%pUKX_8V%kaX69rJV#+5PKgZeF$hkwo56bP8US6-87czLwtd`LO14; z_~+n2IQCa=cIKOzZ?b?yB9TZW|Cu0i>0`nsGst8Hy(*&hZo=OPXT26QT?YV!?fui3 zuUAP;W{{Km@94uxeauF4#OD~6Y5@Q&)k4BJX}XT#rH}Dosgz@s#!R?&ll5AN&oL6t zvFc81!H@8Ak3RV3W(*2TAKTv=S)3vZ&Lh$;_9YM*RMI4?Xc z+h8(-%44)oHi-fg&LR93J0Tir+JV{xg2<(?y}t`~7K)d91ON`dE@N3dh+N9l`>q@& zN9BMcw%A@TFp#F}uv80KL!-4F_#u9)wmiP7|Kq_@DNm@%syju(d12qvUpk0fvQPHI u3nnufm#^vko!CF)ormgU&$2`!dBrzA1^5S?fTC9b0000t5 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/stage-2.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/stage-2.png new file mode 100644 index 0000000000000000000000000000000000000000..0260362ce24c2ea08e3fd4a9be19e608a85fc864 GIT binary patch literal 510 zcmV+StBJRd&)ovflB`ym>RTU}0flVPRqMUa&1z@_&8aiglWthn-WDUp}B5}56e0Qn);Iri%vX*Ab4J~S!$Ccf)?=!YyesZP9N+f*}? z;0vV?OlK3OvkCWiWAa1JbT+vl2WkQ?l=qfh85gnaExYpZ_oF_Q%}ZSAC9YI+RcBnp z+Al6*=_Rf-Z6?R7Bk&Se_M-tKhWzsXu-K%ugMd;90DgS_=_o&Qp1oyPs<|t*p&v4x zP3T7hZOb}Yv+`cG$vT;HdO87b zET5T7wXv$MO4tsuGlK=n!07*qoM6N<$g6MSV AhX4Qo literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/stage-3.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/cannabiswhite.rsi/stage-3.png new file mode 100644 index 0000000000000000000000000000000000000000..b4610429b4bf2d398c9b610cae0de52dad8d5487 GIT binary patch literal 608 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 b;2{720|Vh9sQ}>P00000NkvXXu0mjf-bH)I literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-1.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-1.png new file mode 100644 index 0000000000000000000000000000000000000000..ee8b4588dec2809fbea0a3762cae7a089f4b96d3 GIT binary patch literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}3q4&NLn7Rh zQzQ}&SRD9f++&qs!s6zPAQ~141k8W-?SI-ey{@WVH)!en$j9K-fLm5Xyjs4rx@@+bDVr*WE8gtkiZcQ@Yd-VVE{94b6k}272k#*gX z^Bmv4cV_dFah%6|$m_pxOFVdQ&MBb@0M-Rly#N3J literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-2.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-2.png new file mode 100644 index 0000000000000000000000000000000000000000..f83b56c50e412fa3df700f9edf9e4385010044b4 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}+dW+zLn7Rh zQzQ}&SRD9f++&qs!s6x(BQ&@ezh>tB&rf^1=mbxfiE+F4|Npx`X}YEbERnp)_@s?3 zlCL4s#(3WQ`d^3qd#1FoMDj71COJ%tum9BP7~Iy+_=KZK+AJlTB{Jf{nGf}c;!a7K zI$vizT9@|!f1T~o17~uNUD*9n>bF*bQ2y{!9Pyhi~G$idG4Uu+qt? oVv(~>_@1PLn7Rh zQzQ}&SRD9f++&qs!s6x(B--jYR`?hHt~bsWzbU8ask|vw;oIEiaLIq`YP=>%zHqho zoHg_C(*MfQ9p}{5O+1PiPJBHv?Of0E-}Co<5Wc}va$F$#Px$g-Jv~R9Hu2WEfz;IKcKZj5=Uwg@F1rxBoY@cEKG@h)+!VB02<^!=?YL*lRP~ zIe3-f@5-l)Aj^wRo?yuO!3*Yt04jI^?)p$#`=^Y>$fzD zy`(sVpaZ~`aD0aQbf&lXe+)+;$%9;i9yRzv1+N2O!3v^5hQNFVa|FzB=?gzG&Wz{# z52C5+0FX~$aSrnZ%uygmFo=AIhYYC}!^|TX1<1jPoY2stf-Vj~k4umvvUphFQA27D z0I4S!0{9HY<^XKbMs^}Z)(A_8)4u$HXGLTOz~o_xmDrp>R0tp^JW!Cs9D$q;&_jc& z4gmQIIZJ}FBRCf@Fn~jYlC(fn2;lM!vLnbzfJ7%kTn;GqGyC7W=@e0(z~w-SG!Li) zK*4{DS)M`d??aRdiqxneI|M+!hgn8RG?3*0WXmaa1X&JX2rK>1@cA7gw0VUX7*=(Y zWfobQNR4Nz6vfoEl;kEEtt=Px%C`m*?R9HvtRy|7tK@gn~3&jsagdizw1PK;)7B&__P*Mt7S_%O{0{#jy2tpt~ zLD5DGLcqetB86ZfL9tAbKu}Nv7KX@McyYPpcJ~hPnxr{$H#_s@&3khflZbz@i0jLr z0f=uUJ7}hTQV*2V7(8D{tE7+FvNi7c=0WCG76jKIAo?aoVI;y2NlhToxgLYF>*r;4 z=6E`31=9mSFTUHX%hg6&b>*cOh0!VF*>y3K=w!!+y5Mc>`BKZ70tCAuh`m)&qd|x0 z9z_t3*rRLd0c8@p5dde3D`;gwGD3y`fYbv33X&n4%dFz!{8@k_A^iY`d$_VV&LG}K zKjM5vh=+QoOwJioc)8oMR9~d46^?`;Y%Vgopz!%E)vt!4Ue^Nd=QE3<7xyaP)eXKQ zpt`-@=6!-A{QybZf_ezm&q2B_j2bWriK<636rvLVI9Iw?4Dp_6F*&bIT2C*gyMW3k zGx)EI($5W67htxj;e_mz8Y-65qD$x_H6xN=POJQM1Um;9o(l|s6my;GHY6wjh>tGG z<=SMA4P9SO)=kLyp>ut=7q=%m)!KWvv3_*BEF)(TdXwn@YHuQEcfC8sWf_GAKv7}@ zhZhxRF?+RO6(QHDx0`DSXQkb$IQc!W4NcwSg@oej`=C`(SC^&J zFK0OMZ0>jD{=$L8x4z4%t33f;=Ap7%(tkAaVwN00yC*Fi=r0CjbBd07*qo IM6N<$f}Fev&Hw-a literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-6.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/cocoa.rsi/stage-6.png new file mode 100644 index 0000000000000000000000000000000000000000..7133d2c99dd6d9210cb6c780b79dfe555337c02f GIT binary patch literal 676 zcmV;V0$crwP)Px%UP(kjR9HvtRWV3gQ4~EP)IsQ=6got3Xu(11n9?bO7?6NV!ER2O0)l8ev}*?k zQ3N3%ICUu%TofsM>Cj2cA}As)ItczjDCtlNg%W-_|8vOWng9OJ7n>z-dFJ2u?mhS1 z^Nu<6c;$LrA9n`uVjsa_1v&1G4+XS7`Ca979?rii1Z2ogs-j|#znfQO43Bysh^M9T zFvQ;k=VG~IP=$+gewdKEnaGT@u-3)bv+(TmHDKdWA^e=g$SnY7^4EL7yNRd(lQY>^ zy&S01`5!)x76F0a8FtUOzJ05C-7~;~EW~|!$HV8B5eS=NGtL-0=UJUg>Yn#w(UA$# z$xa3bJd{4RY1MajEEY6-7UxPU$W$VfsK^Ev=WFUioiomnP%mUKiT+py)IGc4VwWsR zASQ^3DIZVjz-0|MIf&w9>$n;*t1-HOIA4JZvMYAUCDGaR6AVE}`SJyUkJCe<2E+ov zNaf}(hD@RA8S0MfIVNhrL@vWI-@B;^3RXJc-=v=7biIaDw#ivC@%2x@e;>Vjf~Y_6 zQTy8#r0ICJdBwS*6M*RjQoa-~4ao82fO-Y&obzA*lEI3JRtY*e-LowZr`0mJj|@fT zLxxyvd>O&nTZGhSvSLwXCs>$7prF6XV5owEc!vM@_;dklCnGF{IbiK%hW}J`3^q%U z0kRm)LSgM>hX2S8!R7$EM8V7^hW|60aEAiABPn(iHiHY|A#r?hulIkLqp<146=Ea< zm_aa$ksUI#344O0n&mJ{u^AZRj<6hC&{HiJh30@%vhE?5+Fvq6Uke?_=!6+C7BM$%o@RYfGQY(aa00000NkvXXu0mjf Dtx2Vv literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/harvest.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/harvest.png new file mode 100644 index 0000000000000000000000000000000000000000..4f155185ffb679b04552c4043971ef352d1ca766 GIT binary patch literal 682 zcmV;b0#*HqP)Y&8^_TT*ug5kHJSoMgw=x%y8 zz3V-$y;zm^Aj%A67+pZCWN%|ig1W!Eo3NIEnY7sLL>6il;-|g;ox&d|5MA)t+legA z*Pt8n?h=`fib4R?Ds1eSbl;j1IOCVvhk#Q+IR%t%c)@kV#7<rS5fjz1Xc@4vW0FgQ>R1>Vc=8JFk3q@tN)ogThbo|V;l@4G zR8!1fZlA^t`No-Yq>MBgTH)c`q>N=gEE{i#Tw z{3S>HX40|_8plYGtZp(p#76L8R1Qbt!eIiao?Z+#KBf z0~B=#xYgOs2HY|fTTrxL{Qq^5h|wM<=*#kN>QhKqnr1cpZEEG zdB0yC$jQmc`QK50^H^4t94&ezW9@QmhC9u={3`m|y~`VOn|J+7znQV2U?aXX8v!7# zf~e(Gox5_CvWd`#bFj5Jj(&Cn0I#Y~aFaf|G)1S`l8NLC4nwqCI+~G|BWl@Xjw5pf zK|54#(&zGd;o^m9=5O4>lL4l38Y#~ZHo$= z#Ge8G1cTX|^cNl?1>a_+oq?deuRd%%$J=|4NfWeJ2jxO~NL*Vat(>8FutT?3`?m)E z{L+K@2cQ#%$LBEaF|>aYC;d(-+M>Gon4leI?m(szc6&8sC6e9iYke|~9w4>J8g&<<6%SHu0Wk2poV-414=fjA|MH^ry5`xvh})-kf`00@P_ zSJKK^8gK95=mAQ{0F*zj+iC-rr?}Ic7L)^`3EH6=9j8(0Y_iYE$;rtX@e@-Js}IHG RfIR>J002ovPDHLkV1f>M@vr~@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/peeledprod.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/peeledprod.png new file mode 100644 index 0000000000000000000000000000000000000000..3bed2c4b8d6a0a661988faabe72304db7daf536e GIT binary patch literal 388 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv(mfq_xR z)5S3)qV?_Njb4WxWR8D)Z_g<;J7JOD)iI$Th`7eNTE&B|u`+jSITq?Q zt?qJOV{2%bJ9&?N!x z8UBQRxw6%0tPg*=lqRT8*msptOld}qW2nO&L#<3Pg~|q_|IryMmOZF2_{Vac zz0mM)*u0DHGPxc#UVC7=;KVEL(=yX;FYx|RVWO3Jh4H2MAs5GQd>`ZPGBW5ld`*_< zpYU0Hv6zH^;}`DEIyQ~{+y~wMzB(!z!uIjySD)lukVmfS=fnl<+ZQX@Rm be0>?TfNTyR27yb#lR=cHtDnm{r-UW|=Q5n| literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/produce.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/produce.png new file mode 100644 index 0000000000000000000000000000000000000000..4b6df214f7d4a222ba762406b3f2fa56f34cc23f GIT binary patch literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DEQse z#W5tJ_3h;IUWXk7+V|&9osb~r_2G%)LXX^aFT0fn&a`@WUJ1X802(&%Dgfsb6 zthepU8dovT^tD#=q5^E66%~v6ajl;Eylh|CQJG9V{rP)SD!ZA#MRFb}dtCKeMrZz> zSN1Eo7%~p+5H=HKcrJeFwx`rp<51BJE4WpDzWi~6>B&jHw{|Pk3m)t!elbtQASNv^{@X(x&7NEK;0bZ)_*MbTUZ0w Um-eJd0fT_S)78&qol`;+0L0aSv;Y7A literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/seed.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/seed.png new file mode 100644 index 0000000000000000000000000000000000000000..2904cfaf72cebfc69248be3f81cc7e32181f5037 GIT binary patch literal 299 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D0tV? z#W5tJH90|ob#a17PZJ|s&k_y473n|!KY1z7CYdS5=JciMn7zx)vp!u4}9%b-!^>bP0l+XkK(kN@S literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/slice.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/slice.png new file mode 100644 index 0000000000000000000000000000000000000000..5e6bfa3624d3f08857168b277e75f7308c2b0992 GIT binary patch literal 199 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5C|K#~ z;usRqnw%iPx;R0krzy~Y%k3Zovs;l#ZPer6^PeBpV>?!F|M1wK2iKDy^z8T8RO$1? z;sJlV$>H>u3~lrGNb&rS_#sip@xr)9+)Vwr#wVwS#>U2npS`~S-~YozLgL@ww1k9| kG=Xoke6~d*Y&gNj&~GMg(dcDp4|D{Br>mdKI;Vst0B?Oq*Z=?k literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-1.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-1.png new file mode 100644 index 0000000000000000000000000000000000000000..575d4e3d4b64580328c924252b79ef91a8f5c002 GIT binary patch literal 174 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D45{s z;usRqnw%iPx;R0krzy~Y%k7|s1go=TL4N8F|CN$HQ!@VjpA+<2v*bWv;wjk!9_xj-P5qbt;}74#=b}jo5m$Y;DT57B2HK$G%-14uIp_e; OE(T9mKbLh*2~7aCDLG95 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-2.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-2.png new file mode 100644 index 0000000000000000000000000000000000000000..0445261c8e8a01eb4a3c3fa0ce9327d91f56e7f8 GIT binary patch literal 188 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D46Hz z;usRqnw%iPx;R0krzy~Y%k7}X0)~S8)F1vUC4Htu{Q7UX^x9<3bL-nJnB4ehD6?H* zy_`zY%&o$lKiXYkkh9#Ns8{5Ti!3_;hBG5k)@(lLPBEKNy99N b$r22lj517X*y}FbP0l+XkKrA#=n literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-3.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-3.png new file mode 100644 index 0000000000000000000000000000000000000000..a56a25ff8b4f5a3265b71113e4d77fde74abc2e8 GIT binary patch literal 211 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5DA?-h z;usRqnw%iPx;R0krzz0j3gh>%w*Sm&hSz1RqWj+6X8ic~=T{Ezi8o711(sn-wbFGV~PWQnrxL}11UIf z+WzqW8MTnp6Bajyv`-LWZENJ|ac@=3c_Of(j(g$G?M8q8zdC!sqid!LW6J%rIY~eG zxdlrsS23-#6quhl+1a1}MAeE{9iLw-?sMH`Qr^@$Wg4do zbA;ZEn=Ky9C7We#3ZCFwxccc08AF8y3iFCiYp&v6!FZyKVe6y$IqWg}yS*lJpU~RA z@#x={)+aNMI`u8%yzeb3VYlCz;{%tWfkDaSmdK II;Vst02vj0;Q#;t literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-5.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-5.png new file mode 100644 index 0000000000000000000000000000000000000000..c9683549b647835b6bf798f3a268c59d6b959d65 GIT binary patch literal 570 zcmV-A0>%A_P)`6pHR9J=Wl`V|aKorM+v%$1Qk!%74g#vR5M=A+oWx;XO9Jgwd z8pImJnF<6=R_&%{ITXptVlX5d9O}%Sxl}eKVc+ zdml3cjT+S?FGDu&u(Z_%Gu)fM;ACL!<(%ub+92E%@iN4T?cz?XwkTAanp1bKP&|>86ZU;Gx8PU)klyVOdH;PR|qFYf}V}uiM1r>9n3t48;hKK8NvxfA;MIh zNe`9tDy&8-q*;s z9e97Di-Yb8&@s>*QS>ooLwXsKj4|hP(qCCltY<3yC!Kde1`;iY9JJr@)IXz_)f`zE+d~HP`^6cq)Xa7A(zbPqRL+htC6t{r4t1>id)aXCgZ>Fi*iKU|RPXGV_07*qo IM6N<$f*wQm`v3p{ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-6.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/mandarin.rsi/stage-6.png new file mode 100644 index 0000000000000000000000000000000000000000..8453867ea9373e01da1cd5ed79eead964ee0ffd7 GIT binary patch literal 598 zcmV-c0;&CpP)GQkq?n5Q-LT_k76qA9S`H>Ah?+s;N zBr=%_tGjr&m|P6RsIDgi=+|L$+0K0gZqa^^yMGaZ>aMBZzf8Q05~76gO;sYKq7Hti z46o!-=Lm?qxVVe+5p)_NLXEn>JpFNP9&axdBP}GL7UEBj@cp_N?=)oIzm!=?I}P~w zO$2?3Z>K69#i<4O5xm;MHOJ!lWFRC@=Oxs-e|I9D`$$p(vi2i+cY2g9BDY918epVa zY+4ijx{-rK0;E78yB%}eP}^$l(DDvebp1Ls$4TfTA#aXlOa}Sif=mJW!D)`+>ubxu zrUZmY_gbWt6&rcT6rk$08@89kV~}W^oy%JD-5W|O)bj`V5-Q>@&ILlSb|@jgxRNxu zKssS_8GgN$_AP3+umBLRTma#!5Q4R#w&}DetTc_eW4w02`|mP;ej(nMu~!On$M|*& zzwxsCUolLXf;1k=+tLEsE&RpRBMJEQ!NUIh*&_%zJC_y&ncJ=Mb?~Ijql0({DnIQY kUI6yWYM5b$8UAzp0TXiK4#ldni~s-t07*qoM6N<$g7424@c;k- literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/dead.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/dead.png new file mode 100644 index 0000000000000000000000000000000000000000..10a06b21ef4b46ab1638ce560cb4884838e4f6b7 GIT binary patch literal 262 zcmV+h0r~!kP)GvIIfm>i**A^Z&T4ewG5p)yix_TAw3IZ2z z;QP1RVgsI63%XzZS)fG(E|GoT`v@?zwt9Q>8kSNfpmPj^!Qd}=0VGde08FgUk^lez M07*qoM6N<$f&l_&DgXcg literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/harvest.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/harvest.png new file mode 100644 index 0000000000000000000000000000000000000000..f4333b1f29b3f886b07c584e179dabae79d0e844 GIT binary patch literal 409 zcmV;K0cQS*P)~$n@>>Fd_r34F%Xxjl9Y#*JY z^Lz0*fP8)#;ZqAbg?YC@xPu|Mkm2YMV5SHdxV^afYxP zHe?{RN)*CwNZy3Th4UtC{sC49U+90o0c&b%Y6`vqT~B`EtkUDJ00000NkvXXu0mjf D9TK{F literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/meta.json new file mode 100644 index 00000000000..033ad13f4e4 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:justkekc.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/produce.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/produce.png new file mode 100644 index 0000000000000000000000000000000000000000..3bc346363edf6139d953833876d3ac7a14172c51 GIT binary patch literal 329 zcmV-P0k-~$P)glyH> zR8UG+hgx_J62Z+}KossX-E!~!c<&A@%d)KhY&PvlH1woSjUCgA(a;m8-6cHiQzt~j zV( zAPg8x=Hyw*>g9>SWKIwUs94o{kU!#&ec5gb(TNrnE76G-ooLx^3h~E&~g z(TxVcb3KY>0l?$KebrKC0rn408`u4_ug0a5yGs_MMde>$^bO&26-}qfdbI{HYHnGU bW&H^sf{t94uTENg00000NkvXXu0mjfxBZqw literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/seed.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/seed.png new file mode 100644 index 0000000000000000000000000000000000000000..cba34b839496074af84217ed4fe658a79286e2d6 GIT binary patch literal 430 zcmV;f0a5;mP)CM@56BiHa0dkf6Sb$aCghm3kAJYYfYv-&GsYN zldkk$hn2KzzSXHuH5$Vxm&k6@lMNxA6y92JuPjbH&t%d780C_56P6n2qlT5Sb6wAq z$)r)EF?2mIwaan>SFD^%F z&86aqq8MvF)0c2~`O$`NqM=a{(mO5v3$$e9Tb)r6+&?^Vc=j@zPqB07*qoM6N<$f|i!ThX4Qo literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/stage-1.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/papaver_somniferum.rsi/stage-1.png new file mode 100644 index 0000000000000000000000000000000000000000..b8d41367e133b3eb9946646f480f09e8d7033d60 GIT binary patch literal 224 zcmV<603ZK}P)FjbuH8>q-z08x&5(Cd29z8)hVPAs8iU% z##IMUrwBd(z^AS{zz*!-ArY-_FDvpLG7w>VP~ReL z;w`{qdC@1Snyuz*-vQY)3n%@CBWJJcC8j?JouFguESQoqX|JC1h4UeM_wKJ=?=VTl z^HZ|q@)u>6Z8hZwKGZxYc^7eCBG=OO`YIMnr@*NUyJq~maYpyTTD~V7NB1#UHszH@ zm;xzz8-|*5q0BzbKK^>wm^2py1zhwJvZc4StU@bLe(GQocXH@O;4Od}rOkHXv(BWl@6b9r)E$hHYZEWHV}f6EBMr zWG(3{1^@tD?_eB8u3o%>wT&$99cmxImIflpOC%K&O5+uEt>Fodd66!RL366}RVF2GbKQ;nk7QOueH-bCyS nV1pVdY{Mo7HWN=I5Px$JV``BR9Hvtl`#s!KoCVYm4&1c!75!EOCcAq@eCf(GuU{6fTc}3D?x06g;nGS zK8)k;PDCLHn>~m`q!2+nW{ccm4ryr5X<4WjOuvBjc4=R}$EryI&qXfNjp-A|6-5Q0kS?xKOA?X*$&pZKcbEiZ6NQ>m`lD^oJ4N?` zxeYaXO@s;Qw-z9`tM6O030XiMNWLO50n!fLkb?wBj6NGEG8PLRQiBA<5?g1z6(1zP gO7cxS2^gKg6MX9TA*Z3j8~^|S07*qoM6N<$f-BmZxc~qF literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/harvest.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/harvest.png new file mode 100644 index 0000000000000000000000000000000000000000..e222bf17acd8cb82e0318c5a599332211fcd33ef GIT binary patch literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv(Ey(i*GF@nY`w4|Ws=|Yy)6&= zxqe@t`D15LYU@E=paRB{AirP+hi5m^fSk#mE{-7@6YrjP!30jKJ>l534>3~Jqykn`B`yJEDn4#?y*WRVR3T?5^ZH1D_AA}h8s<96kle2%6#G*#Yv_Ia+)LS-airE!R*k- zXvw5fo_*JH(HS)_!J^v0ky@#*nf#q>y2o zOS`U>!#+3vDZbO^34Bp-WW6E7@JY8yiKVkqhT)W=0>dfMkWz*-0TE&?ksPPmHoRbr z^eSa<;AwAV+NFGbrgkt zm`^NK=;?hUQKaK)Hd%)~p;%;R(qcXd-o}dp5+4K@7^1WeEAEoNDgq2{zSIcMG+$o^ YEg+i%h(X{|@MI9>>FVdQ&MBb@0Jlb%=>Px# literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/seed.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/seed.png new file mode 100644 index 0000000000000000000000000000000000000000..2555918af282dc639fe9ce2e6b87b7c5277a10a2 GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfvxd5LK*GF@nNcuDI8!#v&GfX~G zWBi}t|4fGeXBf@^$ux$)o0E0|RWgEDn4#?y*WRVR3Ut5DjXIAAbKj^S@sHZOV?K&xXyO_cHgC1zcq`=yuHINwX|( zQ|2y~l(DW0yw9l6J@1`{OXg{hjLL?e`s>~{bnj2RwoHfRTlj{*;UejY6TZE0-^i2l z^Y8R}35TK=CYzicibPru%=BFL-}PTys)M;milGP3&Fu=}ld>#5_z#*iyyJ*4IIP2b z)Kuf3BJ+g99h`NGWEi^HCL{%fEQn^?EMaNV!C5uKu1S$0h@*(5gN@bJj^WeS=jq~{ z$E-I=x>zzSV-%59;C5&T_mcNH{6oQPAxrz&k1Cc8VznKC>^*Gg&E)78&qol`;+03Wh;0{{R3 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-1.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-1.png new file mode 100644 index 0000000000000000000000000000000000000000..7e7c9d58f95fb85cf56ad4e5e168c9d612f41b2c GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}U7jwEArbD$ zDG~_>EDn4#?y*WRVR3UtB7U?SxW=vhuUgt=!W+d&rV8c>3Df-U-~MEOd1u>18TWuE z3=@(QrcJ)RY0(Wv&B=fMoj-ZoWt(M6cFWIyZ>|RO9J`gqvp_>ZUF5_imhBpPkL>5{ w&0vj8o4B-7X8xl~#;+PK3P|uaUKC(p5L>9E7|A5GALuFuPgg&ebxsLQ04DEE3IG5A literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-2.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-2.png new file mode 100644 index 0000000000000000000000000000000000000000..df56edf5123571248a27e703b95f729496c58ae7 GIT binary patch literal 312 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}pFCY0Ln7Rh zQzQ}&SRD9f++&qs!s6x(CK^@<+^9-C`u}VDG{Z9|Z@WyX3hF9f#5-r-_NV`Eu3rA2 z&tvA3@AA(SQp_}`HD3{W%P=7+rF(*G%R7r88OKS?6BaY2temrft9iR4i}GEWhCIO& zjtcAx+!;M$mlg8{&Qtah)bY3|tZX*F`AWkT`>N{pMhW)`PZ(yjHkJh@m^bP;`pwuN z;OMXa;}VM}AA=-IF-u48np`$>=_zt2POeh1WJs|*;r3*~QWfq=b9f!4E?j23E88G6 zzfkaj0AsVOwg;E*46{up6N4@Y1X;goxF{gO+jvocfkDG;y5e$=rAL9jXYh3Ob6Mw< G&;$U_=yPfS literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-3.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-3.png new file mode 100644 index 0000000000000000000000000000000000000000..0b4ace2a5e6e93c2db13f82bfc30107e09b2a266 GIT binary patch literal 388 zcmV-~0ek+5P)Px$K1oDDR9Hvtm7xj(K@>%2zrk*@Sp>moF$#iB%odAZVDt+t7PHs{!DulGg2iUC z`wc61;mTv!ao&szTV~77va|1=x$n+wW@^5&n)OWrNDd?ik^{*BuLGz1KF4u=xa`b! zarDj)J=(nm0q}Z1i@LYR^$Rguk8%RZapeFkxH+$K0uYMN@|~P-Lzls+9FQNP732QY zz?EjBRorbM0BOWAM+HC;Srj4!kgcJ(3(j`I3m`2;Q5nWE>ls==&j(9yeeVQGOhL2& z7ewUhU4i`-%pd?1A_T_WcCX06urtXZ9I*^fLe||hs{{nnewWtJ9 iIiR&OW?llQ-GL9TtqCv|xjL5s0000Px$gGod|R9Hvtm9c6)=`BVOK49QJyQ0|f}UT>1~f9KE1xfNCNsFbX)5-FYUEv9eY^+j8|Hy{8`=WiW%|F!#vm^|NS1d`8J2VlUL&!>z4gyMfWC)bzb~u14-8vqGSHr}pPScdYAx045M?24HjzdtFV;31G8S-hT?= z7;N_)4qy%-7=;1ME8{w22+6fJA+7Px$k4Z#9R9Hvtm90(#K@^2&p8=1;VIU+Jk{TolNgb&`)nIr6Bu`LNQ&rL6NSah) zNH8P~7+e*eXIOGJInBw<+|JCJHB-~w?cF)wJ@=9jFc@9oT%o zv{=`#@2jwQTqom8S9|h60Q~;#x^uTbpL>Yu?6xJ4UK4=ec=zG@$<;{$@WA=ob4vh1 z@m_yJyayd~Ckenz_%cc{9!&x=J3cz;zSSMTFjgJ&N|OaZ5i3Lh6(T?ku9pK^0vxK% zXsxIH_*Q7#dwq~}01ZZni_^=l5m5q)X!a$w=a~lqApWuZ+Bdhq#6-H)nSZ z#QThD5`fvNt#ko4^V*7A=X#ZZS7SEeBM%ttz^U!0%foxSp;CMwjkbrg6;%P zP1YF3?Dw)ntoIuoENVi{?vSWg4*MJs*cbMBRta)N`ovX$!5#PqA0S&Wq0t@v00000 LNkvXXu0mjfKh?wt literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-6.png b/Resources/Textures/ADT/Objects/Specific/Hydroponics/pumpkin.rsi/stage-6.png new file mode 100644 index 0000000000000000000000000000000000000000..e466217971f66d73aa93f064b5db15df489728db GIT binary patch literal 537 zcmV+!0_OdRP)Px$(@8`@R9Hvtl|M+sKp4d@i;IgO4uUv{lP-mVV-cK05d;TuaMD$WPVTNUXMAxpBPP44dfzW2Sm1S;h#NLgQH z0GR`s1DOMv16~I%9!^3W*QfPkb+~or9pCHG?p+W7t$?T*PC2aHd`QK57)|RTK*#8euMJ)YAl~}DR_||Ds`0WTp+XCAK}4@UF0ihh;RJxV zRPb6<`LUAR34!PN=^1flA-5VpTz3a^x67BJ?b^Pv09XKmBct=G`Lq&MOiLL=I%0}* zF28aeRueI(BaU;@!@fE70fq;)7F4k8u+md;LnDfS;N01*35 zA+*5^8go;-%}GWGQkZCW=_Lvw>}2I;KXD4`A>;dcb5Nc$GjOqTKG&5AF95fenRr{W zZAUW3al6{w>IuNNr(NF!&IN?NbrSuhs3I#oe1xY^7482Fu;Id<0HB=#<6wmG`(jO+D$jhK ueiOoz&^*8RGkS}N-bSTIy+k6B91cI@SBWg`#>G7V0000`GJ}QoYx7sU8grN#-rR{(&3^vPWAmO< zdpXj~!vC_*xcTQ(U5g762w(s9@f$z6`P;XyIJbAtce^Rqv-W0|6t4cdY*lH*{=C?$ zKO0O=udcqld}r#vqK6Om^85GSF8J{$B#T$W`v0F#t3-dUH#seMd%k4T4X>??r7O;| z%baJ;IK%#D>6!m$-U&t@EPD9i>w~Q8doM;^_$XQT@#DH_wOMDky%G|$3Q92WD`nD>ck7M+xNNu+sIxA&+rTqO{AiHY=cg;3=H~IcEituD zoV4Uz$AZgmr=F?_{c@p$fuXJ0j^Tl(%b{74f;{ZCPgWTysT+&yIjrki`)}>r7RX+^ z`P#0dMWNXi_piq*W{c0`w|J($zI^-nb5XCK8UHQXueVd{+D$eFzWobBq8Q{8X1zJj z>m$r5x8lU#!^#bR`#3^3f2cWNXkT1^dYz#!%jcPo{<|8sPZyW}ciAWRPC7j^&h8*Epcy<}{an^LB{Ts5OLw%| literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/briefcase_medical.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Medical/briefcase_medical.rsi/meta.json new file mode 100644 index 00000000000..f5a167a761a --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Medical/briefcase_medical.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment-inhand-left.png b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..ae4e7bc7f022bbbee135bf8ee374d68be806ee4a GIT binary patch literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=lRRAX5weGG5>wr`oJ{dF*!|N0Q!eMc=L z?L4kzPu?r}?zrNst(x23te>*#=+*ZO41eA+C-%#^q~2l%xsJip)z4*}Q$iB}34KtQ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment-inhand-right.png b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment-inhand-right.png new file mode 100644 index 0000000000000000000000000000000000000000..bccb346c37bdfa83b8c3218539a885d0d4b14145 GIT binary patch literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=OFUg1Ln`LHy>*bc$w7cM;7Uug zRBvY-gT9Q$iEh>#9I`h!b#HWaDsJrF$|S-gVDdh;+<5a%%YU6pK+Oz4DtDh&+p^a> zKX{GC=WDFX9~9gv|JCB=Imi^;CJ)`tvtu^v~*1@%~@- z38Whc=Jss0HVB#D&n@&`BvtNFmT5)ToRrLt)mJCz?lTW-(ObpNupnN)VZDNi_M~?g PKsr2K{an^LB{Ts5_7PP? literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment.png b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/antib_ointment.png new file mode 100644 index 0000000000000000000000000000000000000000..18dbc8cea9a421e928b3a23f3814a85cda9cebd9 GIT binary patch literal 387 zcmV-}0et?6P)NklopN~eP+?}hub><#^W)= zr{}rxmlq+neM{IqmsxpSQYT>hmMA&}`gHiXnnd$)P7kn@M!tKxElN%aEvJ#qWtgme z@qPUhTMm#-BRBIV0G~$!GjCFK3TXQ)QgNi8!1gTxFe{%jym_JT-%Ay?)MDGW#MaJc zH10J9Y#gow&PuI6FBf9EGeN=m3l!Uz554i5i&R0zjwP#jTX-G`qYVzo+V^Qk(xKkyf4v!_$S~ h>9Ic>g+ig2$1iV4c1K5u7Q6re002ovPDHLkV1k;{s}cYJ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet-equipped-BELT.png b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet-equipped-BELT.png new file mode 100644 index 0000000000000000000000000000000000000000..099d2e4661dad15c83691240ff63da9e14cf9184 GIT binary patch literal 339 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%zc|BbmLn`9l z&N|3@$UuN4cb~_ViE2tx3u2@ebbpy3FLYlbuxaY$tp3@59!I}FXVt%B`y+q-egE4S z1p@9cY6ZwJ@HuKZuy$DkG4p}&2Cjg{M|?ocaHgL1TB+>secN+y|7)7}($_|B`^Q~< zW&gi?v$=Qq{cb_?y^Wt(bWR)9X--?)AblwPt55iYHxAps8y?UV+$zTrVExXFpXrWJ z;Oj<)t&j6QE08WcPk_njzagKY!soe-0?em`C;U9;z`^*cS-VJ%&1KijLS2p%GoqHH madeazKaLWZV7S%eY<$piBgZ{D{SSbl#Ng@b=d#Wzp$P!=tcV=| literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet-inhand-left.png b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet-inhand-left.png new file mode 100644 index 0000000000000000000000000000000000000000..b0edb057df3fd556da5de7097aaa491925d17bf9 GIT binary patch literal 407 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D%z13g_FLn`9l z&NAd{HsEn}{$7&&GA1;pN&3r600kvD=Ez1~#rw(y!e zOX7IpzWAu`zvpnQczw(DbJ4^JIyt_|Dt7y}Fa5crY<=y&%yUTxq$Y3K!_2%zMR6%J zi-+aT6Hu zxN9^qoU3d(EPcSXzo3FSV~WLdjxK|S&$f+>GT*%-xS6~>CSGRdc(5b{xez1X*@49b}ED=PHQ}KUR3=`r(Z> zddpR=&r9%pcl-C$Z29b);j>@;-p6zJ!{2?Gvy9Gf)@IoHFjaoP!WuKxC%3lwGC8h0 z|2-X2Vy`g`Y1{ft}`b z?>x_nxc>jUe#W2U(Wwqz+i=~OIeOY^1`oxvyUWj3y)9iYbs)|$aKAT$#-_Meml*UX gJ3U>(h+zL=Xt9ZOydM#p2@GilPgg&ebxsLQ09sqNzyJUM literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet.png b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/med_tourniqet.png new file mode 100644 index 0000000000000000000000000000000000000000..2acd66da9e9db8fb4fb6bfd0b554a3957e5ce3e0 GIT binary patch literal 372 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^TEDn4#?y*WRVR3T?6Af=Z>G|-uC12 z^Yc9X@^_LZOqim4TG078qxVzRteR^X83Af@Xje!$!wP3tli> zw94Oa{G!;S;=x2B4`D{-_uQ+s0OyQrnhEYW6hEu{5 zD+Upz(5XjxzVfd9qRlQO-1RU2{!X@ecEOV_OGHIwo#^u0WYUTSj=S?Btp9zWpBz_7i$QjwXF;Vm$*_);T0(|mmyw18|5AO?X;!IMFhr>mdKI;Vst E0F_pdY5)KL literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/meta.json new file mode 100644 index 00000000000..06368e4a3bf --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Medical/medical.rsi/meta.json @@ -0,0 +1,36 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc and @prazat911 for use on the Adventure Time project.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "med_tourniqet" + }, + { + "name": "med_tourniqet-inhand-right", + "directions": 4 + }, + { + "name": "med_tourniqet-inhand-left", + "directions": 4 + }, + { + "name": "med_tourniqet-equipped-BELT" + }, + { + "name": "antib_ointment" + }, + { + "name": "antib_ointment-inhand-right", + "directions": 4 + }, + { + "name": "antib_ointment-inhand-left", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/equipped-BELT.png b/Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/equipped-BELT.png new file mode 100644 index 0000000000000000000000000000000000000000..45a454d7dbe2daa555ec275036b5c2050b375844 GIT binary patch literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7T#lEU}W)haSW-L^Y+$8uOkiu$3FV+ zeCNX9%@Zb6d^K{}Dd8VX;rAX#{*nv3eyjCLdIZbEThiS6Vo4KYV{SJ8U(aKGCPnPh zlgU8ifS_UXmU}t6%ibA1DY#lDc3WfV*R?KB2cG zua@1cWro-TB9~0hPD@y~py5b<%v}w$ITM;6+&_7G(H2eVg56a=>R#S4VlLKo;$HVI zeAjCEv;2Fzg5w+}^*OIUocHJQ!+*{nnEVu5G4=K+nJ)9Y{S7ryn#YVCC(lRaJi KT-G@yGywo#@Q6gBV3RHR(eTrHaVwpf`;* zFL^d8l;T-(-v{rU_i@h+aKV2>xzXh1Mw83TO~gg2872n+rKm$uRR92U91Pp7K#uD; z$jgl;C(=>B=k_bA3e7P2+u%hgBJv3kIddGBbky%bDe6aUk%&kFzLOKq5pfko0D(=d zfy`yrBmVY`*^BlE_;dIbc{FnOs`bsr$b^xfGu-d`rpuGMy3LKOlJpnqj(5=V!S>)as#DES-j4vymdlJ_W;ylGF(-Cu8hv z8}r*cESc@bGT3g`f#YXo0WEfOAYU+BI5(r@rPlnh6N<=*I7nP90z_CaTYC4uB7j5? zK9-C41#CC#&|PMfeCPuNB3kh|M;%E(`r*-aJT|qU6m`tH9RR@7bMs_A6{GuF9c*f0 zH4xVTDJ#|tlY0dK!4^zlQ%m?CaFzfP0qiTCw-y8;jQoNN{scY&R$SbkS-bV~00000 LNkvXXu0mjf1l2!h{%m^L$X>+vRe1aH7TZxHKzB4cH7Ou8WZen z$%@itMd_kA?e$Mbaq2WCTor$LL+%3r0000000000fXPA+NL+H@!uve#bFR41^8x2_ zhHA>B24qF)P7Bj#@sN`tn(Oq*-L}oYZ$k}kfWE&U9;^lG+Sl7_@Ua-psb?HESZf(G z8!)QSC{Eq&-ThHvbJ5H1KR@K>+g$ZL5&!_eRrv*tyM1LtJky~70000l2!h{%m^L$X>+vRe1aH7TZxHKzB4cH7Ou8WZen z$%@itMd_kA?e$Mbaq2WCTor$LL+%3r0000000000fXPA+NL+H@!uve#bFR41^8x2_ zhHA>B24qF)P7Bj#@sN`tn(Oq*-L}oYZ$k}kfWE&U9;^lG+Sl7_@Ua-psb?HESZf(G z8!)QSC{Eq&-ThHvbJ5H1KR@K>+g$ZL5&!_eRrv*tyM1LtJky~70000`BS90C9U literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/screen.png b/Resources/Textures/ADT/Objects/Specific/Medical/mobile_defib.rsi/screen.png new file mode 100644 index 0000000000000000000000000000000000000000..4eac45c0823fce222d9d267e669ce10b67324fb5 GIT binary patch literal 393 zcmeAS@N?(olHy`uVBq!ia0vp^4M6O`!3HERU8}EWU|hnFAl? zS=yZ#gnhND8GJ5gtZO(}$gtz2OdE5;g&(nuJ5!npIv36=@s)ph?X9Wg{Qf(q?`>ay zbN;OFN|+az_|bb literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/meta.json new file mode 100644 index 00000000000..34e30f9a4f5 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/meta.json @@ -0,0 +1,80 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "ADT Team", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "patchpack" + }, + { + "name": "patchused" + }, + { + "name": "patch0" + }, + { + "name": "patch1" + }, + { + "name": "patch2" + }, + { + "name": "patch3" + }, + { + "name": "patch4" + }, + { + "name": "patch5" + }, + { + "name": "patch6" + }, + { + "name": "patch7" + }, + { + "name": "patch8" + }, + { + "name": "patch9" + }, + { + "name": "patch10" + }, + { + "name": "patch11" + }, + { + "name": "patch12" + }, + { + "name": "patch13" + }, + { + "name": "patch14" + }, + { + "name": "patch15" + }, + { + "name": "patch16" + }, + { + "name": "patch17" + }, + { + "name": "patch18" + }, + { + "name": "patch19" + }, + { + "name": "patch20" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch0.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch0.png new file mode 100644 index 0000000000000000000000000000000000000000..2a33d38348bed45ed3aecaf251d7a21158099bdc GIT binary patch literal 4421 zcmeHKe^3yYpH-oWT4Ga$(KIuuNhB$frrOquP!+6E`t}YGCYk9l)BMNY zz1w}?_xXO__xpL@_vW_Fv_5lTU~HgBBwA?5(&d0VB(wlO@XJ+H+yl1@73MrXhj2qq z7i(o~G{l!XX^8ePR*}f_nccJ@qz4Lkd^2Lz&iOBE_H6E^RG$p{ulZ%yon@(2nFj)H zw~Pio=hqj!De9fhKerD2VPUslW8609dW}bv{!wK|Px8Sxv)B>ymU{{JD`Uq#R{StJ zvApK!l{H`9{dvM6&wiV@{xq_M(A`=S^4guhtUYzf_4xN)Z!aG7-<|ijW9-9UU%$TV zz4Y2u^xDh1+s`z_&;Q5rq{K*jpE>hl-Xd#P!}eEjQNbtr{Gg>tt3kZ;e!`@un+)mc zlgWS-nz!xMX7&6i?qWf1Th7aIw+{|ByoGO&i;rwA_x4{0w|i zH1}{LdUqF86P6)5@qO8S%8CYE9WD(`C>XM6dLQ+-B>pBM+iy%asBT{pHS9Nhuf2`? zV#S`L$6Lc%!e3v)rwwKv>6M%-k*HVR?W^5uyc(Wadod@vcXQw6nzb5z+(z@yMyi{8 z18>4tww${1+2~)T!I3B52)@SbfvT4MVDHX=#ieFbb#+Wa&acEp;q_9T2A`l@?t)QT1Tt){qJ+m8L~^$pO`pp&t`eZ0+fy)*p$c@&fse{Wo>Zft2ct(-qpbkA5`I1m+Z0&0U!bRs+tT&StTS+w~ zUY#1K@!){KPV)rhvD+LR?$L_9yf}Ck%u+Grh45Ro;yj}XN@ra(B$vn~2(0%oWtccM z5Yo6PE1sjvn4kbXt+<%yow!u$cDp5RnS^x}Nl~?0Ek!UXhQR;;x@_KbC{jw>Xgh#%U{-X-l$i#jY05*8 zpopy2R6;ohxHBEb|C=$HiEYT z2e1bi2gSO%r(iQQs6-6X6xpzcZ7#ySn zq$Pw(1q5C@$Ocb$(FD)B%q(luiiHp$!Ea8VmL5=x!2^|Q@M1BujlL981H6+An&%o3DTDWN0iZ& zH%`Fi8zPGdM-dIqkBNevv@_pQ3^a+z5V=AL6IMb7>IuPMH9}ip0-*>>sYX+1xpF2u z$69$e;iA)ufQ~>bP@rC|prnbVN}h>#7t_Kz0Lfq!fu~6(mQExq6;6!FY&Ftv=%Mif zrX4ZB&u0Ti7dQ!}Q%B*1Uc#aC9bOab@Ey(osOKh`mA-Rw&B-+@1!e`FtFAe@W~IQa zz;o60f0HZl>B|)D0RMp8;8p2Kq;Uaw&GNIX%hZX+h0nov-`)o-&pNa6IguzRTxjz| zP0caD=+7IBdjFe&ix-A1J(3yb0;Yc(bZO?i9BXtA)Zf z_Vq(q|A@l<9(tyJyt?=EUwoRq%D;dA{&}M%0n+zJ!XmSN*D_RB)6v+zIihw;2Zr?4 z_rP5Ac+lzQ{2w=`nRDNGP-m*G552eu>8(C9R@@R0S}^YCUeI-@;j5pT4Jm;c7m|b= c&(9NOMCAV}KK{!SAbpWRzg~A_P2tY}0yITJJOBUy literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch1.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch1.png new file mode 100644 index 0000000000000000000000000000000000000000..daf55987201458a071d1e8f09533f71e39a71a04 GIT binary patch literal 4412 zcmeHKe^3*577tdD@>>y+AC@&#Db`K0y9p$F1dSv>tf47}7J9b0+5HCgAV0`1Byd`O z^mKqKDpz}V98>HRxGAj+w$h4Ti%OAJ7;L@q>ZxrVy-J;{BCU7n6}9)>1Q6yrbHmK_ zKay-V-}im*^WOWs_r8;@H)dys1jYo4M4}LVmNp085#b8(hu>UfvUwEMR)3c zMc=9Z4fPL=>NcUP*B*7Ychr1X^H-Jb)@6-^O*`M8wC|OJDH&@ACiYg6A*avF&qO6u z9P1w02t2=wPpFDc-aqii*xZx_A**^dv0pZ{pK;zhb!;#i&z710F!;e&FWKxvKZMqm zKdJ@QgQD&it1Y$os$zQMjmT@e>7~zo)Tdqv!Fz7kSg9v8yg9d{Sd?gH)`Yi~ZTA0OdsWpDyL{Y#{7y$Z_eEl3 z_uFmZtr2@;dCk?#t|3WZsYJEz_Hf;P!`X<;x`CXiq34Fr?Any7i_10b`F3Z^P~a#! z@~fVai=MwrgCma|2>y(1L~2$)y1zCcy3AzUxpT##n4~r5j>LOzhyCLIvR=lSd*Y+R z)iI{5#`wEoFSv@ACnjEQGsbDC8Y!h8sOsg32`n14Q zHwgi(fTs|*wZz7eZnfBpOTyoRSSm)mDtxh8oM$j1>2@bTklFD!?j-yZmf&k&e&;pKj zvJRfL+YkYhGTX~|wO9=Ik*WBs4ufGD-o{O`0Qr!*DTfr3$fQ=QbfyKz>&hX>WI#V@ z!I|KYN^<~bFLTmBR}O4^!b}K;p0;*x zUMooUEKQ!ZJRoaUY{HH=otc3^^J&~!+EclEm7$iwKx*xDnGl{{s}>9XNybjI4C(!8 zApmVj#$_nY-~g55atmsv2n#AFXg~mlN>KnX14?h>c*;ft0SbakScs#-Eh@7@DMwQ< zGlR+%W&)*DaLEuBvx1>$Oo7X0Ks@PWVOLTmGouoq7zm{xm}Cl9VJHri7%G=R6tfbe zP$eNtVUlqM$O+sF#n5Di-D#y@Iaw=J2&4{Mp?5Q-tfln-1rNjx95|bxm1g20uPUS}cTs2$s{^1~^a*#Zy{}2M|<-6C@@hafJy>CgDdRe_Te8 zvKjhzhP71uFKuCbkW^pMvse!Lukea|GqnYj`c}SW3F{pu1o4gqNzuL(II0{l-Z&wa zZ;LLXY=r=xACnC`C1-!485Bx71y|8#6fhWU1{rRK6~r+Vs8Vnlp#&C%+(+ItI%l`= zF3Jfsg^)+c6>Ly1SIA?NrAnF|jjIRZ1w{y#pQyQI z1r#pk^#D(HP^f62p(v;=*Z*YKk%~R-7n=I+-rVr|r$u*N%M}CHl+Ran zM(?7=m->0Gi#Kkn|6uG1$>`>QniX_U9oX~il9R)aTptcz^2WPYUhh!0FRb>wYP)p6 zGjzYUbL3*pT0hTW*QLg@5pgNo2R?5;Pc1qjH{>pOg?sNk`Io7#Mei)y-g<&CAKJhFlmuqm#yvExUKd-<7Yt) literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch10.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch10.png new file mode 100644 index 0000000000000000000000000000000000000000..798300f5bb3aee0a84d79738a2e24f2ab7d4d2b6 GIT binary patch literal 4474 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 WmLD5>Lmmh?78vxYx~7D;SN<0)8*h66 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch12.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch12.png new file mode 100644 index 0000000000000000000000000000000000000000..9cb2a1ffaaeebc375478384da50cbd8a69c58664 GIT binary patch literal 4429 zcmeHKdr%X19*?ymgr|bMElVs=u5R85?3O4<0;Fd!VojTb=$I}lkpLh%fY#!!<><-#QSxAU2 zx04X*rc6AZ`wKdmmJD=2di}-DY*K=?C21M1iwik8VW9mQM zz`S+wMjRPgng`T9wvpbW{CY<}NCw0cf+5OcGc_*G8X#8tOOUu$fM}GGAD(jr+ zw)VAA-*-laZhQ2PtaIDa6Q57%eb`)3_qVSjj;dNhUcy2;(T7XcIA7oXLEn0F_9BDN zRiBPj-`-4pB4J(pf~?x1cFIOu;5w$hUT7wn?7qO>e&~sEiDaO$3&2MI&`O)p_D;)?5smtGAr()J0EX+b@MKIszOYUuj zszb7PAI+BihcHR}yYD-LX`O>N_RjktY_ZQH^=)K-O!$4D`~CYHn43v8tsm|S z*&Dh&hRwL0-O?#+FBKy5?{&RVtLqNUe&cjrMCaFaOQBZ(!_h~7tgu{f4()gvu!@>n+3eS~cE`o2U`R!I zBtttLIH@TkZS1`95ClHzZ+AK@-gF3DL|RBIFlE51k_k&@Yjyfj4~~Lj%4+v|0kS7p zvXp6ztO>Dk8gDw|0|D-%xD%{La`zeoE1eEi)3}ohPpei5xb;zj#wh~z-pU9Cp)lfN zn2_QGEH}zhU?c@m!k9^^Ae3S;iOW;RL1}Fai`j6Jg96|}3gAc;3I(nt6|h{HB8BB9 z418BLB#1^vO5jwS zkRpguflI}t7mC2qEZSkkKshNZR!oZQwqmb>BOJ}pYgGcNP&_8lTQJrH9KZ}vHiC9B zV=4n>C6}=n$EQSzq)O#tNoq=}T&hGQV@AtK2LpPMLzReyGPzg76$S%c$}7>lVfmIR<;sSK5f0h0!a5(W3-lo!R|JkFjb zC{y|WvgXDIN*gMA4#j}=%e|tZnOa7c4m}M$S}5-@L6CPWPz)bRfx*hip>hGNAr)@M zY{ewlKZYB2L{9xoGboH0rbsaoFph{xSdOJ&aH@=u!&1;@GD0H5O*rOdVHBOAO{@!Z zkQv2*N5Bq1Y-JVDw zoXKi+nwfX_QGpRNW&YE1fatMSona_A_3f@h{Ehms>dN=;&JLUvVY!fOrkz2vH}1Z? zraq$A&$D4o#}SP$zwVXmGm=(^#YQjsZsn%(gH5*hS?|yf9>@K#@PubtHTHJpnVzUM zU5R&!W&i%_^8@Po`7X~h+0I2*-pvcodT!DaN|^kqNg*PAczT9MFmq%pnaz|~!s;jT-kjv55^?aA;rL9e`h@mDuL z`Q3?xTQz9TN0FPJgizs?{V}gqY{tI4pyZ|3owjGcBe3{xu5BF5IeB-tIWKBX(Um`~ s%1>$y4vT%XqHo%>+@#ztw#H!x2|4o`orwE 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 XUGu|Biwo`ovUvvm5?$5&l^g#9@BDaf literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch15.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch15.png new file mode 100644 index 0000000000000000000000000000000000000000..830e861f93eae5b6009ede6483630196dcd02990 GIT binary patch literal 4432 zcmeHKdr%X19uMdt1`t%_Az0R6!3UeoZr*F6P!b>>(Fj5DN(VOCP1uqb*$oL?Efl4P zdZ(3Yd&6+m&H+7WwbWYQ4qSaw9BVyqsOUN9d8fVB13X&1s^xwg9>QE_ZkW0LM>3n; z{r@nFHpAM?F#bY5kH-tsWodH29pbLwAn?mnR1AXKrxnJ0Hiz&+F1OP{ z+bD=FcTo`Kqb)q1ug7k9ao!my_{qIUb+t<3i~m!j_;lK?!pOR9dhhuK`4(-_@TtQ7 z`%vT?r;1yemTWP$TuZrfw|EQM*&D#`eAqJQz0?h+lh0Mx3%lrkgwmd{2}4~5`5R@uIL-L-g>YosV7z$ zE8Y>_@l@pcx*9D#l5rO^#d<=;FJ5d{FRDViJ)43q{v&Z7j~B3&PER-J($mMH0Wmae z-mT6$lNx`nFt;h^7xCZhzw^es_;s!JtgbbGW=PY4E3I2Pn+mTqF4mQnMizw3c{OFj zqJjpG$F*SQAHyRyMki~dmkm_v-qrqk)`h1&Z(r%qoQV3o=6W?#)w(GIpBv5mI}h#O z4!s_c!TWfg_*>F~hI~HY2~Q~OGpV{B-`tn@L1cE&Bh4LUb6nIw(7<4G6LTwhXWOC1 zh<)>S#j$C3G7okM+e?MYl>SS#yY-*X&#XO{6W#UFrO#epqteFb8GrMzrlE^}55D~J zCzpGM?joTJ4(|=^rguWGJ-=jkb#Sc5XsD@)Ik0e9($&KWL;c|^e~3Izy7M|NepI#4 zn6)$EN%*VYlBne5n~jF}`Zlm52yKFboD7FjMYe2_NiW5;=$w3=PGY-L#9P zoeqe@Buq{Zs}=~rIyB~=-KE!$!#kK!762cJk8mNVP=wg+$V3Z<)s_K}QHOrif-!<7 zMRF*{>2aGWZ5icY6DLBD=5c$M$8Gb6Lz)rFM%jTX19n9xZJDXl8^$d-3aqr<<+lQ4 zPts&*%QLbj`NpmI!Q8kO=20Q zAeAOqB$dcviPR#4O-e!uV+y&1kddTJL5L?n=^PA8ILs6W1;B+gz!8fvrCegdV6jCa zgCz=#fE6N&gymu>u(rs>a;aqk#5y+(s*R;dp$I}ctwEz=}o=FTgg0%nx&;zuC zbb6U*OGesG<+23FCn{4aFo_70qEeAqDjx~lkGO$yGoThZR8%AsOZ?_sVsH=+pqAh& z6#)3|4W-|A4oNl^embI`kVID3k=In2gRi zEv%PtQ)yPfBj5@YsGlon>1e8!P1g4oQ(PVZWiTp&Cr~CpMuSDTi7^(f3i&TSRDOjC zBL>)w$iV0VlMopng`<3NL+2;_jOO7d+yOvOZ!#r*r|FueYf21ENqM@ursf4u061m^nSP$B;SF=&{iol16G&#evNkb1UdVjz3gFc@ z!~o$eR;Sm_y2pPuan$)LH1iVs=CH5j8JXO zOVuF6;`}emXP-O&S$b`Bn|^Lv+m6L?wO__u$%qczZiAL8K8!6J?s&ywiH3r!A9?gZ8I5dZMzooEa!+dCDcvR!~)!aL?6%3(RewFmSl`ZhTsZJnQn@z~QCRyjJbe zqovpXZd%Wet9|(|1u5IF&iST$rSe}Lvkp~+pa1KVYipzt$$=+|ir}!{cS6<_HF@me w;hS^M-u}wId&RoFg&pgjY@L}Fakl&T4DXCwQ;)i&4-moAY1e8FzED*C9}1R5=>Px# literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch16.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch16.png new file mode 100644 index 0000000000000000000000000000000000000000..8cf9b7de9155f41b05f9a743f06d9158f55efb1b GIT binary patch literal 4367 zcmeHKe^3GPv-R}L~%^mUN4(^O+4?H4d$Z&hRd&idh#qAz< z(5L~c6A%f~{8S?cij5{3HQK~z3ej4V;E=Q(YgC#VCN{CHKWoL5V*1@Xem0rOFw^|U z-t4dUeed($`+VPfb6am+l|MacUJ?XB)6FJBA-KcBIV~Psxtf|g;C8acR?HWYA=n@A zIaxOY^VNO^X2Pr!g2ER)R{hLV@U#;H4LSM}#l5UQ?v@YgTgx(9>Mfz)%_?>pPu{QY zJh^Mb%!HoJ&p)}s=D)JS5?8-Tr7=FJT_$03&Yj9`elen6`a<7ezV6ldD&>~jr%gL0 zZ@gu_FnHz62W5G!ubtVRS)`uwN^@`I!rP9$hf6yTUa#ErY2vHJe?8>;y8Y6n!@r4Z zpPyJT*PaOt!jYiKzHaFL5&dnXp z2IR0~?N*)X)UvG8Wve?1pUnD4q_4S+xL`E?*1WHHYI4W^Pxfv2u%qmg-4B^7D>F)y zQ`aqhVt(n4V9-Bn>iaX&*34OAoRfWPy}8ZUm~dt=9J*22pPIIU1HXHOT->3-_$N1Ik?jafyuEw?xB z=uY|)>G|2wo{RloNK)@%>&A_u{qwRH|KZ4j{+lx%y`OQ6 z4it5LaOjzNHdE7r|IAnys+hfGN$+lJ)>mr}U3;zoKA3!D-meGOx-acd@A@XCl%2nR zf8yDvTR!`${PznZ>oebZ=X&|=2mQz5QgW`gJcPHj?y)YNa>I4UQf)2<;!WJM+)w~d*=ASyFVZ3UwOQ9!MTP&&tm`L!=UP_SWsQXmX!qM^GHbA z=U^mZj~|pB1Zf`&`$?*T;b8~kV!b-?jpLnSn5A{%HA)L=@#iw-tf?lztgcyQqiQNB zoEATplcWt30KmiWBpmj*y&MtNiKDm#coxJ`F&tIlD|F&wixtlG1sGT%QAkk47-p+v z;+!N{8=##;p&@Sw0=((O{#b6yCj?d$_SVrKz+z<s|8R-);Q4Fs5v;EvNC&ONFOv@90F;G=>nVlLnG!04OSx6BtU!lr~I7 z$P|Q3^9U*@&@uWxnsruxpSI9Gur{{oCYA&KtD~Y=PpxJuV{frnHydpx7>>3DK~k|4 zII@bNqj3VP*b-GvdR+{dA43H@EN8!?7${PvCTSE!oH!2Z2~(&M9Mw1xH7QrBlo+X! zY5oVD^Evqt8DR7-z$4%a6ljzy_~D_g${rt0sGJe@0Z@iuC^CjJv2-X|sW35yv(-w! z#fLVkFlNL6yO<1&E-(qDBcpJLFJb8XfXC22{D2++^rVvs@jFS^BwZ6?U_#21)ip`i zgcz8R@?>@W-{?vj{g`6B;2%&3d@AJxdoO~|ta!)c`3C44;TL)DSHA?3M8BzogP`Pe z;d}tvwnGGj3B1{2O!zWs?sQRB&fPy%0MQAvL2oNQMcG9^+GWpZtlOF@G8gpjOuyUO zyzQgx*F|g}^zxNjb6bk~%|F}2>-uMvt|}~P)Iat326FJkxkZoG)n}ZKU%avX=3hG3 z)vwtp>RR5=xBa{q6%K9ZK*Q&Qe}5^ZuDwsx6xkbRf4|9%cQo0>MRBU`?8>PhrgkyM zBClz#?OIk?lHxLTePNoO*pd}F&{3-->=&AAYimEhSl@kQ^OWM8{HD~WZ|Alz%8JEV bfL?~6e_k(X>(T$M5dw$VxXN%~xxMbcc1|x6 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch17.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch17.png new file mode 100644 index 0000000000000000000000000000000000000000..38824282cde93f2f22a7619ab6aea57fb9359f17 GIT binary patch literal 4532 zcmeHKdsGu=79U!92nZ;kC@4duA}f$~u*Jn#JHU*$f` zzcx9RIg{fI@`=ybpS_XXSX`+hTsvoeJg128ZX9*zyEMG3t8T)a6@{6r&o-yk3b*ai zAA9!bcuQ%@FI$>FjSNqEB{=4wYP_i|hdWTY^DbFlnf$)`W~2S7@$%)WXRrP|e&mse z56(cByf!5s`DEQ4Qhj$-Q38*)$A$7l-+!*T+G-bt7@ zKBuOr$Pqs5NN~vfF>#tP@$IGBO`0{n$Dg@fZG{~{A=R0itCj51tqW3!kz?4Wnc{n^ z;PQ|ZXwN9=Bg!leIMrSh9G%-{RJ3+oshzkjY?jXx^>z8?$kFXS?GHCMuvg8;CEaFqvPVP)a#>eE!p+!+H`nlz}|6<&z4v&Zx22EJTQkDU%GwxiMOk+-pW5S zabs!Z{{46J?@w?Xcr|d^?W!1gRqbYd!Ygfg4|R**yf)fz$APc+brg0&)E8g=6nX7h zNW_%%#|Mu$bsc=Gt7BHvq3H9goF^waChZ1YSImI!%F@juOm?e~r0hmo=(ajQ+d+`x zb+>~w70?`Pr1Kb?Qqb0PNB}dGQZOIap*lx0ozJ9|IO(}1vkj(_0+XB)ygtoe;U)lp zmF7s;ZME1~!mSi|a0&3ti$wz1qrw#^1z9>hoNRZ}Feb!=D57yQ#S+0Ze^}w9%tVGd zr56IcDFyi)=O9EPm&+w|NriT2o=7a0%SEU}B#|IM17R22IMR*S*oizu4~Cj%O-{za zF?JiwW0FRD5vLRgz&hL)pVgt$^~2lPUKRi!A~)#}iG`@hY84H%U^z`O0O<|rH!WBL z7*bIN&Dx8cCR$TW+qj7XAt+P7y`#u!@uWkUM6`vr0#z1x6%TTms@3WHEqDs@7^}l$ z1;`$x$uZ^^WDSaqU-6_fFc4tgk2^@aFL#eJ(9-D$wcS+2ho@C51-yTPvYQx+@H~<- z87h(C6k;@!NeE^(nh=>(j3Y8iisEKUj>?n71E91vmLqK@nuh}5LI&W7QB-22B{V`y zDG7oZaWNvpX)|KPr6`t|h|{Jd=>Uj1P6l)(X&D$54@CheJSmAb%TN?CNpLxWNiYmC zVu>^&BPnr`F){JdGY_!=EnzC^b|dfVS)d}9#PLs&7})_-g;gwjAxi&*fSOcY3fOVC5vgw z6DPpxSu*95wmcf_AH5CRCue@68Dyjp#}Y{?l8EDG1WUpw&`+Qvq?kl3$1!t~N!&wT zKRRnSb1u?JtMUMkfGg0T92$iUVGc0y7AR@loIi1qjU^w#0`bOFOdPF{-NA-aa>dMO58N_nWehUj`J z23|^esJs4eboswHOwl&*56A_MN|RgN7r`;h$2c=p4L#?-8^8X1J&+7{q%B|}C?J%- zyrAlu2q5(3v^tINP5-eYA`tuJ3+do2O={IDL)Ot>KUB_47KfEbYlw>MJr@=gZGf*^ zG~V8Yw=aw?UGeGay47{v6^5K+4e+gu_RA AIRF3v literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch18.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch18.png new file mode 100644 index 0000000000000000000000000000000000000000..3238604dc6d928aee77e3b36a4e1721fc17b2450 GIT binary patch literal 4513 zcmeHKdsGu=79Yg&MyR49NF9T#<+!}NBsa!JYgl%@KiOHm4 zF2_d0w2Lu8kn3x+E^d4y>~pTCC^l}nw0r8cGD&aTfwYkAg<9vw6H`s<3(s=uFC5Mr z?|tQ+ci)_^x80ks^(-uij#0m&m@8yrzi5ow_Fk!c_Rc%KiOT(6*|IHvRN7OKUeMT6%6Ch&&du(5qW@2QLqw)aljvxcmtF&8)4* zPnHEAm{1(f#obA)Y7y3F3Gvw-mo}AXKbw%asVRAK%gRfi7R*5w)Jj&nK;@5^; z`OT>-Uw3^g3Yb{4GvGS275?3?W|X|;GsU6T<>!Z1hDFW%Tg|ktj-c0{h162^l!i}E zYz)&UZJqWsXuWgIq*=3Wmg%P6Uw7hR@nZP6e@)ow-gTL+l@l7C2drQsHdOjv`t9~_ z?q_@+S-K(o?AaeO9=&3#^$du8uzfnd{Xn^H_L%nc$J(6LwW> z&e%A{YJqu7(qMIPN`V0A;eqv;ZCdRhyoK#&0q`Mmkv5T7h>FZ+(QprzQ)dH^{ssN4 z2df8DDoUnVtHW-j)!DR#iyRI?83+As4tu6M9m*)8Gift0WkFQ&3n3FVTHT-rPeD3k zwz<6k*)LdfjA@9h7uLpW-02Ko2yh?7eZhJlcegRH(rO8n)#%`tr%@>de0+kk8X1ak zKZ*@Bips<|g3E9dA|?4JsZ5T@jTCB>$PFeGqlQ6gEG$P_j5H4gz=aIJF_<+358rL>&|y~v}AQK3ZY*6@WPKstb0 zlJ8Ui;Fg1Ihi{T2#3(Y1GJ&W+SrNZu3}mYi z{TCk!x52P22Ke>Kz}5wJLebz>*v}V;{Y!rO>+nm4fZ@>~BjR_Iu2H&1#K4G*N4sm3 zt`RXXBID8S`oGcTH*}byE#M!J6C9O%$|{zCW0sd;L81zJ&VNhKzrO=Wd~Hd~SqSo< zz+WEFo_(P}=*?-gYVS6`DS@G{?|o_n5)Z9L6{k;aeE6<7Y0To#<_+ovV`ZTQ?;r&} ziH(2HZoF(Rsws@wmA7L-UcBx0?W?6b^6*V(Upnn`S$|=ksM3?>=dR&i3M8&L}QF^Pa)CsUdkr zerS+fl#&0{ne`w2At1HT16uq0)&*@>1AV63_J3FOGIYH{@V1YY{Pw%3+KxTg?k%5w zjz+$Jts?C(nJ}|@F)v&8#zozejsJ9ov_^bP4!md8^<04+(~SssI20 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch19.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch19.png new file mode 100644 index 0000000000000000000000000000000000000000..27b970cb1179ddf5d059fe176da45abe97769c09 GIT binary patch literal 4436 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 D(6T;7 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch3.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch3.png new file mode 100644 index 0000000000000000000000000000000000000000..5f5a947c23b8ec109e8c70333fa087a34c2ca204 GIT binary patch literal 4413 zcmeHKdr%Yk9gjVV7*J7Ao|YvlXwOY{vw7|jPb2}NhKnJd*lKZ;-Gx2!BD;`)B6zLV zb5yG0w6)xb4iAgMc%C|X=t1we%87{Dc50ETr4M}cj>mX#p6AiuhKFH#GaY7n|B=jQ zcfY^y_w)OHKi|jX_l_|mZMHC4C=du{>(jL+aEJISC=mRz#l=s-?W1CI7H1+nkjw3) z85;$0MJ@`WybLW6c)RSzF$nbxMRyo9<@x1cgK$Jky-r z>58dp-N_!gz2+UEqx)nYbn9kfUEATrwxu1vELMI0_WY;2YfP6%PS*XQrLl4ShmoKD zb(eiXbW`*8sAuhwVf(-QTWZJtRS8R!4~H7Ej{fmU#05=b=xao1J3jQrPYSk`pYAKm zO3VN7gOd##+mc4H}GQ*8+X=~Oj3W~e4c2jWrwxMc)V8+jwloX>rC1pGs z5JP3jK~4I{t71RN&a5&0DE8k~J-;}P|3#;3)z@bQ1lKg&tpDk!HQ6_-{#*UqRo{B1+E1FzndGnF(OeHv3#IZe_Xe3=G7NoPhbAv&G};WivH_+4jMYc()N5}ifG?*{o3v|NxIk#=KX`aD%*v< z@Qt_5-{>0tha_adxg#NeW)46*mo7Q@c2HD-*|=+0WJC1wgxlxhhWqEf_D%RD(!HUj z?Y**SbNYd}ujlUY7pG*VHV67*ZqJC^sMmR|=KOq!+uX%;F5QwK&hJCPlBW z6ef9b0AQy$0`l5z4i@)nL_S;`Jo93S2=b|Lc^Xlc!3d=|-4rAf%ftw*^D>1}(Mlnd zCTa$YPDK|NF`D!3^ZW2$iWd_*ugI5Ax1H@ z6l--eE{<_JARd#jI14z9NCeiQasTWtgJA;R!H%&2_>g!Bmjo3f61!dEZ^3f9LI5)6 z(6?H!X3(S(6U90U+*V3gNIAI0{t%>f!roQjw)w&#trE&c*?}qxc10&`nWi@wCoFgh zau~bIX9dWfq{%V#OR^^U#;^Fo@plB6PvB0{9*^Cp473aeT|nxbG@X(45V9HVKA!VgOCU^&8JrFbX+E@l9Z5>d!x z7Ap#4l#&7v6b-8hISnJ2TB=fEGFpaVeh_cC8Bmpk&EG2?iUd#=t3|4|APN{!E0wSe zqouHgMhTe2lrjX9Qz)XKd{CqnPj$NO1V|@iCvqr>%aP+-;0ec*je3npDn?#Pj5dO! zfdS|N#z8tg?8_xHW2Z7Xg69)es8v!-t&&R-1u9ke*}qA-Sx}2SDvF3Pna`Y03=YBp z)DnE90sx;JM1!ZeDS~sl%}%FHBjTNcc*}`p1869c;0P_jQ2-Q?VmON6Qn?vb;HVPE zq^}|vj`-<2Nro=^U)p^8KuM!XPiI)Lf00i#+EbZS{^;B2tBvtB69oC%0w=7aA+SUt zMf&^%SffkUT*8qGMJ)iR3?>SDuSdZ zqq9z$^AK(-IS23vxB><0;|f|fma65G^*y;1p9er0j3TffWg^K~uo8Y^j7OU!`7b__ zd%_(=|=klo*(j@^p1g(={aq zrldSwUH><_gf9-3RQg;|gX1UTgu>wJG7=O(W z9IcE5!kL`jpqtq%jG8?UYWeZJ8X$VC*Cv~@KK`r%&1gkJb@xx$m#?VbY!Po=a;%m5 z;p1?IF;&;Dd9*t(>!XPNr59F<-DNdp`_C;4DvB>_y?kvj?onySzS( zx!U>GS0CQD&woIEekJkud(Ic$GObbd2F06yez9Kv`<{(BqCw`OO?S_4*T zf7SbI+NS2hM5}K+JF)2GEkrZzQOGIFuIw<2`jKD0fvn+%8#*oU6#TKccjo`EQOF4*Ipx0$+8&_|A`#&%dOYQ&w literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch4.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch4.png new file mode 100644 index 0000000000000000000000000000000000000000..6e0732ea02fff7103f81503b2084bc608ea11a80 GIT binary patch literal 4473 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 WY#KN|`xF@s0r?9Q?ai80kk zeMBOpX;YzsEzp#z(I^T&4pMwIh|xTKC9x#dq)|YN!AOvPv%K4!)5AHC%#e{O9^Z5EP_IQKf@B%v^rH;MZAP+yic{#riBd9dpBWhs{WtNtiCO zlQ8L_j1c6xZqX@2TVcPG|Jt6Q%oaY1{;)>SudK?|mv7U$&xL21rsWNs%o7FOB*A?ix z&t7rMTV;1KRcE*;B0BckiYNEJfj0PDZOfkd==Ym65ajbJm6)j0Bqk201CprRP^L&} zT^@ZlcXe(0^U-&!J9h0wuc_5%H1%0i18VnQuHXE(+T6=E3p51lgDcz$k|LEhGPvnqC9SgP+MRfnuDD&oHH{hqp7=jZXI2j8s;sha(I z6s_z?KG4Q)E?~=+bzj_CrhR{Q^47EIk!|ZPzE|>dxjH&Szw^PC$~ONy$fXw=E?w{a ziW3-q$Yr}vw!ZAMIRiQ-`gGhvnOFqgd^khg+s5*)u)us z{~`EgcYZ{C{LLC&^w%2>-Ftl%d@$h1+@t*)%s2MWK0OeaL(SW`f5yd^%0K@)?@Da- z#;C@|&b$XP_NJ!-6TT^5AScoONVdmf2Ym-Y@@GAE z49_QN*g%>ntAf>aqL~F#go2eR(sH%-L^6*`DRz*ni_`RYaXv01SkET-%RMLnu#hwc zdn{(F6ZI%qUR)GBGhz-4_L|W73Rad@2PfJbBrIeL*<3{Jp$hq|1b`xhl#_J$z&WZpTp-Pzyfg=S!v9JSe>y9#2|)>bm9)mPE$53 z%wS>$n~PSkSU?XC$7iu?wIlFW=MW2k4~_@3b9ihn$711(^>EVaLI5%p(2sgJ^a1LoEEx^jlUj zXGv4WQL@Ix#%R3hj12_1kKm589?sos46L+TRAs|mOn4fVg2k+l5;mM7Q17Ei$i)ak z%0~xsUNM^tg zAy*_p44|nH62rw(AzvgSx#Sp#l@1DYC1xHQ6$3>8C>cgbq%xTZAth205lTc-1QScS z2*KwHj07PhB!s~WMc`Ps@&z&(Umz5UB~sz2(Hhd>1ii?h^0;ilpoS?73eo}8Voaw3 z0Ivtg22FI37;SUtZ8o!l#RLU2o+D~4*iZyUV=9a$0VtO*KzUr0FVgeGC{KzC1xvXC zlsm@WMo`A0|7Fc=A6PzE^c2bo)-Upk2KUrzvS9FS@YPItHxmqdw*`vfgDE(%LXz;t z39trLcphdokzjrdHSDmQ`jKW37ziU_G>QH+F_f`5L&+yJnxtz&3{1#) zvb+9oboq}SrbsLJ2jm7vB|}3^5IAP}8lFp5K?BUU`qZD^0FoK@lx!yi1w z93Y%dYqaX=cl@6Y3SIhAO+_a-O9yIHN_|%AyTxf=`SAODC0u6 z{or1-prUKf7YRA1Qa^gfme%p@!w>t3FrUuulOgYY8G*mnm7RaBJ>sJmgCclAt12Q_ zyxH)@clG-ga^kLTs@THty=qn_7e4=BbU*jhEN`^&RAD<*Q8%%d33ceZNTE(eU`T=1GyC z`|z}kPySFZe{AyXXo#34Tf6tmY+cvG@3+yL+(Z9?R_>caR#X zMn`QlN@J&?B%lG3_+S(zkr*Wj8ccA|rel4M5+XHrYEWxKtR?AhkM|@q9cG&UxSM@_ zAD`d%`}uyqzuDbxS(7y*A|V2Tpc$rYLoT?&(h(K{&O&A7BXH@cv=)fDln>@TZae2- zVX=Z|Vb;&tA;^EtX-S{e0f&9~WJg;1TGe++e`!z-rq>nCuHJ6;eHvF_H-7ScMf)dj zZJrg{{kzxJt+MictIWaMw`z381*t3LT-v3M<-7k-uT9z8JD8<^Bcxot^WoX-H|2+p zS*{NDb)GBAtb3>PPl@^3X|M0TQGfM)+q*4=?MJ>T+j=GZje@@&bwA#J{d&vk;QjN% zbLOp2ga+YyZ~E)ITk(CbtjgcD%+(b6`2Dwozl^-{+1i=VIS&m%K`(O|85UDU#z;CK ziP{Z&^w}LNlg<|9HRi5M`bT~5?tSD{qw$RCK*99L#={p6Z2qjV=wib{Q(4*U!pNB~ zr93yku-5D4J}ZEy*lJOLod;kIOjpggGWt`!p)_- zj9`k3=3%cyDlnc z)i=K``SYUsjfp2td{gpp0pAuJm3Fs!AyHk|WJ#IUU;M~ivA$@Uz3^Dq-a)m4{0#5ZX zb~4wHISc`w^s*9B za72ZH6QO0)h@GHyjEZG2m5vz)@vMgfT}e5{MC@1HnidmF*6$ca&;bgkSq?ak=*qFrPphP=x05ib3 z7`IOtQ&~ADnBuEEPOG%vy z00MH54VmF#Dbek*y4?=FObQB?JV(`LFi;F7QU*$70Vt+Wk~l^x)K*+W;sl9lp2CzQ zHqPG7aQ2G-Wi5>loH|tWY)$~{R|G^uGnL1d4LuD#I=H|v!Ej(KNQxdxL7>Xnp>hGN zAr)Ohxr$k^e+)P5h@AV0W>9G1Fp4g? z?V^wJu<6BsN5B7@zr6-TcT9$KYeC1o*N*P&z@m&rn}Ty2WB6cykPsACb7r%D zT6C|;>JO?6`q&G_HRmqgJNNdME9Plxt=;jR6v`p$dKgT*WJh0yMW{9W>N2IOxG zHY$5+GYl|wpr0t7Di(=E6Ajr~Gq^*-6%q`7xys7h;Pz3aC670gUdZin z*;qRR@fB_cVtlMkB=TK!m=;ayf-xFoH1c_*zt-}myoH#=_5%2=)69&)2$ zAaus`H>Mm(HMjqRE@V#FR?pPO*GGlVIKC;h;XAjuc-HeXc0$yS>Gfjrf%tz6H z80xDwYqGoMOgmAK(`;Tc?MCC(O*@DSI^D;H-FZQw&8?sBUh`>l!RJkhhSJjLWucR* zQ(u_AtiG(w9TW6nc*Nq#$-2oYeJc$+bgxc0`M~GxEghH?u`Rb{n}%DpJ3otvoXp+J zmEC#;S{IQeI`B)y9oi-f{j9GnJfWc1n%+HlsUhjz==s5SwO8?$_}ISSzS}L$+~wrj zz5AOY8lpDF^K-B2+q$L4N~L(}tuyO48$XNEuRmd)+`atF>2<$J*G>KY;y9YCeyTUtM+}raS^mP^x)J(5320{Y>hhpW7slw`pVX)&-}LT z^0&obBsH##KXT+|asLeW(O-mRT(3*S>l#{2se!#kw~ZBrS7Jljj=tYMQ2K8X{ii+G z;;&qZhT|e3 z*@;By&-vUWRl@L)l__GK8cA>GF$u)d8p&d%5jDCqnPN7((!=CbF0fFQB@|9ep34xY z`v?HwV0aSpIqXi3@M$D|Tmn1`VnhP@RrnH(B+qDqGF=`9!lalKg>^o*TrSBFL+Kvc zMwqo(!w}$2BPr&2H-R8tuUG0-NL`*HM26!yg31xO90nRNSK;JIAME6k1c)IFEyGbB z*3GjnCnR8!R#zFXkx0Ng^vFMl+h`ntcXGol06q{O=|*Hy6md9^(H0!9D+eIM4*jGB zX8}!$m>JGh=Ajr}IpgG$Mnlllh`qbaWA}$cQwU>c96*%=yUNCFsW%u+BNhS$MXbZ^ zw*q93(d1d%W3tBhCan0w8SMx#AHf}?{U~<7GSD&_39XAN6WlXsH4&C@NRUp}K^8HH+gapa5C|vcnhY9=T#7!HnCv8P0|uZ6 zSSRiBa*vlRtb@tnNr6w93Qv+ic-<4vFM!3 z#(PN*Gq(uv2)F_T>gNjj)o`j(#_D^E86gjVGFXPfqbQRg!@(lL#CQ~KI`Ut9r27>{ zjTm4zBm<)hOhRO26b|zx44t3xGn|K?aR&fBzR45uJ5JX)T~EZo6Df~Z*En5I#K03N zk5||KjV|%y!xZBL|A4&UsI({gG764a!Pe*XTG5ZfxAFa*zXy`1-P!q^NE8|+TmhnO z^>IKrfj1a+6MDo`CPu|-&VBO%I7_D*v~w+aUEgn!t>~H)p=)@1OW?j!K{0`QJh*~0{-)kRBlzn;lf1*|b$#K`9t%XgulWW{|c-npsyR8wEg{E!RhCMwVaD<4kEOO5Sb zc~X{AedoQuy|+8B^XA4&O>OxVGmzYCm*`c8D)OR5bpE>ajqNt#t-!snNxn+F*#_TG zBi;RybDxll&_DnBotR4nOOKQ<|AG3;KhX=)$3+)o~-Z>mFShnWH!fO@w scXq|Uy)gc;_sYWM^ERBY?z>MEY!7=W>!~jW1b#&Z-2!dfyuzCQ0ChKAO#lD@ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch9.png b/Resources/Textures/ADT/Objects/Specific/Medical/patch.rsi/patch9.png new file mode 100644 index 0000000000000000000000000000000000000000..198f94dca32563e1a687398ae596bdb7c3859e89 GIT binary patch literal 4423 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 Z1n&{Geuz8x+8qD@002ovPDHLkV1m+F#83bL literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/green_bit.png b/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/green_bit.png new file mode 100644 index 0000000000000000000000000000000000000000..4e7480a8df9f07bfa5bc00452572e886a2256d5b GIT binary patch literal 108 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}YMw5RArY-_ z&l&PE81OJ}uzAdH*=o3Tlb{77Lj(6LliI(38E#}U$WLNnvg3HM52%B|)78&qol`;+ E06_>G*Z=?k literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/meta.json b/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/meta.json new file mode 100644 index 00000000000..b5a3a5afa5e --- /dev/null +++ b/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/meta.json @@ -0,0 +1,41 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original source: https://github.com/tgstation/tgstation/blob/master/icons/obj/vending_restock.dmi @ commit 014c44ef6279beb02a5f3e76824439fa57181c22 - Additions and cleanup by @Vordenburg. LessLethalVend by @|Data_Redacted| pottedplant by @erhardsteinhauer based on @minnie6969 work, NonlethalVend made by Slush modified from the NonLethalVend", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "green_bit" + }, + { + "name": "refill_lesslethal" + }, + { + "name": "refill_autotune" + }, + { + "name": "refill_pottedplant" + }, + { + "name": "refill_nfsddrobe" + }, + { + "name": "refill_nfsdtec" + }, + { + "name": "refill_nonlethal" + }, + { + "name": "refill_contravend" + }, + { + "name": "refill_civimed" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png b/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_autotune.png new file mode 100644 index 0000000000000000000000000000000000000000..92770e83842bfba966cb19512e4a37285a1789c7 GIT binary patch literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyEa{HEjtmSN`)Ym%P6qNV1AIbU zFFaE_di1D)k?!>A(?dc+X3H^5Fkm>7#*mVd^7r3wM@Prn+S=&oXhmVp3f(#L7+!TU zoOI)lmy(h)`BJqSXozr0kY6yve+*z}e@7Q69p>rc7-G@;c7h`p&@n8$yQcs9zj2`p zXD-*=+0HC{mM&i^muZ{MFkgB+f6B3w(RWNn6%i>@w%>+;>$<%(iSZT<;W&;l+ll}Hc=J1GiB1HB5QT(^!L5bYkyq^W z<>9sV2a_2C#5=sXgWaaS-mfO`x&6ABNs|~dV-P|Zb5~EG-1+&ps!2>n2kei4yk`J{ zzY73AJJ;vwVqBZo5+-h1!E`Y$E-as`@O{6KXq0v2so9gOs#a2lh*X~E?L0)L&NVV) q2*a?Orx*YpmmkK?Ef$OA-*5uM^mXCUHj6<30000Ih7;; literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_contravend.png b/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_contravend.png new file mode 100644 index 0000000000000000000000000000000000000000..6ad63d1ac6b6f6c1cdcf84d79133a834e1b12083 GIT binary patch literal 817 zcmV-11J3-3P)4Tx04R}tkv&MmP!xqvQ>CI62aAX}WT;LSL`B4@RIvyaN?V~-2a}in2u&K2 z6c<1NmzipIL;+Q^ zj8r@(W^*fI;1xaaVF2Tpm6)j~(hC`Q*4I7tQr$&(mUrKu)vM%92KYqcDANs#c%689 z)6zNb6NgwyQi#uq#|*k4@gvt|m)|%S9Ts?I$jGGTh(p9;v5n<6W+g)S3h7rdi5=cUXj4C!zhJ^_28Yw1HbRP5Y4>|rMxny!} zfRSS!6{wILKlmT~o~>D!oN$wZF`)Cswm(LIz%J0J+4lFbZ8uH;|1)r7bZoh}++2Q$Rh8n49 z`%bhWbRv%2JQmmm#qIZ4RCQ`I?#^WafK|^XSR#pqG{eNrzF2#>3;UPtJ(R=S#J6n% zHP6OHOPrm`fvvau#NI3;%<}YG8>&u|u@gz8av;jd={nt#BT6|~8dYEvEaC`rFiySO z?_sDqXWfg$S*aX&T;7@L>-GwbcNBAgGR!+{eEc3``57>>$UxNchW1Lm#E%0pSf0&s z78!_hAn2cqUkvjOf&D=E`B^hEkc!;Fm5A#n19)Dngy&UA^&|T85|iSAV6*~sR6RR! vj-JF+^~J8)6adi*&?;ydiAy9B$(;EHB{Pt|)+iPh00000NkvXXu0mjfEX>4Tx04R}tkv&MmP!xqvQ>CI62aAX}WT;LSL`B4@RIvyaN?V~-2a}in2u&K2 z6c<1NmzipIL;+Q^ zj8r@(W^*fI;1xaaVF2Tpm6)j~(hC`Q*4I7tQr$&(mUrKu)vM%92KYqcDANs#c%689 z)6zNb6NgwyQi#uq#|*k4@gvt|m)|%S9Ts?I$jGGTh(p9;v5n<6W+g)S3h7rdi5=cUXj4C!zhJ^_28Yw1HbRP5Y4>|rMxny!} zfRSS!6{wILKlmT~o~>D!oN$wZF`)Cswm(LIz%J0J+4lFbZ8uH;|1)rw;7?FqKzP;JUGMhFE0=_i{k_x1YU z4RAOdj(_4bXT*i1@nS`%IU@jw;Hnpe6w09+31#xaY^P)k_L!0bp&&3aq$x`Z_W z^X5?*qMiv8HGbw&dP$(E?PeyLGV^E$JS9*sZf2rw3cj+60bsmXk^4P69FCvh3PJ6V UC+MSd82|tP07*qoM6N<$g5MfYX8-^I literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_nfsddrobe.png b/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_nfsddrobe.png new file mode 100644 index 0000000000000000000000000000000000000000..66d879a984a92dd4367dc939fbb3274539feece8 GIT binary patch literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyEa{HEjtmSN`)Ym%P6qO$0(?ST zLm3#39z7Zo5;A@IbO%F5FH1%b50C#d8H@~dGs5K(gJe@uQXCx}Yiny$;^U*EqZ$4) zoH1rF{?8yM&abT?BFN7xCd@CREU#;2Vi#g!=5C^{AW;zQa=cIRh{eZsKwIQWg8YIR z{^J8*ETqhVDpNgO978O6-%fDkJD|Y9V)?U?Rqw|C`pr|WO%}T}Z*GOb&67$(xpj*d z)!i!=Of~bgcG1n`SiIG1h14lQZ$_V<->X)eH`H1mR@S-JQ^PUC?Ld|NF5#|(ECZIf k#OV|2mvFo8`+1J@5)a$&Rb31%Knoc>UHx3vIVCg!00P2$NdN!< literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_nfsdtec.png b/Resources/Textures/ADT/Objects/Specific/Service/vending_machine_restock.rsi/refill_nfsdtec.png new file mode 100644 index 0000000000000000000000000000000000000000..7b10539f133acb8bcd12a351cd601efb6397b977 GIT binary patch literal 352 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 Gq<;XUh@@Nq literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/broken.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/broken.png new file mode 100644 index 0000000000000000000000000000000000000000..a6e60a2352cb5961c0cbfa32b188da68c4d104d2 GIT binary patch literal 623 zcmV-#0+9WQP)qG(9Ac^^fq&hOEA*X>O5lv zU=AX{f+GOulu75coYPT~VK7=E)@R&_fF}VK?CwNI!V;l(ntSa2`OWJ`Kn41&Rl1;s z#%jP90d#7Tn#LM1flP!nd}}}zZZ8o+QL+j?G{EM!4iT(`I2Ow>TLY2MDcQXWnGs-} z=!lSZ4nPf91R`M&0adzriIBbvYSw^>(pB(X2UOwKxhJ3wsNgFNWqMeep4BE~T#7{y zk-!Rw_`PHJM#py{lGOrmjtvO@7r~f-EEVZ`0k8^rty@)@hF6`Z zT_FM50D$fDR1i7BIrdnD1n7p5#(HX%)B~)27lE_8n*eDtz5&XFI_CdAVHf}a002ov JPDHLkV1n_B3^4!z literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/deny-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/deny-unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..85dcb639683f9c1c403cede3c814cdfbe54b58f9 GIT binary patch literal 780 zcmV+n1M~ceP)ssnk+&(om{H|3HTdC2^8SgAt{W zA*F+xq}-??s9o%^1jo(cfWhz@4fH$9`7A^@ZiCN z2M-=RTvPZ&Hwvm!bvxM0;pe_LpFY<0{rvsMRQGN93*QT>ssGVHn5WN%$s`iwi$&M` z(NM^ie{yot^h~>GuwY-mTYeL1Pj?rYL_+W1KRIS;al!W4p6)IHc1v4V&Tj?b1jq<@ z`~DpOON$GvkH4t4&zAW5K;!j^>a$9O5w-g=1{nGC#bWi>`hAvj6*l+GiMLHan}3=! zE$Ldo?$ML#!@!0Q;Bor1j{tDwa*Wazr{Q@z)G62ecW&O&ucM)m4{iXrfjv{LZ~}h# zN6#<(qjacKL@Lv!8l}^Ea%wLRm=e(FOWX~w0-X?EtJ(+SuuZGnRbkpSaD z*K7iUef{8Ig2(_PztkEqS57lyBO*sZuNTEpW(|l`rcuPsKH4@s}fLy zlL;+NKqDernSdJXOlV00V*DS}xbRqs5bYdg5^#W`w~Y(0l?ft9CBO)$IEr?RG6^uk z>2nnA80Gc>0s$fs1kB@%#p5ChTi6)@)+RXdZ_1nojd85Qg@`jP384@GA70IhhHZF4 zE*oI{9P4T>HftT~6bx@T@?XZ)oCehqxKuwDkE5*R^>$=1>UcCY!qsU|TQPN6@k=GZ zEtIu9k-=zP+YMxn<8Js{@;?Aze`lLaV!P?*Wet$!_u#?9^}s(#hZg1NX5sq)0000< KMNUMnLSTa3QfSQp literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/eject-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/eject-unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..5f71048acf2c5780f236958f406e5ed75977de43 GIT binary patch literal 624 zcmV-$0+0QPP)DU#7_gLIz0@2kE&=X*lWcY5#cx%czld*API?+ZX8kw_#Gi9{liNF=3lh%RJq z^}1|ltBcEyt;7A6bFc4ZqpfLL&wXX@u5IO4t5s=!z~}484~N6dJwu|-+#atipMg${ zIpH)GGtSFQfZhB;{=srSPr?^~8Nl}L4gdfokK>TeX6tX4({Prm0CY&)pz$#V5b<+G zmfx2I6h7wavy(RtfJQ6#Q7z2p;MW(jr1o$g!OpQKz#J%?y4gi)VKsCSJ z00*TLrY7QAk>aBg5GpOOH7>qOpT25F+o}Yp=C>OlQ8{O7g5NWed_)3d29P|C8*Qr+ zpqh^{fQT=h0CVg@BkTZDkTKe#IARiDC%=$?;C}YZO1v~pA^IGm62NnvNFq045@09a z?eTJ5FRT}&0hItN27pO`oqVedKnb7(Py+s(fFLwG?e-roTDV{mU?<=0@xn9c#<9#g zK*U$J4lv7(b$}Io%x|!muV@`$*3$ZV*P21(TV((}Agjn`v}FRW?sd>K zP1yusg*5>0`GI4Az9nF4)Yu(GNF);JpXvvb)aGbRc2y(*0000< KMNUMnLSTaThZ{uz literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/meta.json b/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/meta.json new file mode 100644 index 00000000000..ffcd378509a --- /dev/null +++ b/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/meta.json @@ -0,0 +1,48 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/1516a728931b4985c1e86f0c5995a5aa1554a1ad and modified by Dusty Lens", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "normal-unshaded", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "broken" + }, + { + "name": "deny-unshaded", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "off" + }, + { + "name": "panel" + }, + { + "name": "eject-unshaded", + "delays": [ + [ + 0.1, + 0.4, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/normal-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/normal-unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..0084601527a90ea907518f1c3731577f7f97ae3f GIT binary patch literal 538 zcmV+#0_FXQP)y`vH^aC0S!ZuL|ZESFJix=LZp+$vo z3PQ1@2ug&a*#_zLwY$gH>v^@o`%d@X``mr+z2|fA+zV)FX=!O`X=x3qeAJ8lt<_YW zY-?@9w|{oh(f9oNZnq7?=y|S2qoM2{3Iw|PN25_;%m_8v?A(H?zhF8&Ie|<(ZuhHf zK>7a8bAOr04d5)`;OGzlkWM9F77ERm>v>#e>p&Ocev6X;%D-3<{rf^d`E9wmG;`wv zT37<30H)ODU?hO{uL!X{6A-L#3o+LCxpeH0IRMWHIIUd>F}wavC4UwHk=m*lYaO4mmJ9bVb zpV~>Gjw6czS=K30G;j!zWu1&CXkZcG#R514c#!~2fF^)JKp5>w-Rc0UaN!W}2+Mv} zsRJngfz<&{{YM=@`wyrNaB4jkbB&S7s{}axi=5k_6Gt~4@9atYIk!RQain70{AKFP zZ4hYfyp=QU=io|6X*}mLM)|V{P?eQ4J3iXVnFISDK>5qmHv*~;C1m2IKab}ofa|ZN cr8OM-2HCq+L|?O}N&o-=07*qoM6N<$f~v;$3jhEB literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/off.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/civimed.rsi/off.png new file mode 100644 index 0000000000000000000000000000000000000000..bc342677ab0daaa61819df182ff66a51f532c07d GIT binary patch literal 421 zcmV;W0b2fvP)0}MtTFgP8ctYN_L?)7s9AyG*%ADK-Gz-9)B#_50$z|?=`$`yvEFAgw} z3(O2PQTWI?3dDZ;{59AftPX&IdA+@4J3zX-oh0=b4tVUs{x@t=!o5xdGo|TIZm9lvV3$VO7RbA1x`ihj1XMvLQ zD-D6@gnyyoGJlTC-jSQx&A`N=kWkI={;!DBjOwK#bBd3yYLJMNWuJ3y_mZEkegcP& zZ)$9P!gweDy!oRpzgb@yqq1%En6i0~z32X6|KP&+6|P(!PQQd2B<@KWpY4!o;8!Xw ktM2ar8QZ|XRJT_APx%+et)0R9Hu~Ry}A_Q5gL?7)xRuQd*%>eoyCLg~|7{=v1blwK{Mp))&DwX#y?m

      ncW>WO=XyLI^=!A>5{X2lSS(7ZRFYsYD4|eD(&@A$lS#?v z^AeB8rTS`0mX_<1dE*oBzGG^rIaJ`V)Yb}eekLY?KtO>49072w35sVTk&tq^ta9$n z-R}^?l>#Kd6A6qpKr@+)y17oyhypCZi&u(si9qdH9*{&}ol2$LcY*E!5}@2{ zH+TZ7=!&3S&rL@=y1|3G0hkcr0D$p0 z5jljYHN9ZG3owW{XxL^1r79dsAZL6Izyo@Ht?h?3y+C3=zV7@~ua@4brz;bp1h^T2 z(Ggfva_(afMC^VGTod4!<@hByiLo?nSEDBEXy`r{t`q>~OmtelRjZER4^B+T^W2Ji z59kD9u~<(eve~Q{C2-<+P#x$bpxB3xB{K>*0k+HS+XEi2*DdzW3~9BT|0gtpY&oRo fKc#~J?{?;2Bs9W5UgMpj00000NkvXXu0mjfu1{w> literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/meta.json b/Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/meta.json new file mode 100644 index 00000000000..4eb75fdce1f --- /dev/null +++ b/Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by discord: prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken" + }, + { + "name": "off" + }, + { + "name": "panel" + }, + { + "name": "normal-unshaded", + "delays": [ + [ + 1.0, + 0.1, + 1.0, + 0.1, + 1.0, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/normal-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/normal-unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..d8191578f197ce87198d56d173b5b059a81bc981 GIT binary patch literal 15328 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 P9RZM)RFbF>GYbAci2hdI literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/off.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/paradrobe.rsi/off.png new file mode 100644 index 0000000000000000000000000000000000000000..fdd611704c748941716ce739e5b3762eb6c34660 GIT binary patch literal 500 zcmVPx$u1Q2eR9Hu2WWWMs6|Mhc6Q@+{@%^KW=w@IDfE0inz%3-i@cYLPhODG;20I5+ zu)aeFPBToKw-T>Au&HO|;9&Ur?j6IZ14cuDiv;-%-W5MNDEj%%T)PeZ8)Pv+mN`zu!djExF6&Sw0d&^LelZcWFCQO-+Hy2=256V&R9zSGw z_39FF*%0P{*N=`-n)Si@Mdd6>cK|y#FT=MlHyN558X5HT^cdLK*a$l2*RNj;mo8mm zh>VP6c(zlIVgBm33=0l(GjQ>!GyMGenbZ)FXL$YSIKzf@>%o?*s;Uxn!0p?&89TD@E@bvU_NvA($#wnr(!Xc+! zxY-SW0LU@E^H5*bg578Khv|+_lg$sW*?jCvdBeJOdWZj3DYB`nt4B%rOPnz=`)6-p h#&6~hvQUMA!DX(Lkd@zrT|fshc)I$ztaD0e0svz&KxzO0 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/broken.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/broken.png new file mode 100644 index 0000000000000000000000000000000000000000..e495135dd414762f85d52639fbe68f81b48f70f3 GIT binary patch literal 1125 zcmV-r1e*JaP)A5oBb7eX8V?5E@B2*%Z4e zCOL^xu*t!NKn}h5kaI7kkQ`dMme^&rtHt{ZTc_k8&t!f{N)J8son~j=yziUuy?L_< zFt)X|^$Gy;`8@tBvuzsyu(Gm}0DyNzhcB0wV0Ak5`^M5u?C-XuK;k_6ty%+s{oNKm zzIF}2J$pviI0CAZ=du|t0124OW;nn7-4^vDd&r#V%i>51i1z5GZ2&;2T;Tx7yhxVp zA^xIoCc~4N5`zRmAO$X!D{#C3xoigeyDd0gfKs`FQn@0LC1Av#1;4R$6Q6$e1-D13 zKuXsU`#uG5ynxFoJ1&(gk{Yc1L^WWj(9@^C;`zY=olCGA_xAQ)eSZBqRY8GVVb^;&f#2^P59?Wzd?fZ21T z&4a-yC7^2>{4nI!bxi{RoW#BqW263nj!$AAKR$lU?H$<%2v8hF(wqn^5+dnaZ!|G~ z{u}_{<%>U+2OLQtiXy~Ogu&nx*;#`F(lrh3!#2FWi)3@r2B$DB3#Mh!oTt)hItIXvi*q@wH=1}qHwR#-!2J1h94Xgz zClm0)kjrr@orY;y+&TeoAGW!@4>vclyt+yiIO=q{Yt7n70&x^63yd`aF4lwN1$el* z2|%sDSOQOe`I(Mca8_mj@cJ%H%fiBi1#VvKc%lMxdA><;1PsG~J;u4ynWizAes zHE4aXX1@3--S3122t|GxUtUJ{j952AV@9s$oh__(uA5k1d zC>9Fv`mU4?QiN>&$tfK#z|PJ#%$|cMtzk;pJ}~wcundcZg0jfisuyeH)~yPcf=Rbv ztOD${V*$OsOMyj#CD9V3d4sh_xBy1fPfSX=*=iznXwi3A7w%eo~00000NkvXXu0mjfe>wx+ literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/deny-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/deny-unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..30250aedb7873d97abd703e2bca1d3d66e47d4dc GIT binary patch literal 450 zcmV;z0X_bSP)WuD5tqca$9MjdYM7U-3QqG#1)awZlWc#vl`YBkv*41r{P;Pk zW>FRB%1YA39-IL{EeGs#ul)b%`%i{HUk)&YoI6K!3{firwmrV{|MKJK3{UU8V3-sa zieW!ZQotG`qyI3^I_+#HD_c+!0m$|f%9aFE07uGPh97g1aTlto# z1maYOO&-}ELMZ^JgF25L{;yuK9?r++2y}UJ3L#uz+v7X`Ia21r`Pd=>U7nmmm|!h{ z%MsYbu{nU;6acFQa76+(acmJlQ3}9i87@arI|abl=z)zZQfQI_usH&o<+vO`X$pV= zd0elV^Z3i%r))J&eZ;+IhAUP30QY}CT(7F~N1ZY|d&>PUJ sJ3cxdFwhRb1qM0-M!_f;1tS9h0E}&Gli!ohc>n+a07*qoM6N<$f(pE{oB#j- literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/eject-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/eject-unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..68ff9b3c752c3f4b84f0d5374a81f24622b5615c GIT binary patch literal 323 zcmeAS@N?(olHy`uVBq!ia0vp^2|%pC!3HGX9;gjrU|{6(ba4#HXnZ?Ek?)X$fa`Kj zu?rnmI?E=ta4$Gm#CxvcsmzPG2A0U+=azo}jK#?SrvpSLxN)7FRnZ?InB`?_kn#^#zyCh@E5zOj0k zE->j`>+AjenbYsHzn<&6tYX~vGwQ3m;e!B?vd~b;iU0F8moN%Jge3i@9AoILS^I18 z`34a-k0;qz`y~%tcq#dTi>HCn;J|ZB2?pknPl*i7Ag+V5{Vv9Re@+_-+zx2Fm*ZT^ znR}qXrt0?d`|HiWN`C0gU@KY5CaIY Op7C_`b6Mw<&;$U9Cxv|g literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/meta.json b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/meta.json new file mode 100644 index 00000000000..e65d518eb27 --- /dev/null +++ b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/meta.json @@ -0,0 +1,62 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "normal-unshaded", + "delays": [ + [ + 2, + 2, + 0.15, + 0.15, + 1.5, + 1.5, + 0.15, + 0.15, + 1.5, + 1.5, + 0.15, + 0.15, + 1.5, + 1.5, + 0.15, + 0.15 + ] + ] + }, + { + "name": "deny-unshaded", + "delays": [ + [ + 1, + 0.1 + ] + ] + }, + { + "name": "eject-unshaded", + "delays": [ + [ + 0.1, + 0.4, + 0.1 + ] + ] + }, + { + "name": "off" + }, + { + "name": "broken" + }, + { + "name": "panel" + } + ] +} diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/normal-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/normal-unshaded.png new file mode 100644 index 0000000000000000000000000000000000000000..8921f29d32355e4ea43da48680b4d2f580fa4d5e GIT binary patch literal 2484 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 literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/off.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/off.png new file mode 100644 index 0000000000000000000000000000000000000000..5095c64cda3735b0c0605e1d658708e6f5b35e5e GIT binary patch literal 582 zcmV-M0=fN(P)BjE7>1vOE=C|_a4Z@UZ@~sbhWwQdS-Q0uO~6xa&q^{Gis_X6j|}|}T}mMtTBs!w zWNU~7#$z*>Q%=&!$`M_l9~kb=r|*65z3+RaEu@%Er~d$4*TqzXVF*CK-`@gwm*4Q= z@yO!ZD-~M0!fm*85t!30LyWVfT{8piqN)g zk|e=$oPu0J9kDK}mEXJRxl#gQ7^WQ%KI&hEyHidA;Ll$_#ZeLv!1wb7-e{;zV0?bT zUTatDnM@4?K>&a^8q%;F?VmRqaz9^Gf(jf^DDaX5RUzk?c$evTwT$_8eVy5B#0R|5 zFulU|!9MMSeOAl3Kn@fN)DfL-FCEYPwcHKMNlBCvh@yzY8VCqbSStWebC(SF6&tLl$?6r0opI@YNl>$)|rDG#SD0{)o519D@4NGnB#@>d4M7|3u3A9{2 zC##CQ0{Q$I0?lT#R&Y=&AmbSE0XeF=!1x!DN&&eGjQ9XNTdtN9))fML9xnL!`P0U| z1uJ&mw_goD@h+98ZCFl$kdYc#En_;}Ugle&)9t<86~OxLg$;|jDvS^i1$TEF7uH`y z;Ph<3)z^tO@afqAfWi1nW_?p4dOZomMUo`2F*THZZL1HGY_7Oy<9cCzLGV UFmJbEQvd(}07*qoM6N<$f?ZAqegFUf literal 0 HcmV?d00001 diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/panel.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/pillomat.rsi/panel.png new file mode 100644 index 0000000000000000000000000000000000000000..a797b42b18b66d3a3a9428d17e354f5e3de7ccf4 GIT binary patch literal 242 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz&H|6fVg?4jBOuH;Rhv&5D7eJa z#WAE}&f6;+IS(5MuwKX)x>Us{x@t=!o5xdGo|TIZm9lvV3$VO7RbA1x`ihj1XMvLQ zD-D6@gnyyoGJlTC-jSQx&A`N=kWkI={;!DBjOwK#bBd3yYLJMNWuJ3y_mZEkegcP& zZ)$9P!gweDy!oRpzgb@yqq1%En6i0~z32X6|KP&+6|P(!PQQd2B<@KWpY4!o;8!Xw ktM2ar8QZ|XRJT_A*UgXs$18!oU(9d`kJG`cI`@9(VwhRXV8=Z1`Om{wD!Ud**p_vu zFbW9X4Had05ORI-@#^!hWas&x`jQEmh%eko^3#xA@(0(JE`X#p_P1 zoLqBY&l_E(EXxD?YF6z(kfgh}PC*F)qUPRwyDabfvfB)?-rBDXkE!fl<@8J@j=w!S z`*u~cx4AXL-)-g3?ri_}?~ Date: Sun, 20 Oct 2024 15:08:16 +0300 Subject: [PATCH 32/34] Auto CL update (#650) No cl, no fun Co-authored-by: github-actions[bot] --- Resources/Changelog/1ChangelogADT.yml | 60 +++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/Resources/Changelog/1ChangelogADT.yml b/Resources/Changelog/1ChangelogADT.yml index 93871810800..6aea0b525d0 100644 --- a/Resources/Changelog/1ChangelogADT.yml +++ b/Resources/Changelog/1ChangelogADT.yml @@ -3624,3 +3624,63 @@ Entries: не используют органы внутри тел для ритуалов!', type: Fix} time: '2024-10-14T16:45:53Z' id: 449 + - author: Inconnu1337 + changes: + - {message: Добавлен шлем спецназа синдиката в аплинк, type: Add} + - {message: Изменены цены и статистики некоторых предметов в аплинке(подробнее + см. ПР), type: Tweak} + time: '2024-10-15T23:02:20Z' + id: 450 + - author: Mirokko + changes: + - {message: 'Добавлена возможность написать на бумаге моноширинным шрифтом с + помощью тега [mono]', type: Add} + time: '2024-10-16T20:45:49Z' + id: 451 + - author: Filo + changes: + - {message: АВД и пилот получили возможность выбрать бельё, type: Fix} + - {message: Магистрат начал отображаться как член командования., type: Fix} + - {message: Арахниды теперь надевают трусы пониз комбинезона., type: Fix} + time: '2024-10-17T23:09:35Z' + id: 452 + - author: Filo + changes: + - {message: Alley теперь требует 60 игроков для выбора карты, type: Tweak} + - {message: Astra теперь требует 50 игроков для выбора карты, type: Tweak} + - {message: Avrite теперь требует 60 игроков для выбора карты, type: Tweak} + - {message: Box теперь требует 30 игроков для выбора карты, type: Tweak} + - {message: Core теперь требует 25 игроков для выбора карты, type: Tweak} + - {message: Delta теперь требует 55 игроков для выбора карты, type: Tweak} + - {message: Gemini Теперь требует 25 игроков для выбора карты, type: Tweak} + - {message: Fland Теперь требует 35 игроков для выбора карты, type: Tweak} + - {message: Oasis Теперь требует 40 игроков для выбора карты, type: Tweak} + time: '2024-10-18T12:37:12Z' + id: 453 + - author: Filo + changes: + - {message: 'Добавлены такие криогенные препараты как Аразин, Миадинол, Мезадрозин, + Аломицин.', type: Add} + - {message: 'Добавлен ГраждоМед, который поможет вам потратить свои сбережения.', + type: Add} + - {message: При взломе емагом ГраждоМеда и НаноМеда ассортимент дополняется., + type: Add} + - {message: Новый вид затяжек для ботаников из конопли., type: Add} + - {message: Таблеткомат и Парашкаф вместе с вещами парамедика., type: Add} + - {message: Походная одежка глав врача в лоадаут. см. ниже., type: Add} + - {message: 'Вещи для Глав врача, а именно, набор походной одежды, хай-риск + дефиб, чемоданчик с особыми лекарствами.', type: Add} + - {message: 'Немного разнообразия в медицинском инструментарии, а именно бутылочки, + шприцы и пачки для таблеток.', type: Add} + - {message: 'Также весь этот инструментарий можно сделать в медфабе, как и пробирки', + type: Add} + - {message: Возвращена возможность изучения аппарата клонирования в сервисной + ветке., type: Add} + - {message: Бинты отныне можно использовать для остановления кровотечения даже + если нету порезов или уколов., type: Tweak} + - {message: 'Парамедик отныне стал истинным патриотом NanoTrasen, так что никакие + предательства от него не ждите. Не может стать антагом.', type: Tweak} + - {message: Изменены рецепты криогенных препаратов и их эффекты, type: Tweak} + - {message: Что-то изменил..., type: Tweak} + time: '2024-10-19T17:41:03Z' + id: 454 From f49e0f542dd0efe9c8433bd8dcea1b8147db34d4 Mon Sep 17 00:00:00 2001 From: Inconnu <177014427+Inconnu1337@users.noreply.github.com> Date: Sun, 20 Oct 2024 22:27:28 +0300 Subject: [PATCH 33/34] =?UTF-8?q?=D0=9A=D0=BE=D0=BB=D0=BB=D0=B5=D0=BA?= =?UTF-8?q?=D1=82=D0=B8=D0=B2=D0=BD=D1=8B=D0=B9=20=D1=80=D0=B0=D0=B7=D1=83?= =?UTF-8?q?=D0=BC=20(#657)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR в названии ## Почему / Баланс ачеб не **Ссылка на публикацию** - [Перенос контента](https://github.com/AdventureTimeSS14/space_station/pull/518) ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре **Чейнджлог** :cl: Inconnu - add: Коллективный разум --- .../Systems/CollectiveMindSystem.cs | 31 +++++++ Content.Client/Chat/Managers/ChatManager.cs | 12 +++ Content.Client/Chat/Managers/IChatManager.cs | 8 +- Content.Client/Input/ContentContexts.cs | 1 + .../Options/UI/Tabs/KeyRebindTab.xaml.cs | 1 + .../Systems/Chat/ChatUIController.cs | 18 ++++ .../Chat/Controls/ChannelFilterPopup.xaml.cs | 1 + .../Chat/Controls/ChannelSelectorPopup.cs | 1 + .../CollectiveMind/CollectiveMindCommand.cs | 42 ++++++++++ Content.Server/Chat/Systems/ChatSystem.cs | 84 ++++++++++++++++++- .../CollectiveMind/CollectiveMindComponent.cs | 21 +++++ Content.Shared/Chat/ChatChannel.cs | 7 +- Content.Shared/Chat/ChatSelectChannel.cs | 5 ++ Content.Shared/Chat/SharedChatSystem.cs | 1 + Content.Shared/Input/ContentKeyFunctions.cs | 1 + .../ADT/collectivemind/collective-mind.ftl | 5 ++ .../ru-RU/ADT/collectivemind/options-menu.ftl | 3 + .../Locale/ru-RU/ADT/collectivemind/radio.ftl | 4 + .../Locale/ru-RU/ADT/collectivemind/rank.ftl | 14 ++++ .../ADT/CollectiveMind/channels.yml | 32 +++++++ .../Mobs/Cyborgs/base_borg_chassis.yml | 6 ++ .../Prototypes/Entities/Mobs/NPCs/carp.yml | 9 +- .../Prototypes/Entities/Mobs/NPCs/xeno.yml | 35 ++++++++ 23 files changed, 338 insertions(+), 4 deletions(-) create mode 100644 Content.Client/ADT/CollectiveMind/Systems/CollectiveMindSystem.cs create mode 100644 Content.Server/ADT/CollectiveMind/CollectiveMindCommand.cs create mode 100644 Content.Shared/ADT/CollectiveMind/CollectiveMindComponent.cs create mode 100644 Resources/Locale/ru-RU/ADT/collectivemind/collective-mind.ftl create mode 100644 Resources/Locale/ru-RU/ADT/collectivemind/options-menu.ftl create mode 100644 Resources/Locale/ru-RU/ADT/collectivemind/radio.ftl create mode 100644 Resources/Locale/ru-RU/ADT/collectivemind/rank.ftl create mode 100644 Resources/Prototypes/ADT/CollectiveMind/channels.yml diff --git a/Content.Client/ADT/CollectiveMind/Systems/CollectiveMindSystem.cs b/Content.Client/ADT/CollectiveMind/Systems/CollectiveMindSystem.cs new file mode 100644 index 00000000000..5949eac6cc2 --- /dev/null +++ b/Content.Client/ADT/CollectiveMind/Systems/CollectiveMindSystem.cs @@ -0,0 +1,31 @@ +using Content.Client.Chat.Managers; +using Content.Shared.Sirena.CollectiveMind; +using Robust.Client.Player; + +namespace Content.Client.Sirena.CollectiveMind; + +public sealed class CollectiveMindSystem : EntitySystem +{ + [Dependency] private readonly IChatManager _chatManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnRemove); + } + + public CollectiveMindComponent? Player => CompOrNull(_playerManager.LocalPlayer?.ControlledEntity); + public bool IsCollectiveMind => Player != null; + + private void OnInit(EntityUid uid, CollectiveMindComponent component, ComponentInit args) + { + _chatManager.UpdatePermissions(); + } + + private void OnRemove(EntityUid uid, CollectiveMindComponent component, ComponentRemove args) + { + _chatManager.UpdatePermissions(); + } +} diff --git a/Content.Client/Chat/Managers/ChatManager.cs b/Content.Client/Chat/Managers/ChatManager.cs index e428d30f20c..f08bb2651d2 100644 --- a/Content.Client/Chat/Managers/ChatManager.cs +++ b/Content.Client/Chat/Managers/ChatManager.cs @@ -14,6 +14,7 @@ internal sealed class ChatManager : IChatManager [Dependency] private readonly IEntitySystemManager _systems = default!; private ISawmill _sawmill = default!; + public event Action? PermissionsUpdated; // ADT-CollectiveMind-Tweak public void Initialize() { @@ -67,8 +68,19 @@ public void SendMessage(string text, ChatSelectChannel channel) _consoleHost.ExecuteCommand($"whisper \"{CommandParsing.Escape(str)}\""); break; + case ChatSelectChannel.CollectiveMind: + _consoleHost.ExecuteCommand($"cmsay \"{CommandParsing.Escape(str)}\""); + break; + default: throw new ArgumentOutOfRangeException(nameof(channel), channel, null); } } + +// ADT-CollectiveMind-Tweak-Start + public void UpdatePermissions() + { + PermissionsUpdated?.Invoke(); + } +// ADT-CollectiveMind-Tweak-End } diff --git a/Content.Client/Chat/Managers/IChatManager.cs b/Content.Client/Chat/Managers/IChatManager.cs index 6464ca10196..c62ddaa9697 100644 --- a/Content.Client/Chat/Managers/IChatManager.cs +++ b/Content.Client/Chat/Managers/IChatManager.cs @@ -4,8 +4,14 @@ namespace Content.Client.Chat.Managers { public interface IChatManager { - void Initialize(); + void Initialize(); // ADT-CollectiveMind-Tweak + + ///

      + /// Will refresh perms. + /// + event Action PermissionsUpdated; // ADT-CollectiveMind-Tweak public void SendMessage(string text, ChatSelectChannel channel); + public void UpdatePermissions(); // ADT-CollectiveMind-Tweak } } diff --git a/Content.Client/Input/ContentContexts.cs b/Content.Client/Input/ContentContexts.cs index 8d551f79d5b..4ae0ee62efa 100644 --- a/Content.Client/Input/ContentContexts.cs +++ b/Content.Client/Input/ContentContexts.cs @@ -15,6 +15,7 @@ public static void SetupContexts(IInputContextContainer contexts) common.AddFunction(ContentKeyFunctions.FocusChat); common.AddFunction(ContentKeyFunctions.FocusLocalChat); common.AddFunction(ContentKeyFunctions.FocusEmote); + common.AddFunction(ContentKeyFunctions.FocusCollectiveMind); // ADT-CollectiveMind-Tweak common.AddFunction(ContentKeyFunctions.FocusWhisperChat); common.AddFunction(ContentKeyFunctions.FocusRadio); common.AddFunction(ContentKeyFunctions.FocusLOOC); diff --git a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs index f661ccf92c6..20b4330e985 100644 --- a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs +++ b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs @@ -205,6 +205,7 @@ void AddCheckBox(string checkBoxName, bool currentState, Action] private const string ChatNamePalette = "ChatNames"; @@ -78,6 +83,7 @@ public sealed class ChatUIController : UIController { {SharedChatSystem.LocalPrefix, ChatSelectChannel.Local}, {SharedChatSystem.WhisperPrefix, ChatSelectChannel.Whisper}, + {SharedChatSystem.CollectiveMindPrefix, ChatSelectChannel.CollectiveMind}, // ADT-CollectiveMind-Tweak {SharedChatSystem.ConsolePrefix, ChatSelectChannel.Console}, {SharedChatSystem.LOOCPrefix, ChatSelectChannel.LOOC}, {SharedChatSystem.OOCPrefix, ChatSelectChannel.OOC}, @@ -92,6 +98,7 @@ public sealed class ChatUIController : UIController { {ChatSelectChannel.Local, SharedChatSystem.LocalPrefix}, {ChatSelectChannel.Whisper, SharedChatSystem.WhisperPrefix}, + {ChatSelectChannel.CollectiveMind, SharedChatSystem.CollectiveMindPrefix}, // ADT-CollectiveMind-Tweak {ChatSelectChannel.Console, SharedChatSystem.ConsolePrefix}, {ChatSelectChannel.LOOC, SharedChatSystem.LOOCPrefix}, {ChatSelectChannel.OOC, SharedChatSystem.OOCPrefix}, @@ -204,6 +211,9 @@ public override void Initialize() _input.SetInputCommand(ContentKeyFunctions.FocusWhisperChat, InputCmdHandler.FromDelegate(_ => FocusChannel(ChatSelectChannel.Whisper))); + _input.SetInputCommand(ContentKeyFunctions.FocusCollectiveMind, // ADT-CollectiveMind-Tweak + InputCmdHandler.FromDelegate(_ => FocusChannel(ChatSelectChannel.CollectiveMind))); // ADT-CollectiveMind-Tweak + _input.SetInputCommand(ContentKeyFunctions.FocusLOOC, InputCmdHandler.FromDelegate(_ => FocusChannel(ChatSelectChannel.LOOC))); @@ -558,7 +568,15 @@ private void UpdateChannelPermissions() FilterableChannels |= ChatChannel.AdminAlert; FilterableChannels |= ChatChannel.AdminChat; CanSendChannels |= ChatSelectChannel.Admin; + FilterableChannels |= ChatChannel.CollectiveMind; // ADT-CollectiveMind-Tweak + } + // ADT-CollectiveMind-Tweak-Start + if (_collectiveMind != null) + { + CanSendChannels |= ChatSelectChannel.CollectiveMind; + FilterableChannels |= ChatChannel.CollectiveMind; } + // ADT-CollectiveMind-Tweak-End SelectableChannels = CanSendChannels; diff --git a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterPopup.xaml.cs b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterPopup.xaml.cs index df4f56cb27c..c649c312550 100644 --- a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterPopup.xaml.cs +++ b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelFilterPopup.xaml.cs @@ -16,6 +16,7 @@ public sealed partial class ChannelFilterPopup : Popup ChatChannel.Whisper, ChatChannel.Emotes, ChatChannel.Radio, + ChatChannel.CollectiveMind, // ADT-CollectiveMind-Tweak ChatChannel.Notifications, ChatChannel.LOOC, ChatChannel.OOC, diff --git a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorPopup.cs b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorPopup.cs index 0852c10bb91..4a3c132eb68 100644 --- a/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorPopup.cs +++ b/Content.Client/UserInterface/Systems/Chat/Controls/ChannelSelectorPopup.cs @@ -13,6 +13,7 @@ public sealed class ChannelSelectorPopup : Popup ChatSelectChannel.Whisper, ChatSelectChannel.Emotes, ChatSelectChannel.Radio, + ChatSelectChannel.CollectiveMind, // ADT-CollectiveMind-Tweak ChatSelectChannel.LOOC, ChatSelectChannel.OOC, ChatSelectChannel.Dead, diff --git a/Content.Server/ADT/CollectiveMind/CollectiveMindCommand.cs b/Content.Server/ADT/CollectiveMind/CollectiveMindCommand.cs new file mode 100644 index 00000000000..0874103f7ee --- /dev/null +++ b/Content.Server/ADT/CollectiveMind/CollectiveMindCommand.cs @@ -0,0 +1,42 @@ +using Content.Server.Chat.Systems; +using Content.Shared.Administration; +using Robust.Shared.Console; +using Robust.Shared.Enums; + +namespace Content.Server.Sirena.CollectiveMind; + +[AnyCommand] +internal sealed class CollectiveMindCommand : IConsoleCommand +{ + public string Command => "cmsay"; + public string Description => "Send chat messages to the collective mind."; + public string Help => "cmsay "; + + public void Execute(IConsoleShell shell, string argStr, string[] args) + { + if (shell.Player is not { } player) + { + shell.WriteError("This command cannot be run from the server."); + return; + } + + if (player.Status != SessionStatus.InGame) + return; + + if (player.AttachedEntity is not { } playerEntity) + { + shell.WriteError("You don't have an entity!"); + return; + } + + if (args.Length < 1) + return; + + var message = string.Join(" ", args).Trim(); + if (string.IsNullOrEmpty(message)) + return; + + IoCManager.Resolve().GetEntitySystem() + .TrySendInGameICMessage(playerEntity, message, InGameICChatType.CollectiveMind, ChatTransmitRange.Normal); + } +} diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index f099010dd4f..1b4840bae9f 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -39,6 +39,10 @@ using Robust.Shared.Utility; using Content.Shared.ADT.Language; // ADT Languages using Content.Server.ADT.Language; // ADT Languages +using Content.Shared.Sirena.CollectiveMind; // ADT-CollectiveMind-Tweak +using System.Globalization; +using System.Linq; +using System.Text; namespace Content.Server.Chat.Systems; @@ -281,6 +285,11 @@ public void TrySendInGameICMessage( case InGameICChatType.Emote: SendEntityEmote(source, sanitizedMessage, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker); // ADT Languages break; + // ADT-CollectiveMind-Tweak-Start + case InGameICChatType.CollectiveMind: + SendCollectiveMindChat(source, message, false); + break; + // ADT-CollectiveMind-Tweak-End } } @@ -431,6 +440,78 @@ public void DispatchStationAnnouncement( #region Private API + // ADT-CollectiveMind-Tweak-Start + public void SendCollectiveMindChat(EntityUid source, string message, bool hideChat) + { + if (!TryComp(source, out var sourseCollectiveMindComp)) + return; + + var clients = Filter.Empty(); + var mindQuery = EntityQueryEnumerator(); + while (mindQuery.MoveNext(out var uid, out var collectMindComp, out var actorComp)) + { + if (collectMindComp.Channel == sourseCollectiveMindComp.Channel) + { + clients.AddPlayer(actorComp.PlayerSession); + } + } + + var admins = _adminManager.ActiveAdmins + .Select(p => p.Channel); + string messageWrap; + string adminMessageWrap; + + var channelProto = IoCManager.Resolve().Index(sourseCollectiveMindComp.Channel); + + messageWrap = + sourseCollectiveMindComp.ShowRank && sourseCollectiveMindComp.ShowName ? + Loc.GetString("chat-manager-send-collective-mind-chat-wrap-message-rank-name", + ("source", source), + ("rank", Loc.GetString(sourseCollectiveMindComp.RankName)), + ("message", message), + ("channel", channelProto.LocalizedName)) : + + sourseCollectiveMindComp.ShowName ? + Loc.GetString("chat-manager-send-collective-mind-chat-wrap-message-name", + ("source", source), + ("message", message), + ("channel", channelProto.LocalizedName)) : + + sourseCollectiveMindComp.ShowRank ? + Loc.GetString("chat-manager-send-collective-mind-chat-wrap-message-rank", + ("rank", Loc.GetString(sourseCollectiveMindComp.RankName)), + ("message", message), + ("channel", channelProto.LocalizedName)) : + + Loc.GetString("chat-manager-send-collective-mind-chat-wrap-message", ("message", message), ("channel", channelProto.LocalizedName)); + + adminMessageWrap = Loc.GetString("chat-manager-send-collective-mind-chat-wrap-message-admin", + ("source", source), + ("rank", Loc.GetString(sourseCollectiveMindComp.RankName)), + ("message", message), + ("channel", channelProto.LocalizedName)); + + _adminLogger.Add(LogType.Chat, LogImpact.Low, $"CollectiveMind chat from {ToPrettyString(source):Player}: {message}"); + + _chatManager.ChatMessageToManyFiltered(clients, + ChatChannel.CollectiveMind, + message, + messageWrap, + source, + hideChat, + true, + channelProto.Color); + + _chatManager.ChatMessageToMany(ChatChannel.CollectiveMind, + message, + adminMessageWrap, + source, + hideChat, + true, + admins, + channelProto.Color); + } + // ADT-CollectiveMind-Tweak-End private void SendEntitySpeak( EntityUid source, string originalMessage, @@ -1131,7 +1212,8 @@ public enum InGameICChatType : byte { Speak, Emote, - Whisper + Whisper, + CollectiveMind } /// diff --git a/Content.Shared/ADT/CollectiveMind/CollectiveMindComponent.cs b/Content.Shared/ADT/CollectiveMind/CollectiveMindComponent.cs new file mode 100644 index 00000000000..e29bebb74ed --- /dev/null +++ b/Content.Shared/ADT/CollectiveMind/CollectiveMindComponent.cs @@ -0,0 +1,21 @@ +using Content.Shared.Radio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Sirena.CollectiveMind; + +[RegisterComponent, NetworkedComponent] +public sealed partial class CollectiveMindComponent : Component +{ + [DataField(required: true, customTypeSerializer: typeof(PrototypeIdSerializer))] + public string Channel = string.Empty; + + [DataField] + public bool ShowName = true; + + [DataField] + public bool ShowRank = false; + + [DataField] + public string RankName = "???"; +} diff --git a/Content.Shared/Chat/ChatChannel.cs b/Content.Shared/Chat/ChatChannel.cs index e8715a6ecb0..c34e6e899d2 100644 --- a/Content.Shared/Chat/ChatChannel.cs +++ b/Content.Shared/Chat/ChatChannel.cs @@ -85,10 +85,15 @@ public enum ChatChannel : ushort /// Unspecified = 1 << 14, + /// + /// Collective mind channel for entities who have comp. + /// + CollectiveMind = 1 << 15, // ADT-CollectiveMind-Tweak + /// /// Channels considered to be IC. /// - IC = Local | Whisper | Radio | Dead | Emotes | Damage | Visual | Notifications, + IC = Local | Whisper | Radio | Dead | Emotes | Damage | Visual | Notifications | CollectiveMind, // ADT-CollectiveMind-Tweak AdminRelated = Admin | AdminAlert | AdminChat, } diff --git a/Content.Shared/Chat/ChatSelectChannel.cs b/Content.Shared/Chat/ChatSelectChannel.cs index c18bb9b8ee3..024661f8eae 100644 --- a/Content.Shared/Chat/ChatSelectChannel.cs +++ b/Content.Shared/Chat/ChatSelectChannel.cs @@ -41,6 +41,11 @@ public enum ChatSelectChannel : ushort /// Emotes = ChatChannel.Emotes, + /// + /// CollectiveMind + /// + CollectiveMind = ChatChannel.CollectiveMind, // ADT-CollectiveMind-Tweak + /// /// Deadchat /// diff --git a/Content.Shared/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index fff973270b8..73b785f83d3 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -22,6 +22,7 @@ public abstract class SharedChatSystem : EntitySystem public const char EmotesAltPrefix = '*'; public const char AdminPrefix = ']'; public const char WhisperPrefix = ','; + public const char CollectiveMindPrefix = '+'; // ADT-CollectiveMind-Tweak public const char DefaultChannelKey = 'р'; // Corvax-Localization // Corvax-TTS-Start: Moved from Server to Shared public const int VoiceRange = 10; // how far voice goes in world units diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs index b1159b3794b..85b2899bdaf 100644 --- a/Content.Shared/Input/ContentKeyFunctions.cs +++ b/Content.Shared/Input/ContentKeyFunctions.cs @@ -14,6 +14,7 @@ public static class ContentKeyFunctions public static readonly BoundKeyFunction FocusChat = "FocusChatInputWindow"; public static readonly BoundKeyFunction FocusLocalChat = "FocusLocalChatWindow"; public static readonly BoundKeyFunction FocusEmote = "FocusEmote"; + public static readonly BoundKeyFunction FocusCollectiveMind = "FocusCollectiveMind"; // ADT-CollectiveMind-Tweak public static readonly BoundKeyFunction FocusWhisperChat = "FocusWhisperChatWindow"; public static readonly BoundKeyFunction FocusRadio = "FocusRadioWindow"; public static readonly BoundKeyFunction FocusLOOC = "FocusLOOCWindow"; diff --git a/Resources/Locale/ru-RU/ADT/collectivemind/collective-mind.ftl b/Resources/Locale/ru-RU/ADT/collectivemind/collective-mind.ftl new file mode 100644 index 00000000000..b88d719a1c8 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/collectivemind/collective-mind.ftl @@ -0,0 +1,5 @@ +chat-manager-send-collective-mind-chat-wrap-message = {$channel}: {$message} +chat-manager-send-collective-mind-chat-wrap-message-rank = {$channel}: [bold]{$rank}[/bold]: {$message} +chat-manager-send-collective-mind-chat-wrap-message-name = {$channel}: {$source}: {$message} +chat-manager-send-collective-mind-chat-wrap-message-rank-name = {$channel}: {$source} [bold]{$rank}[/bold]: {$message} +chat-manager-send-collective-mind-chat-wrap-message-admin = {$channel}: {$source} [bold]{$rank}[/bold]: {$message} diff --git a/Resources/Locale/ru-RU/ADT/collectivemind/options-menu.ftl b/Resources/Locale/ru-RU/ADT/collectivemind/options-menu.ftl new file mode 100644 index 00000000000..e5e6a899b02 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/collectivemind/options-menu.ftl @@ -0,0 +1,3 @@ +ui-options-function-focus-collective-mind = Писать в чат коллективного разума +hud-chatbox-select-channel-CollectiveMind = Коллективный разум +hud-chatbox-channel-CollectiveMind = Коллективный разум diff --git a/Resources/Locale/ru-RU/ADT/collectivemind/radio.ftl b/Resources/Locale/ru-RU/ADT/collectivemind/radio.ftl new file mode 100644 index 00000000000..eb1c214a2c3 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/collectivemind/radio.ftl @@ -0,0 +1,4 @@ +collective-mind-dionas = Коллективный разум дион +collective-mind-carp = Коллективный разум карпов +collective-mind-xeno = Коллективный разум роя +collective-mind-ling = Разум улья diff --git a/Resources/Locale/ru-RU/ADT/collectivemind/rank.ftl b/Resources/Locale/ru-RU/ADT/collectivemind/rank.ftl new file mode 100644 index 00000000000..be65bb8612a --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/collectivemind/rank.ftl @@ -0,0 +1,14 @@ +collective-mind-borg-rank = Киборг +collective-mind-pai-rank = Персональный ИИ +collective-mind-dragon-rank = Дракон +collective-mind-shark-rank = Карпоакула +collective-mind-carp-rank = Карп +collective-mind-queen-rank = Королева +collective-mind-praetorian-rank = Преторианец +collective-mind-ravager-rank = Разрушитель +collective-mind-runner-rank = Бегун +collective-mind-spitter-rank = Плевальщик +collective-mind-drone-rank = Дрон +collective-mind-burrower-rank = Без специализации +collective-mind-rouny-rank = Руни +collective-mind-ling-rank = Генокрад diff --git a/Resources/Prototypes/ADT/CollectiveMind/channels.yml b/Resources/Prototypes/ADT/CollectiveMind/channels.yml new file mode 100644 index 00000000000..a6f665f454e --- /dev/null +++ b/Resources/Prototypes/ADT/CollectiveMind/channels.yml @@ -0,0 +1,32 @@ +- type: radioChannel + id: DionsCollectiveMind + name: collective-mind-dionas + frequency: 1331 + keycode: 't' + color: "#3de500" + longRange: true + +- type: radioChannel + id: CarpCollectiveMind + name: collective-mind-carp + frequency: 1332 + keycode: 'q' + color: "#ba66ff" + longRange: true + +- type: radioChannel + id: XenoCollectiveMind + name: collective-mind-xeno + frequency: 1333 + keycode: 'e' + color: "#ba66ff" + longRange: true + +# в комментариях до добавления генокрадов +# - type: radioChannel +# id: ChangelingCollectiveMind +# name: collective-mind-ling +# frequency: 1334 +# keycode: 'x' +# color: "#e56000" +# longRange: true diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 1a5813b1279..770f270bbac 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -246,6 +246,12 @@ - FootstepSound - CanPilot - type: Emoting + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + channel: Binary + showRank: true + rankName: collective-mind-borg-rank + # ADT-CollectiveMind-Tweak-End - type: GuideHelp guides: - Cyborgs diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml index 233b2f90308..bba678ed718 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/carp.yml @@ -85,7 +85,12 @@ interactFailureString: petting-failure-carp interactFailureSound: path: /Audio/Effects/bite.ogg - + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + channel: CarpCollectiveMind + showRank: true + rankName: collective-mind-carp-rank + # ADT-CollectiveMind-Tweak-End - type: entity parent: BaseMobCarp id: MobCarp @@ -248,6 +253,8 @@ types: Slash: 10 Bloodloss: 5 + - type: CollectiveMind + rankName: collective-mind-shark-rank - type: entity id: MobSharkSalvage diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index b0cc3757c14..bb4b102ba7a 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -124,6 +124,12 @@ - Xeno understands: - Xeno + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + channel: XenoCollectiveMind + showRank: true + rankName: collective-mind-burrower-rank + # ADT-CollectiveMind-Tweak-End - type: entity name: praetorian @@ -157,6 +163,10 @@ - MobMask layer: - MobLayer + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + rankName: collective-mind-praetorian-rank + # ADT-CollectiveMind-Tweak-End - type: entity name: drone @@ -194,6 +204,10 @@ - MobMask layer: - MobLayer + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + rankName: collective-mind-drone-rank + # ADT-CollectiveMind-Tweak-End - type: entity name: queen @@ -233,6 +247,11 @@ - type: Tag tags: - CannotSuicide + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + rankName: collective-mind-queen-rank + # ADT-CollectiveMind-Tweak-End + - type: entity name: ravager @@ -270,6 +289,10 @@ - MobMask layer: - MobLayer + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + rankName: collective-mind-ravager-rank + # ADT-CollectiveMind-Tweak-End - type: entity name: runner @@ -300,6 +323,10 @@ - MobMask layer: - MobLayer + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + rankName: collective-mind-runner-rank + # ADT-CollectiveMind-Tweak-End - type: entity name: rouny @@ -315,6 +342,10 @@ spawned: - id: FoodMeatRouny amount: 3 + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + rankName: collective-mind-rouny-rank + # ADT-CollectiveMind-Tweak-End - type: entity name: spitter @@ -362,6 +393,10 @@ - MobMask layer: - MobLayer + # ADT-CollectiveMind-Tweak-Start + - type: CollectiveMind + rankName: collective-mind-spitter-rank + # ADT-CollectiveMind-Tweak-End - type: entity name: space adder From 4329aa7bf7c1cd08d451cfa47d57a0efa5b0f704 Mon Sep 17 00:00:00 2001 From: FaDeOkno <143940725+FaDeOkno@users.noreply.github.com> Date: Sun, 20 Oct 2024 23:47:27 +0400 Subject: [PATCH 34/34] =?UTF-8?q?=D1=8B=20(#610)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Описание PR Ченджлог ## Почему / Баланс Багфикс **Ссылка на публикацию в Discord** ## Техническая информация ## Медиа ## Требования - [x] Я прочитал(а) и следую [Руководство по созданию пулл реквестов](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). Я понимаю, что в противном случае мой ПР может быть закрыт по усмотрению мейнтейнера. - [x] Я добавил скриншоты/видео к этому пулл реквесту, демонстрирующие его изменения в игре, **или** этот пулл реквест не требует демонстрации в игре ## Критические изменения **Чейнджлог** :cl: Котя - fix: Теперь при наведении на лежачего персонажа, даже если он под столом и предметами, пули будут попадать. --------- Co-authored-by: Schrödinger <132720404+Schrodinger71@users.noreply.github.com> Co-authored-by: bananchiki <87230164+Darkiich@users.noreply.github.com> Co-authored-by: Inconnu <177014427+Inconnu1337@users.noreply.github.com> --- .../Weapons/Ranged/Systems/GunSystem.cs | 15 ++++++++++++++- .../Systems/RequireProjectileTargetSystem.cs | 15 +++++++++++++-- .../Components/TargetedProjectileComponent.cs | 5 +++++ 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs index f72af1deef1..e53860efd17 100644 --- a/Content.Server/Weapons/Ranged/Systems/GunSystem.cs +++ b/Content.Server/Weapons/Ranged/Systems/GunSystem.cs @@ -40,6 +40,7 @@ public sealed partial class GunSystem : SharedGunSystem [Dependency] private readonly StaminaSystem _stamina = default!; [Dependency] private readonly StunSystem _stun = default!; [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; private const float DamagePitchVariation = 0.05f; public const float GunClumsyChance = 0.5f; @@ -191,12 +192,23 @@ public override void Shoot(EntityUid gunUid, GunComponent gun, List<(EntityUid? // Checks if the laser should pass over unless targeted by its user foreach (var collide in rayCastResults) { + // ADT Crawling abuse fix start + foreach (var item in _lookup.GetEntitiesInRange(toCoordinates, 0.5f)) + { + if (item == collide.HitEntity && TryComp(item, out var require) && require.Active) + { + result = collide; + break; + } + } + if (result.Equals(collide)) + break; + // ADT Crawling abuse fix end if (collide.HitEntity != gun.Target && CompOrNull(collide.HitEntity)?.Active == true) { continue; } - result = collide; break; } @@ -319,6 +331,7 @@ private void ShootOrThrow(EntityUid uid, Vector2 mapDirection, Vector2 gunVeloci { var targeted = EnsureComp(uid); targeted.Target = target; + targeted.TargetCoords = gun.ShootCoordinates; // ADT-Crawling-Abuse-Tweak Dirty(uid, targeted); } diff --git a/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs b/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs index 12838eb04d9..209704064b8 100644 --- a/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs +++ b/Content.Shared/Damage/Systems/RequireProjectileTargetSystem.cs @@ -9,6 +9,7 @@ namespace Content.Shared.Damage.Components; public sealed class RequireProjectileTargetSystem : EntitySystem { [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; public override void Initialize() { @@ -26,9 +27,19 @@ private void PreventCollide(Entity ent, ref Pr return; var other = args.OtherEntity; - if (TryComp(other, out ProjectileComponent? projectile) && - CompOrNull(other)?.Target != ent) + if (TryComp(other, out ProjectileComponent? projectile)) { + // ADT Crawling abuse fix start + if (TryComp(other, out var targeted) && targeted.TargetCoords != null) + { + foreach (var item in _lookup.GetEntitiesInRange(targeted.TargetCoords.Value, 0.5f)) + { + if (item == ent.Owner) + return; + } + } + // ADT Crawling abuse fix end + // Prevents shooting out of while inside of crates var shooter = projectile.Shooter; if (!shooter.HasValue) diff --git a/Content.Shared/Weapons/Ranged/Components/TargetedProjectileComponent.cs b/Content.Shared/Weapons/Ranged/Components/TargetedProjectileComponent.cs index b804176497d..550c0f38e9b 100644 --- a/Content.Shared/Weapons/Ranged/Components/TargetedProjectileComponent.cs +++ b/Content.Shared/Weapons/Ranged/Components/TargetedProjectileComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Weapons.Ranged.Systems; using Robust.Shared.GameStates; +using Robust.Shared.Map; namespace Content.Shared.Weapons.Ranged.Components; @@ -9,4 +10,8 @@ public sealed partial class TargetedProjectileComponent : Component { [DataField, AutoNetworkedField] public EntityUid Target; + + // ADT Crawling abuse fix + [DataField, AutoNetworkedField] + public EntityCoordinates? TargetCoords; }

  • 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 z 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®4{f6W~&G!n$s$qVrmEYDYhPr#Hrs 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%0DRB#Z@z!U%rv|H4nrz-8MZ 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%0Aq& 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