diff --git a/.github/labeler.yml b/.github/labeler.yml index b088f22943..40c1888135 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,12 +1,24 @@ -"Changes: Sprites": -- '**/*.rsi/*.png' +"Changes: C#": + - "**/*.cs" + +"Changes: Documentation": + - "**/*.xml" + - "**/*.md" + +"Changes: Localization": +- 'Resources/Locale/**/*.ftl' "Changes: Map": -- 'Resources/Maps/*.yml' -- 'Resources/Prototypes/Maps/*.yml' + - "Resources/Maps/**/*.yml" + - "Resources/Prototypes/Maps/**/*.yml" + +"Changes: Sprite": + - "**/*.rsi/*.png" + - "**/*.rsi/*.json" "Changes: UI": -- '**/*.xaml*' + - "**/*.xaml*" -"No C#": -- all: ["!**/*.cs"] +"Changes: YML": + - any: ["**/*.yml"] + all: ["!Resources/Maps/**/*.yml", "!Resources/Prototypes/Maps/**/*.yml"] diff --git a/.github/workflows/conflict-labeler.yml b/.github/workflows/conflict-labeler.yml index 3c7a482a4f..e36dba3956 100644 --- a/.github/workflows/conflict-labeler.yml +++ b/.github/workflows/conflict-labeler.yml @@ -14,6 +14,6 @@ jobs: - name: Check for Merge Conflicts uses: ike709/actions-label-merge-conflict@9eefdd17e10566023c46d2dc6dc04fcb8ec76142 with: - dirtyLabel: "Merge Conflict" + dirtyLabel: "Status: Merge Conflict" repoToken: "${{ secrets.GITHUB_TOKEN }}" commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request." diff --git a/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs b/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs index 1ec19ad411..699b4ae670 100644 --- a/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs +++ b/Content.Client/MassMedia/Ui/NewsWriteBoundUserInterface.cs @@ -74,7 +74,7 @@ private void OnShareButtonPressed() var stringName = _menu.NameInput.Text; var name = (stringName.Length <= 25 ? stringName.Trim() : $"{stringName.Trim().Substring(0, 25)}..."); article.Name = name; - article.Content = stringContent; + article.Content = stringContent.Substring(0, Math.Min(stringContent.Length, 32768)); article.ShareTime = _gameTiming.CurTime.Subtract(_gameTicker.RoundStartTimeSpan); _menu.ContentInput.TextRope = new Rope.Leaf(string.Empty); diff --git a/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs new file mode 100644 index 0000000000..97fde3f70d --- /dev/null +++ b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs @@ -0,0 +1,223 @@ +using Robust.Shared.Prototypes; + +namespace Content.Server.Roboisseur.Roboisseur +{ + [RegisterComponent] + public sealed class RoboisseurComponent : Component + { + [ViewVariables] + [DataField("accumulator")] + public float Accumulator = 0f; + + [ViewVariables(VVAccess.ReadOnly)] + [DataField("impatient")] + public Boolean Impatient { get; set; } = false; + + [ViewVariables] + [DataField("resetTime")] + public TimeSpan ResetTime = TimeSpan.FromMinutes(10); + + [DataField("barkAccumulator")] + public float BarkAccumulator = 0f; + + [DataField("barkTime")] + public TimeSpan BarkTime = TimeSpan.FromMinutes(1); + + [ViewVariables(VVAccess.ReadWrite)] + public EntityPrototype DesiredPrototype = default!; + + [DataField("demandMessages")] + public IReadOnlyList DemandMessages = new[] + { + "roboisseur-request-1", + "roboisseur-request-2", + "roboisseur-request-3", + "roboisseur-request-4", + "roboisseur-request-5", + "roboisseur-request-6" + }; + + [DataField("impatientMessages")] + public IReadOnlyList ImpatientMessages = new[] + { + "roboisseur-request-impatient-1", + "roboisseur-request-impatient-2", + "roboisseur-request-impatient-3", + }; + + [DataField("demandMessagesTier2")] + public IReadOnlyList DemandMessagesTier2 = new[] + { + "roboisseur-request-second-1", + "roboisseur-request-second-2", + "roboisseur-request-second-3" + }; + + [DataField("rewardMessages")] + public IReadOnlyList RewardMessages = new[] + { + "roboisseur-thanks-1", + "roboisseur-thanks-2", + "roboisseur-thanks-3", + "roboisseur-thanks-4", + "roboisseur-thanks-5" + }; + + [DataField("rewardMessagesTier2")] + public IReadOnlyList RewardMessagesTier2 = new[] + { + "roboisseur-thanks-second-1", + "roboisseur-thanks-second-2", + "roboisseur-thanks-second-3", + "roboisseur-thanks-second-4", + "roboisseur-thanks-second-5" + }; + + [DataField("rejectMessages")] + public IReadOnlyList RejectMessages = new[] + { + "roboisseur-deny-1", + "roboisseur-deny-2", + "roboisseur-deny-3" + }; + + [DataField("tier2Protos")] + public List Tier2Protos = new() + { + "FoodBurgerEmpowered", + "FoodSoupClown", + "FoodSoupChiliClown", + "FoodBurgerSuper", + "FoodNoodlesCopy", + "FoodMothMallow", + "FoodPizzaCorncob", + "FoodPizzDonkpocket", + "FoodSoupMonkey", + "FoodMothSeedSoup", + "FoodTartGrape", + "FoodMealCubancarp", + "FoodMealSashimi", + "FoodBurgerCarp", + "FoodMealTaco", + "FoodMothMacBalls", + "FoodSoupNettle", + "FoodBurgerDuck", + "FoodBurgerBaseball" + }; + + [DataField("tier3Protos")] + public List Tier3Protos = new() + { + "FoodBurgerGhost", + "FoodSaladWatermelonFruitBowl", + "FoodBakedCannabisBrownieBatch", + "FoodPizzaDank", + "FoodBurgerBear", + "FoodBurgerMime", + "FoodCakeSuppermatter", + "FoodSoupChiliCold", + "FoodSoupBisque", + "FoodCakeSlime", + "FoodBurgerCrazy" + }; + + [DataField("robossuierRewards")] + public IReadOnlyList RobossuierRewards = new[] + { + "DrinkIceCreamGlass", + "FoodFrozenPopsicleOrange", + "FoodFrozenPopsicleBerry", + "FoodFrozenPopsicleJumbo", + "FoodFrozenSnowconeBerry", + "FoodFrozenSnowconeFruit", + "FoodFrozenSnowconeClown", + "FoodFrozenSnowconeMime", + "FoodFrozenSnowconeRainbow", + "FoodFrozenCornuto", + "FoodFrozenSundae", + "FoodFrozenFreezy", + "FoodFrozenSandwichStrawberry", + "FoodFrozenSandwich", + }; + + [DataField("blacklistedProtos")] + public IReadOnlyList BlacklistedProtos = new[] + { + "FoodMothPesto", + "FoodBurgerSpell", + "FoodBreadBanana", + "FoodMothSqueakingFry", + "FoodMothFleetSalad", + "FoodBreadMeatSpider", + "FoodBurgerHuman", + "FoodNoodlesBoiled", + "FoodMothOatStew", + "FoodMeatLizardtailKebab", + "FoodSoupTomato", + "FoodDonkpocketGondolaWarm", + "FoodDonkpocketBerryWarm", + "LockboxDecloner", + "FoodBreadButteredToast", + "FoodMothCottonSoup", + "LeavesTobaccoDried", + "FoodSoupEyeball", + "FoodMothKachumbariSalad", + "FoodMeatHumanKebab", + "FoodMeatRatdoubleKebab", + "FoodBurgerCorgi", + "FoodBreadPlain", + "FoodMeatKebab", + "FoodBreadBun", + "FoodBurgerCat", + "FoodSoupTomatoBlood", + "FoodMothSaladBase", + "FoodPieXeno", + "FoodDonkpocketTeriyakiWarm", + "FoodMothBakedCheese", + "FoodMothTomatoSauce", + "FoodMothPizzaCotton", + "AloeCream", + "FoodSnackPopcorn", + "FoodBurgerSoy", + "FoodMothToastedSeeds", + "FoodMothCornmealPorridge", + "FoodMothBakedCorn", + "FoodBreadMoldySlice", + "FoodRiceBoiled", + "FoodMothEyeballSoup", + "FoodMeatRatKebab", + "FoodBreadCreamcheese", + "FoodSoupOnion", + "FoodBurgerAppendix", + "FoodBurgerRat", + "RegenerativeMesh", + "FoodCheeseCurds", + "FoodDonkpocketHonkWarm", + "FoodOatmeal", + "FoodBreadJellySlice", + "FoodMothCottonSalad", + "FoodBreadMoldy", + "FoodDonkpocketSpicyWarm", + "FoodCannabisButter", + "FoodNoodles", + "FoodBreadMeat", + "LeavesCannabisDried", + "FoodBurgerCheese", + "FoodDonkpocketDankWarm", + "FoodSpaceshroomCooked", + "FoodMealFries", + "MedicatedSuture", + "FoodDonkpocketWarm", + "FoodCakePlain", + "DisgustingSweptSoup", + "FoodBurgerPlain", + "FoodBreadGarlicSlice", + "FoodSoupMushroom", + "FoodSoupWingFangChu", + "FoodBreadMeatXeno", + "FoodCakeBrain", + "FoodBurgerBrain", + "FoodSaladCaesar" + }; + } +} diff --git a/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs new file mode 100644 index 0000000000..40d49fc4c0 --- /dev/null +++ b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs @@ -0,0 +1,186 @@ +using Content.Shared.Interaction; +using Content.Shared.Mobs.Components; +using Content.Server.Chat.Systems; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Content.Shared.Random.Helpers; +using Content.Shared.Kitchen; +using Robust.Server.GameObjects; +using Content.Server.Materials; + +namespace Content.Server.Roboisseur.Roboisseur +{ + public sealed partial class RoboisseurSystem : EntitySystem + { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly MaterialStorageSystem _material = default!; + [Dependency] private readonly AppearanceSystem _appearance = default!; + + + public override void Initialize() + { + base.Initialize(); + + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnInteractHand); + SubscribeLocalEvent(OnInteractUsing); + } + + + private void OnInit(EntityUid uid, RoboisseurComponent component, ComponentInit args) + { + NextItem(component); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + + foreach (var roboisseur in EntityQuery()) + { + roboisseur.Accumulator += frameTime; + roboisseur.BarkAccumulator += frameTime; + if (roboisseur.BarkAccumulator >= roboisseur.BarkTime.TotalSeconds) + { + roboisseur.BarkAccumulator = 0; + string message = Loc.GetString(_random.Pick(roboisseur.DemandMessages), ("item", roboisseur.DesiredPrototype.Name)); + if (roboisseur.ResetTime.TotalSeconds - roboisseur.Accumulator < 120) + { + roboisseur.Impatient = true; + message = Loc.GetString(_random.Pick(roboisseur.ImpatientMessages), ("item", roboisseur.DesiredPrototype.Name)); + } + else if (CheckTier(roboisseur.DesiredPrototype.ID, roboisseur) > 2) + message = Loc.GetString(_random.Pick(roboisseur.DemandMessagesTier2), ("item", roboisseur.DesiredPrototype.Name)); + _chat.TrySendInGameICMessage(roboisseur.Owner, message, InGameICChatType.Speak, false); + } + + if (roboisseur.Accumulator >= roboisseur.ResetTime.TotalSeconds) + { + roboisseur.Impatient = false; + NextItem(roboisseur); + } + } + } + + private void RewardServicer(EntityUid uid, RoboisseurComponent component, int tier) + { + var r = new Random(); + int rewardToDispense = r.Next(100, 350) + 250 * tier; + + _material.SpawnMultipleFromMaterial(rewardToDispense, "Credit", Transform(uid).Coordinates); + if(tier > 1) + { + while (tier != 0) + { + EntityManager.SpawnEntity(_random.Pick(component.RobossuierRewards), Transform(uid).Coordinates); + tier--; + } + } + return; + } + + private void OnInteractHand(EntityUid uid, RoboisseurComponent component, InteractHandEvent args) + { + if (!TryComp(args.User, out var actor)) + return; + + string message = Loc.GetString(_random.Pick(component.DemandMessages), ("item", component.DesiredPrototype.Name)); + if (CheckTier(component.DesiredPrototype.ID, component) > 1) + message = Loc.GetString(_random.Pick(component.DemandMessagesTier2), ("item", component.DesiredPrototype.Name)); + + _chat.TrySendInGameICMessage(component.Owner, message, InGameICChatType.Speak, false); + } + + private void OnInteractUsing(EntityUid uid, RoboisseurComponent component, InteractUsingEvent args) + { + if (HasComp(args.Used) || + MetaData(args.Used)?.EntityPrototype == null) + return; + + var validItem = CheckValidity(MetaData(args.Used).EntityName, component.DesiredPrototype); + var nextItem = true; + + if (!validItem) + { + _chat.TrySendInGameICMessage(uid, Loc.GetString(_random.Pick(component.RejectMessages)), InGameICChatType.Speak, true); + return; + } + + component.Impatient = false; + EntityManager.QueueDeleteEntity(args.Used); + + int tier = CheckTier(component.DesiredPrototype.ID, component); + + string message = Loc.GetString(_random.Pick(component.RewardMessages)); + if (tier > 1) + message = Loc.GetString(_random.Pick(component.RewardMessagesTier2)); + _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Speak, true); + + RewardServicer(args.User, component, tier); + + if (nextItem) + NextItem(component); + } + + private bool CheckValidity(String name, EntityPrototype target) + { + // 1: directly compare Names + // name instead of ID because the oracle asks for them by name + // this could potentially lead to like, labeller exploits maybe but so far only mob names can be fully player-set. + if (name == target.Name) + return true; + + return false; + } + + private int CheckTier(String target, RoboisseurComponent component) + { + if (component.Tier2Protos.Contains(target)) + return 2; + if (component.Tier3Protos.Contains(target)) + return 3; + return 1; + } + + private void NextItem(RoboisseurComponent component) + { + component.Accumulator = 0; + component.BarkAccumulator = 0; + var protoString = GetDesiredItem(component); + + if (_prototypeManager.TryIndex(protoString, out var proto)) + component.DesiredPrototype = proto; + else + Log.Error("Roboisseur can't index prototype " + protoString); + } + + private string GetDesiredItem(RoboisseurComponent component) + { + return _random.Pick(GetAllProtos(component)); + } + + public List GetAllProtos(RoboisseurComponent component) + { + + var allRecipes = _prototypeManager.EnumeratePrototypes(); + var allProtos = new List(); + + foreach (var recipe in allRecipes) + allProtos.Add(recipe.Result); + + foreach (var proto in component.BlacklistedProtos) + allProtos.Remove(proto); + + return allProtos; + } + } + + public enum RobossieurVisualLayers : byte + { + Angry + } +} diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index 403687d672..d561f03076 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -1,7 +1,10 @@ +using Content.Server.Administration.Logs; +using Content.Server.Chat.Managers; using Content.Server.MassMedia.Components; using Content.Server.PDA.Ringer; using Content.Shared.Access.Components; using Content.Shared.Access.Systems; +using Content.Shared.Database; using Content.Shared.GameTicking; using Content.Shared.MassMedia.Components; using Content.Shared.MassMedia.Systems; @@ -26,6 +29,8 @@ public sealed class NewsSystem : EntitySystem [Dependency] private readonly CartridgeLoaderSystem? _cartridgeLoaderSystem = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; + [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly AccessReaderSystem _accessReader = default!; @@ -113,6 +118,17 @@ public void OnWriteUiShareMessage(EntityUid uid, NewsWriteComponent component, N && _accessReader.FindAccessItemsInventory(author.Value, out var items) && _accessReader.FindStationRecordKeys(author.Value, out var stationRecordKeys, items)) { + if (article.Content.Length > 8192) { + if (article.Content.Length > 32768) { + _adminLogger.Add(LogType.Action, LogImpact.Extreme, $"{ToPrettyString(author.Value):player} has sent a news article above the size limit ({article.Content.Length} > 32768 characters long)."); + _chat.SendAdminAlert(author.Value, $"has sent a news article above the size limit ({article.Content.Length} > 32768 characters long)."); + article.Content = msg.Article.Content.Substring(0, 32768); + } + else { + _adminLogger.Add(LogType.Action, LogImpact.High, $"{ToPrettyString(author.Value):player} has sent a large news article ({article.Content.Length} > 8192 characters long)."); + _chat.SendAdminAlert(author.Value, $"has sent a large news article ({article.Content.Length} characters long)."); + } + } article.AuthorStationRecordKeyIds = stationRecordKeys; foreach (var item in items) diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index a0551a56ae..cde745aae8 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -453,3 +453,41 @@ Entries: any bugs/issues in the mapping channel in Discord. id: 61 time: '2023-09-14T16:14:37.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: >- + Paramedics now spawn with their respective equipment for retrieving + crewmates more effectively. + id: 62 + time: '2023-09-19T15:38:37.0000000+00:00' +- author: JJ + changes: + - type: Add + message: Added recipe for Blue Curacao + id: 63 + time: '2023-09-21T00:12:21.0000000+00:00' +- author: JJ + changes: + - type: Add + message: Added Grilled Cheese. + id: 64 + time: '2023-09-21T15:57:11.0000000+00:00' +- author: PHCodes + changes: + - type: Add + message: 'Added Mr. Butlertron, the Roboisseur ' + id: 65 + time: '2023-09-22T03:04:34.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: Adjusted the rules. Rules rool!!1 + id: 66 + time: '2023-09-26T16:57:12.0000000+00:00' +- author: leonardo-dabepis + changes: + - type: Tweak + message: bees can now be put in inventory and ground up as a beverage/ingredient + id: 67 + time: '2023-09-28T17:52:08.0000000+00:00' diff --git a/Resources/Locale/en-US/deltav/roboisseur/roboisseur.ftl b/Resources/Locale/en-US/deltav/roboisseur/roboisseur.ftl new file mode 100644 index 0000000000..c24c3dc259 --- /dev/null +++ b/Resources/Locale/en-US/deltav/roboisseur/roboisseur.ftl @@ -0,0 +1,25 @@ +roboisseur-request-1 = I humbly request one {$item} for my wealthiest client. +roboisseur-request-2 = Oodles of dough await you, for a nice {$item}! +roboisseur-request-3 = There may be an exorbitantly affluent personage in this sector looking for {INDEFINITE($item)} {$item}. +roboisseur-request-4 = My more... Adventurous Clients require {INDEFINITE($item)} {$item}. +roboisseur-request-5 = {$item}. It's rare. It's valuable. You can make it, yes? +roboisseur-request-6 = Local changes in this quadrant's stock exchange decteted. Seeking {INDEFINITE($item)} {$item}. +roboisseur-request-impatient-1 = There is no time left! Bring me {THE($item)}, immediately! +roboisseur-request-impatient-2 = My market opportunity is dwindling! Quickly, you fools, {THE($item)}! +roboisseur-request-impatient-3 = Damn you all! Deliver me {INDEFINITE($item)} {$item} already! +roboisseur-request-second-1 = I humbly request one {$item} for one of my snowbound clients. +roboisseur-request-second-2 = The frozen planet in this sector requests {INDEFINITE($item)} {$item}! +roboisseur-request-second-3 = A local ice cream vendor is looking to trade for {INDEFINITE($item)} {$item}. +roboisseur-thanks-1 = Mmm, I'm sure my client will be most pleased. +roboisseur-thanks-2 = I cannot believe you were able to source it, but I suppose you are the best. +roboisseur-thanks-3 = When I first heard there were such skilled creatives on this station, I was shocked. My thanks. +roboisseur-thanks-4 = Unlike... most of your coworkers, my clients can afford these delicacies! +roboisseur-thanks-5 = You have my word, my nominal fees are... more than reasonable. +roboisseur-thanks-second-1 = You shared your hopsitality, now they share their frozen delights. +roboisseur-thanks-second-2 = A cold, sweet treat should be reward enough, but have some cold, hard cash too. +roboisseur-thanks-second-3 = While the iced delicacy alone is currency to them, they understand your needs. +roboisseur-thanks-second-4 = Summer on their planet lasts for only two weeks. You have their thanks. +roboisseur-thanks-second-5 = My client's pockets are as deep as their world is cold. +roboisseur-deny-1 = Kindly prepare the correct item. +roboisseur-deny-2 = This is not what we agreed. +roboisseur-deny-3 = Not what the client's looking for. diff --git a/Resources/Maps/arena.yml b/Resources/Maps/arena.yml index 95f14c151d..093e5653ab 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/arena.yml @@ -81,7 +81,7 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: KwAAASsAAAIrAAABPQAAAB0AAAEdAAADPQAAACMAAAAjAAABIwAAAyMAAAEjAAABIwAAACMAAAMjAAABIwAAASsAAAIrAAADKwAAAD0AAAAdAAADHQAAAz0AAAAjAAABIwAAACMAAAEjAAAAIwAAASMAAAEjAAADIwAAAiMAAAA9AAAAPQAAAD0AAABhAAAAHQAAAx0AAAFhAAAAIwAAACMAAAE9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABhAAAARwAAAEcAAAFHAAAARwAAA0cAAABHAAACRwAAA0cAAAFHAAACRwAAAEcAAABHAAACRwAAAEcAAABHAAADRwAAA0cAAAJHAAACKAAAAkcAAANHAAAAKAAAAkcAAABHAAADKAAAAkcAAANHAAAAKAAAAEcAAAJHAAABKAAAAkcAAABHAAABRwAAA0cAAAFHAAADRwAAAEcAAAJHAAAARwAAAkcAAAJHAAACRwAAAEcAAABHAAABRwAAAUcAAAJHAAABRwAAAEcAAAAoAAAARwAAAUcAAAEoAAACRwAAA0cAAAIoAAADRwAAAEcAAAEoAAADRwAAAUcAAAEoAAAARwAAAkcAAANHAAACRwAAAkcAAAJHAAAARwAAA0cAAAFHAAACRwAAAEcAAAJHAAACRwAAA0cAAAFHAAACRwAAAUcAAAJhAAAAYQAAAD0AAAA9AAAAPQAAAD0AAABhAAAAYQAAAGEAAABhAAAAYQAAAE0AAANhAAAAPQAAAE0AAABNAAABGAAAARgAAAMYAAAAGAAAAxgAAAMYAAABGAAAARgAAANNAAABPQAAAD0AAABNAAABYQAAAD0AAABNAAACTQAAAhgAAAEYAAACGAAAABgAAAIYAAADGAAAAxgAAABhAAAATQAAAk0AAAJNAAADTQAAAGEAAAA9AAAATQAAAU0AAABhAAAAYQAAABgAAAMYAAAAGAAAABgAAAIYAAACYQAAAE0AAAFNAAADTQAAAU0AAABhAAAAPQAAAE0AAAFNAAACYQAAABgAAAIYAAACGAAAARgAAAMYAAAAGAAAA2EAAABNAAAATQAAAE0AAANNAAACYQAAAD0AAABNAAACTQAAA2EAAAAYAAADGAAAAxgAAAEYAAADGAAAAhgAAAJhAAAATQAAA00AAAJNAAAATQAAAWEAAAA9AAAATQAAA00AAAFhAAAAYQAAAD0AAAA9AAAAGAAAAD0AAAA9AAAAYQAAAE0AAAE9AAAAPQAAAE0AAAFhAAAAPQAAAE0AAAJNAAABPQAAAD0AAAA9AAAAPQAAAE0AAAI9AAAAPQAAAGEAAABNAAACPQAAAD0AAABNAAADYQAAAD0AAABNAAABTQAAAw== + tiles: KwAAASsAAAIrAAABPQAAAB0AAAEdAAADPQAAACMAAAAjAAABIwAAAyMAAAEjAAABIwAAACMAAAMjAAABIwAAASsAAAIrAAADKwAAAD0AAAAdAAADHQAAAz0AAAAjAAABIwAAACMAAAEjAAAAIwAAASMAAAEjAAADIwAAAiMAAAA9AAAAPQAAAD0AAABhAAAAHQAAAx0AAAFhAAAAIwAAACMAAAE9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAABhAAAARwAAAEcAAAFHAAAARwAAA0cAAABHAAACRwAAA0cAAAFHAAACRwAAAEcAAABHAAACRwAAAEcAAABHAAADRwAAA0cAAAJHAAACKAAAAkcAAANHAAAAKAAAAkcAAABHAAADKAAAAkcAAANHAAAAKAAAAEcAAAJHAAABKAAAAkcAAABHAAABRwAAA0cAAAFHAAADRwAAAEcAAAJHAAAARwAAAkcAAAJHAAACRwAAAEcAAABHAAABRwAAAUcAAAJHAAABRwAAAEcAAAAoAAAARwAAAUcAAAEoAAACRwAAA0cAAAIoAAADRwAAAEcAAAEoAAADRwAAAUcAAAEoAAAARwAAAkcAAANHAAACRwAAAkcAAAJHAAAARwAAA0cAAAFHAAACRwAAAEcAAAJHAAACRwAAA0cAAAFHAAACRwAAAUcAAAJhAAAAYQAAAD0AAAA9AAAAPQAAAD0AAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAPQAAAE0AAABNAAABGAAAARgAAAMYAAAAGAAAAxgAAAMYAAABGAAAARgAAANNAAABPQAAAD0AAABNAAABTQAAAE0AAABNAAACTQAAAhgAAAEYAAACGAAAABgAAAIYAAADGAAAAxgAAABhAAAATQAAAk0AAAJNAAADTQAAAGEAAAA9AAAATQAAAU0AAABhAAAAYQAAABgAAAMYAAAAGAAAABgAAAIYAAACYQAAAE0AAAFNAAADTQAAAU0AAABhAAAAPQAAAE0AAAFNAAACYQAAABgAAAIYAAACGAAAARgAAAMYAAAAGAAAA2EAAABNAAAATQAAAE0AAANNAAACYQAAAD0AAABNAAACTQAAA2EAAAAYAAADGAAAAxgAAAEYAAADGAAAAhgAAAJhAAAATQAAA00AAAJNAAAATQAAAWEAAAA9AAAATQAAA00AAAFhAAAAYQAAAD0AAAA9AAAAGAAAAD0AAAA9AAAAYQAAAE0AAAE9AAAAPQAAAE0AAAFhAAAAPQAAAE0AAAJNAAABPQAAAD0AAAA9AAAAPQAAAE0AAAI9AAAAPQAAAGEAAABNAAACPQAAAD0AAABNAAADYQAAAD0AAABNAAABTQAAAw== -1,0: ind: -1,0 tiles: TQAAAk0AAABNAAABTQAAA00AAANNAAACPQAAAD0AAABNAAABPQAAAD0AAABNAAADPQAAAD0AAABNAAACTQAAAU0AAAFNAAAATQAAAk0AAAFNAAAATQAAA00AAAFNAAADTQAAAk0AAABNAAACTQAAAU0AAAFNAAADTQAAAE0AAAM9AAAAPQAAAD0AAABNAAAATQAAAk0AAAE9AAAAPQAAAD0AAABNAAADPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAYQAAAGEAAAA9AAAAPQAAAD0AAAA9AAAAPQAAAGEAAABhAAAATQAAAmEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAUQAAAFEAAABRAAAAYQAAAFEAAABRAAAAUQAAAFEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAABAAAAGEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAABRAAAAUQAAAFEAAAAEAAACYQAAAGEAAABhAAAAYQAAAAQAAAFhAAAAYQAAAGEAAABhAAAAYQAAAGEAAAAEAAAABAAAAQQAAAIEAAAABAAAAAQAAAEEAAAABAAAAgQAAAEEAAABBAAAAgQAAAIEAAACBAAAAAQAAAAEAAAABAAAAAQAAAIEAAAABAAAAQQAAAIEAAABBAAAAgQAAAIEAAAABAAAAAQAAAAEAAAABAAAAgQAAAAEAAACBAAAAQQAAAEEAAAABAAAAAQAAAAEAAAABAAAAAQAAAIEAAABNQAAAAQAAAIEAAACBAAAAgQAAAAEAAAABAAAAQQAAAAEAAABBAAAAgQAAAAEAAACBAAAAgQAAAEEAAAABAAAATUAAAAEAAACBAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAQQAAAI1AAAABAAAAQQAAAAEAAAABAAAAAQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgQAAAIEAAACBAAAAgQAAAEEAAACBAAAAAQAAAEEAAACBAAAAAQAAAIEAAABBAAAAAQAAAEEAAABBAAAAgQAAAAEAAACBAAAAQQAAAIEAAAABAAAAgQAAAIEAAABBAAAAgQAAAAEAAABBAAAAgQAAAAEAAABBAAAAQQAAAAEAAAABAAAAgQAAAIEAAAABAAAAAQAAAAEAAABBAAAAQQAAAAEAAABBAAAAgQAAAEEAAAABAAAAgQAAAEEAAAABAAAAQQAAAIEAAACBAAAAAQAAAIEAAAABAAAAA== @@ -96,7 +96,7 @@ entities: tiles: PQAAAD0AAAA9AAAAYQAAAGEAAABHAAACPQAAAGEAAABHAAABPQAAAGEAAABHAAACPQAAAGEAAAA9AAAATQAAAD0AAAA9AAAAPQAAAD0AAABhAAAARwAAAkcAAAFhAAAARwAAAkcAAAJhAAAARwAAAEcAAABhAAAAPQAAAE0AAAA9AAAAPQAAAD0AAAA9AAAAYQAAAEcAAAJHAAADYQAAAEcAAAFHAAADYQAAAEcAAABHAAACYQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAD0AAAA9AAAAPQAAAGEAAAAEAAABBAAAAQQAAAAEAAABBAAAAAQAAAAEAAACBAAAAmEAAABhAAAAYQAAAGEAAAA9AAAAPQAAAD0AAABhAAAABAAAAgQAAAIEAAAABAAAAQQAAAIEAAACBAAAAAQAAAJRAAAAUQAAAFEAAABRAAAAPQAAAAQAAAAEAAAABAAAAgQAAAEEAAABBAAAAAQAAAEEAAAABAAAAQQAAAIEAAACYQAAAGEAAABhAAAABAAAAT0AAAA9AAAABAAAAAQAAAEEAAACBAAAAAQAAAEEAAABBAAAAgQAAAIEAAABBAAAAgQAAAEEAAABBAAAAgQAAAE9AAAAPQAAAD0AAAAEAAABBAAAAQQAAAIEAAACBAAAAQQAAAAEAAAABAAAAQQAAAIEAAAABAAAAgQAAAEEAAABBAAAAgQAAAIEAAACBAAAAgQAAAEEAAACBAAAAAQAAAEEAAAABAAAAQQAAAAEAAABBAAAAgQAAAEEAAAABAAAAgQAAAAEAAACBAAAAgQAAAIEAAABBAAAAgQAAAAEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAACBAAAAAQAAABhAAAABAAAAQQAAAAEAAABBAAAAAQAAAIEAAACBAAAAgQAAAAEAAAABAAAAAQAAAEEAAACBAAAAQQAAAIEAAABBAAAAQQAAAIEAAAABAAAAQQAAAEEAAAABAAAAgQAAAIEAAABBAAAAgQAAAEEAAABBAAAAgQAAAIEAAAABAAAAQQAAAAEAAACBAAAAAQAAAEEAAACBAAAAQQAAAIEAAACBAAAAQQAAAIEAAAABAAAAAQAAAAEAAAABAAAAQQAAAEEAAABBAAAAAQAAAIEAAAABAAAAgQAAAAEAAABBAAAAAQAAAAEAAACBAAAAgQAAAIEAAAABAAAAQQAAAAEAAACBAAAAQQAAAEEAAACBAAAAgQAAAAEAAACBAAAAAQAAAIEAAABBAAAAgQAAAIEAAACBAAAAAQAAAAEAAACBAAAAA== -2,-1: ind: -2,-1 - tiles: FgAAAxYAAAEWAAABFgAAA2EAAABUAAADVAAAAVQAAAJUAAABYQAAADAAAAAwAAAAMAAAADAAAAAwAAAAKwAAAE0AAAJNAAACPQAAAD0AAABhAAAAVAAAAFQAAAFUAAAAVAAAAmEAAAAwAAAAMAAAACgAAAEoAAACMAAAACsAAABNAAACTQAAAD0AAAA9AAAAYQAAAFQAAABUAAADVAAAA1QAAAJhAAAAMAAAADAAAAAwAAAAMAAAADAAAABhAAAATQAAAk0AAANNAAAAPQAAAGEAAABUAAACVAAAAlQAAABUAAABYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAE0AAAJNAAAAPQAAAD0AAABhAAAAVAAAAlQAAAFUAAAAVAAAAj0AAABUAAABVAAAAlQAAAFUAAABVAAAAT0AAABNAAAATQAAAT0AAAA9AAAAYQAAAFQAAAFUAAABVAAAAVQAAANUAAABVAAAAVQAAAFUAAACVAAAA1QAAABUAAACTQAAAk0AAAI9AAAAPQAAAGEAAABUAAABVAAAAlQAAABUAAAAPQAAAFQAAABUAAAAVAAAAlQAAABUAAADPQAAAE0AAANNAAADPQAAAD0AAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABUAAABVAAAA1QAAAJUAAACVAAAAD0AAABNAAAATQAAAD0AAAA9AAAAYQAAABgAAAIYAAABGAAAAhgAAAJhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAATQAAA00AAAM9AAAAPQAAAGEAAAAYAAABGAAAARgAAAMYAAABGAAAARgAAAIYAAADGAAAAWEAAAAYAAABGAAAAU0AAANNAAABTQAAAz0AAABhAAAAGAAAAxgAAAEYAAAAGAAAAmEAAAAYAAAAGAAAABgAAABhAAAAGAAAABgAAABNAAADTQAAAE0AAAA9AAAAYQAAABgAAAIYAAAAGAAAARgAAABhAAAAGAAAAxgAAAIYAAADYQAAAGEAAABhAAAATQAAAE0AAANNAAACPQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAD0AAAAYAAAAPQAAAGEAAAA9AAAAPQAAAE0AAAFNAAAATQAAAj0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAATQAAAj0AAAA9AAAAPQAAAD0AAABNAAABTQAAAk0AAAJNAAADTQAAAE0AAAFNAAACTQAAAU0AAANNAAAATQAAAU0AAAFNAAACTQAAA00AAAFNAAABTQAAAD0AAAA9AAAAPQAAAD0AAABNAAADPQAAAD0AAABNAAACPQAAAD0AAABNAAABPQAAAD0AAAA9AAAATQAAAQ== + tiles: FgAAAxYAAAEWAAABFgAAA2EAAABUAAADVAAAAVQAAAJUAAABYQAAADAAAAAwAAAAMAAAADAAAAAwAAAAKwAAAE0AAAJNAAACPQAAAD0AAABhAAAAVAAAAFQAAAFUAAAAVAAAAmEAAAAwAAAAMAAAACgAAAEoAAACMAAAACsAAABNAAACTQAAAD0AAAA9AAAAYQAAAFQAAABUAAADVAAAA1QAAAJhAAAAMAAAADAAAAAwAAAAMAAAADAAAABhAAAATQAAAk0AAANNAAAAPQAAAFQAAABUAAACVAAAAlQAAABUAAABYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAE0AAAJNAAAAPQAAAD0AAABhAAAAVAAAAlQAAAFUAAAAVAAAAj0AAABUAAABVAAAAlQAAAFUAAABVAAAAT0AAABNAAAATQAAAT0AAAA9AAAAYQAAAFQAAAFUAAABVAAAAVQAAANUAAABVAAAAVQAAAFUAAACVAAAA1QAAABUAAACTQAAAk0AAAI9AAAAPQAAAGEAAABUAAABVAAAAlQAAABUAAAAPQAAAFQAAABUAAAAVAAAAlQAAABUAAADPQAAAE0AAANNAAADPQAAAD0AAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABUAAABVAAAA1QAAAJUAAACVAAAAD0AAABNAAAATQAAAD0AAAA9AAAAYQAAABgAAAIYAAABGAAAAhgAAAJhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAATQAAA00AAAM9AAAAPQAAAGEAAAAYAAABGAAAARgAAAMYAAABGAAAARgAAAIYAAADGAAAAWEAAAAYAAABGAAAAU0AAANNAAABTQAAAz0AAABhAAAAGAAAAxgAAAEYAAAAGAAAAmEAAAAYAAAAGAAAABgAAABhAAAAGAAAABgAAABNAAADTQAAAE0AAAA9AAAAYQAAABgAAAIYAAAAGAAAARgAAABhAAAAGAAAAxgAAAIYAAADYQAAAGEAAABhAAAATQAAAE0AAANNAAACPQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAD0AAAAYAAAAPQAAAGEAAAA9AAAAPQAAAE0AAAFNAAAATQAAAj0AAAA9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAATQAAAj0AAAA9AAAAPQAAAD0AAABNAAABTQAAAk0AAAJNAAADTQAAAE0AAAFNAAACTQAAAU0AAANNAAAATQAAAU0AAAFNAAACTQAAA00AAAFNAAABTQAAAD0AAAA9AAAAPQAAAD0AAABNAAADPQAAAD0AAABNAAACPQAAAD0AAABNAAABPQAAAD0AAAA9AAAATQAAAQ== -1,1: ind: -1,1 tiles: BAAAAQQAAAAEAAABBAAAAQQAAAAEAAAABAAAAQQAAAAEAAABBAAAAgQAAAEEAAACBAAAAQQAAAAEAAABBAAAAAQAAAIEAAAACgAAAAoAAAAKAAAABAAAAAQAAAAEAAABBAAAAgQAAAAEAAACBAAAAAQAAAEEAAAABAAAAgQAAAEKAAAACgAAAAoAAAAKAAAACgAAAAoAAAAEAAAABAAAAAQAAAEEAAABBAAAAAQAAAEEAAAABAAAAgQAAAAEAAABBAAAAgQAAAIKAAAANQAAADUAAAAKAAAACgAAAAoAAAAEAAACBAAAAgQAAAEEAAAABAAAAAQAAAAEAAACBAAAAQQAAAIEAAABBAAAATUAAAA1AAAABAAAAgQAAAIKAAAACgAAAAQAAAEEAAABBAAAAgQAAAEEAAAABAAAAgQAAAAEAAACBAAAAQQAAAI1AAAANQAAAAQAAAAEAAACBAAAAAoAAAAEAAACBAAAAgQAAAEEAAABBAAAAAQAAAEEAAABBAAAAgQAAAAEAAACNQAAADUAAAAEAAACBAAAAQQAAAAEAAAABAAAAAQAAAIEAAABBAAAAQQAAAEEAAAABAAAAQQAAAAEAAABBAAAAjUAAAAEAAAABAAAAgQAAAIEAAAABAAAAQQAAAIEAAAABAAAAQAAAAAAAAAAAAAAAAAAAAAEAAACBAAAAQAAAABgAAAAYAAAAAAAAAAEAAACBAAAAQQAAAEEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAEAAAAAYAAAAGAAAAAAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAABgAAAAYAAAAGAAAABgAAAAAAAAAAQAAAIAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABhAAAAYQAAAGEAAABhAAAAAAAAAAAAAAAAAAAAAAAAAGAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAGEAAABhAAAAPQAAAAAAAAAAAAAAAAAAAGEAAABgAAAAYAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD0AAABhAAAAYQAAAD0AAAAAAAAAYAAAAGAAAABgAAAAYAAAAGAAAABgAAAAYAAAAGEAAAA9AAAAPQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAA== @@ -201,7 +201,7 @@ entities: tiles: UQAAABgAAAMeAAAAHgAAAB4AAAAeAAAAHgAAAEcAAAIYAAABGAAAAxgAAAIYAAABGAAAARgAAAEYAAABGAAAAWEAAABhAAAAHgAAABgAAAIYAAABGAAAAx4AAABhAAAAGAAAAxgAAAAYAAAAGAAAABgAAAAYAAAAGAAAARgAAAEYAAACYQAAAB4AAAAYAAACGAAAABgAAAAeAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAGAAAAhgAAAAeAAAAHgAAAB4AAAAeAAAAHgAAAGEAAABeAAAAXgAAA14AAABhAAAAPgAAAD4AAAA+AAAAPgAAABgAAANhAAAAGAAAAGEAAABhAAAAYQAAAGEAAABhAAAAXgAAA14AAANeAAAAYQAAAD4AAAA+AAAAPgAAAD4AAAAYAAAAYQAAABgAAAMYAAABGAAAABgAAAIYAAACYQAAAF4AAAFeAAAAXgAAAWEAAAA+AAAAPgAAAD4AAAA+AAAAGAAAAGEAAAAYAAABGAAAARgAAAEYAAAAGAAAAWEAAABhAAAAYQAAAF4AAABhAAAAYQAAAGEAAABeAAACYQAAABgAAABhAAAAGAAAARgAAAMYAAACGAAAAxgAAABhAAAAXgAAAF4AAABeAAACYQAAAF4AAAFeAAAAXgAAA14AAANhAAAAYQAAABgAAAMYAAACGAAAARgAAAMYAAABYQAAAF4AAANeAAACXgAAAF4AAANeAAABXgAAAF4AAAFeAAADGAAAABgAAAAYAAAAGAAAAhgAAAEYAAACGAAAAGEAAABhAAAAXgAAAmEAAABhAAAAXgAAAV4AAABeAAACXgAAABgAAAEYAAABGAAAAxgAAAIYAAADGAAAAxgAAANhAAAAXgAAAV4AAANhAAAAXgAAAl4AAAFeAAABXgAAAF4AAABhAAAAYQAAAD0AAAAYAAADPQAAAGEAAABhAAAAYQAAAF4AAAJeAAABXgAAA14AAABeAAABXgAAAV4AAABeAAACRwAAAEcAAANHAAABRwAAAEcAAAFHAAADRwAAAmEAAABhAAAAYQAAAGEAAABeAAAAXgAAAl4AAAJeAAABXgAAA0cAAAFHAAADRwAAAEcAAAJHAAABRwAAAEcAAAJhAAAAXgAAA14AAABeAAADXgAAAV4AAAJeAAAAXgAAAl4AAAFHAAABRwAAA0cAAAJHAAABRwAAAEcAAANHAAAAYQAAAF4AAABeAAACXgAAAF4AAANeAAACXgAAAF4AAAJeAAADRwAAAUcAAABHAAABRwAAAEcAAANHAAADRwAAAGEAAABhAAAAYQAAAGEAAABhAAAAPQAAAF4AAAA9AAAAYQAAAA== 1,-4: ind: 1,-4 - tiles: GAAAABgAAAEYAAAAGAAAAxgAAAEYAAADGAAAAxgAAAIYAAABGAAAAhgAAAMYAAADGAAAAhgAAAFhAAAAYQAAABgAAAMYAAACGAAAARgAAAEYAAAAGAAAARgAAANhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAABgAAAEYAAACHAAAAhgAAAMYAAADYQAAAF8AAANfAAABXwAAAl8AAAFfAAACXwAAAF8AAANfAAAAPgAAAGEAAAAYAAADGAAAARwAAAAYAAABGAAAA2EAAABfAAACXwAAA18AAANfAAABXwAAA18AAANfAAACXwAAAD4AAABhAAAAGAAAAhgAAAEcAAADGAAAABgAAANhAAAAXwAAAl8AAAJfAAACXwAAAV8AAAFfAAABXwAAA18AAAM+AAAAYQAAABgAAAIYAAADHAAAABgAAAAYAAABYQAAAF8AAAFfAAADXwAAAV8AAABfAAABXwAAAF8AAABfAAAAYQAAAGEAAAAYAAADGAAAAhwAAAEYAAADGAAAAWEAAABhAAAAYQAAABgAAAFhAAAAYQAAAF8AAAFfAAAAXwAAAl4AAABhAAAAGAAAARgAAAEcAAAAGAAAABgAAAJhAAAAGAAAABgAAAEYAAABYQAAAF8AAAFfAAADXwAAA18AAAJeAAACXgAAAxgAAAIYAAACGAAAAhgAAAMYAAAAGAAAAxgAAAIcAAAAGAAAAmEAAABfAAADXwAAAV8AAANfAAADXgAAA2EAAAAYAAAAGAAAAhgAAAAYAAABGAAAAz0AAAAYAAABHAAAARgAAAFhAAAAXwAAAV8AAAFfAAAAXwAAA14AAANhAAAAYQAAAGEAAAA9AAAAGAAAAGEAAABhAAAAGAAAABgAAAMYAAAAYQAAAF8AAANfAAADXwAAAV8AAABeAAACYQAAABgAAAMYAAACGAAAABgAAAMYAAAAYQAAAD0AAAAYAAADPQAAAGEAAABfAAACXwAAAV8AAAFfAAABXgAAAGEAAAAYAAAAHAAAAhwAAAEcAAABGAAAAkcAAAMYAAAAGAAAAxgAAAFhAAAAXwAAAl8AAAJfAAABXwAAA14AAANhAAAAGAAAAxwAAAIcAAADHAAAAhgAAAE9AAAAGAAAAhwAAAMYAAACYQAAAF8AAAFfAAAAXwAAAF8AAANeAAADYQAAABgAAAIYAAADGAAAAhgAAAAYAAAAYQAAABgAAAEYAAADGAAAAWEAAABfAAADXwAAAV8AAAFfAAACYQAAAGEAAAA9AAAAPQAAAD0AAAAYAAABPQAAAGEAAAA9AAAAGAAAAj0AAABhAAAAYQAAAD0AAABeAAADPQAAAA== + tiles: GAAAABgAAAEYAAAAGAAAAxgAAAEYAAADGAAAAxgAAAIYAAABGAAAAhgAAAMYAAADGAAAAhgAAAFhAAAAYQAAABgAAAMYAAACGAAAARgAAAEYAAAAGAAAARgAAANhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAABgAAAEYAAACHAAAAhgAAAMYAAADYQAAAF8AAANfAAABXwAAAl8AAAFfAAACXwAAAF8AAANfAAAAPgAAAGEAAAAYAAADGAAAARwAAAAYAAABGAAAA2EAAABfAAACXwAAA18AAANfAAABXwAAA18AAANfAAACXwAAAD4AAABhAAAAGAAAAhgAAAEcAAADGAAAABgAAANhAAAAXwAAAl8AAAJfAAACXwAAAV8AAAFfAAABXwAAA18AAAM+AAAAYQAAABgAAAIYAAADHAAAABgAAAAYAAABYQAAAF8AAAFfAAADXwAAAV8AAABfAAABXwAAAF8AAABfAAAAYQAAAGEAAAAYAAADGAAAAhwAAAEYAAADGAAAAWEAAABhAAAAYQAAABgAAAFhAAAAYQAAAF8AAAFfAAAAXwAAAl4AAABhAAAAGAAAARgAAAEcAAAAGAAAABgAAAJhAAAAGAAAABgAAAEYAAABYQAAAF8AAAFfAAADXwAAA18AAAJeAAACXgAAAxgAAAIYAAACGAAAAhgAAAMYAAAAGAAAAxgAAAIcAAAAGAAAAmEAAABfAAADXwAAAV8AAANfAAADXgAAA2EAAAAYAAAAGAAAAhgAAAAYAAABGAAAAz0AAAAYAAABHAAAARgAAAFhAAAAXwAAAV8AAAFfAAAAXwAAA14AAANhAAAAYQAAAGEAAAA9AAAAGAAAAGEAAABhAAAAGAAAABgAAAMYAAAAYQAAAF8AAANfAAADXwAAAV8AAABeAAACYQAAABgAAAMYAAACGAAAABgAAAMYAAAAYQAAAD0AAAAYAAADPQAAAGEAAABfAAACXwAAAV8AAAFfAAABXgAAAGEAAAAYAAAAHAAAAhwAAAEcAAABGAAAAkcAAAMYAAAAGAAAAxgAAAFhAAAAXwAAAl8AAAJfAAABXwAAA14AAANhAAAAGAAAAxwAAAIcAAADHAAAAhgAAAE9AAAAGAAAAhwAAAMYAAACYQAAAF8AAAFfAAAAXwAAAF8AAANeAAADYQAAABgAAAIYAAADGAAAAhgAAAAYAAAAYQAAABgAAAEYAAADGAAAAWEAAABfAAADXwAAAV8AAAFfAAACYQAAAGEAAAA9AAAAPQAAAD0AAAAYAAABPQAAAGEAAAA9AAAAGAAAAj0AAABhAAAAYQAAAD0AAABfAAAAPQAAAA== -3,-2: ind: -3,-2 tiles: YQAAAGEAAABRAAAAYQAAAGEAAAAdAAABYQAAAGEAAABhAAAAYQAAAGEAAABhAAAAFgAABBYAAAMWAAAGFgAAAWEAAABhAAAAUQAAAD0AAAAdAAABHQAAAWEAAAAeAAAAHgAAAB4AAAAeAAAAHgAAABYAAAMWAAAAFgAABhYAAAZhAAAAYQAAAFEAAAA9AAAAHQAAAR0AAAJhAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAWAAAHFgAABRYAAAUWAAAGYQAAAGEAAABRAAAAPQAAAB0AAAEdAAACYQAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAFgAABhYAAAQWAAACFgAAA2EAAABhAAAAUQAAAD0AAAAdAAACHQAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAHgAAABYAAAAWAAACFgAAAhYAAAI9AAAAYQAAAFEAAABhAAAAHQAAAB0AAABhAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAWAAADFgAABBYAAAMWAAAHPQAAAGEAAABRAAAAPQAAAB0AAAIdAAAAYQAAAB4AAABhAAAAYQAAAGEAAABhAAAAFgAAAxYAAAUWAAACFgAABz0AAABhAAAAUQAAAD0AAAAdAAAAHQAAAGEAAAAeAAAAHgAAAB4AAAAeAAAAHgAAABYAAAQWAAAFFgAABBYAAAM9AAAAYQAAAFEAAAA9AAAAHQAAAB0AAAMeAAAAHgAAAB4AAAAeAAAAHgAAAB4AAAAWAAACFgAABxYAAAUWAAABPQAAAGEAAABRAAAAPQAAAB0AAAMdAAADYQAAAB4AAAAeAAAAHgAAAB4AAAAeAAAAFgAABhYAAAAWAAAAFgAABT0AAABhAAAAUQAAAGEAAABhAAAAYQAAAGEAAABhAAAAYQAAAB4AAAAeAAAAHgAAABYAAAMWAAABFgAABhYAAAA9AAAAYQAAAFEAAAA9AAAAYQAAAGEAAABhAAAAPQAAAGEAAAAeAAAAHgAAAB4AAAAWAAACFgAABBYAAAMWAAAGPQAAAGEAAABRAAAAPQAAAGEAAABhAAAAYQAAAD0AAABhAAAAHgAAAB4AAAAeAAAAFgAAARYAAAQWAAAEFgAABWEAAABhAAAAUQAAAGEAAABhAAAAYQAAAGEAAAA9AAAAYQAAAGEAAABhAAAAYQAAABYAAAUWAAADFgAABxYAAABhAAAAYQAAAFEAAABhAAAAYQAAAGEAAABhAAAAPQAAAD0AAAA9AAAAPQAAABYAAAEWAAAAFgAAARYAAAQWAAAFYQAAAGEAAABRAAAAYQAAAGEAAABhAAAAYQAAAD0AAAA9AAAAPQAAAD0AAAAWAAAEFgAABRYAAAYWAAAAFgAABw== @@ -374,51 +374,51 @@ entities: color: '#DE3A3A96' id: 1 decals: - 3980: -34.244606,-14.123523 + 3979: -34.244606,-14.123523 - node: angle: 1.5707963267948966 rad color: '#DE3A3A96' id: 2 decals: - 3981: -34.29669,-13.268763 + 3980: -34.29669,-13.268763 - node: angle: 1.5707963267948966 rad color: '#DE3A3A96' id: 3 decals: - 3982: -34.23419,-12.226372 + 3981: -34.23419,-12.226372 - node: color: '#DE3A3A96' id: 4 decals: - 3983: -33.932106,-11.715601 + 3982: -33.932106,-11.715601 - node: color: '#DE3A3A96' id: 5 decals: - 3984: -32.92169,-11.715601 + 3983: -32.92169,-11.715601 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 3941: 54,13 - 3942: 54,9 + 3940: 54,13 + 3941: 54,9 - node: color: '#FFFFFFFF' id: Basalt1 decals: - 5014: -2.3954644,-14.790876 + 5004: -2.3954644,-14.790876 - node: color: '#FFFFFFFF' id: Basalt2 decals: - 4989: -5.437131,-15.6769085 + 4979: -5.437131,-15.6769085 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 5015: -8.343382,-16.354462 + 5005: -8.343382,-16.354462 - node: color: '#FFFFFFFF' id: Bot @@ -483,26 +483,26 @@ entities: 2027: 15,-79 2028: 16,-79 2029: 17,-79 - 3815: 22,15 - 3816: 22,14 - 3817: 22,13 - 3903: 16,22 - 3904: 15,22 - 3905: 14,22 - 3906: 13,22 - 3955: 5,-7 - 3956: 5,-6 - 3957: 5,-5 - 3958: 2,0 - 3959: 3,0 - 3960: 4,0 - 3985: -6,-22 - 3986: -6,-21 - 3987: -43,-19 - 5652: -53,-14 - 5653: -52,-14 - 5654: -54,-14 - 5655: -55,-14 + 3814: 22,15 + 3815: 22,14 + 3816: 22,13 + 3902: 16,22 + 3903: 15,22 + 3904: 14,22 + 3905: 13,22 + 3954: 5,-7 + 3955: 5,-6 + 3956: 5,-5 + 3957: 2,0 + 3958: 3,0 + 3959: 4,0 + 3984: -6,-22 + 3985: -6,-21 + 3986: -43,-19 + 5636: -53,-14 + 5637: -52,-14 + 5638: -54,-14 + 5639: -55,-14 - node: color: '#FFFFFFFF' id: Box @@ -566,14 +566,14 @@ entities: 1592: -4,-80 1593: -4,-79 1594: -4,-78 - 3810: 34,43 - 3811: 34,42 - 3812: 34,41 + 3809: 34,43 + 3810: 34,42 + 3811: 34,41 - node: color: '#334E6DC8' id: BrickTileSteelCornerNe decals: - 4460: -43,-23 + 4459: -43,-23 - node: color: '#D4D4D496' id: BrickTileSteelCornerNe @@ -588,7 +588,7 @@ entities: color: '#334E6DC8' id: BrickTileSteelCornerNw decals: - 4459: -44,-23 + 4458: -44,-23 - node: color: '#D4D4D496' id: BrickTileSteelCornerNw @@ -613,7 +613,7 @@ entities: color: '#334E6DC8' id: BrickTileSteelCornerSw decals: - 4451: -44,-31 + 4450: -44,-31 - node: color: '#D4D4D496' id: BrickTileSteelCornerSw @@ -626,16 +626,16 @@ entities: color: '#334E6DC8' id: BrickTileSteelInnerNe decals: - 4461: -43,-24 - 4464: -43,-28 - 4479: -44,-25 - 4480: -44,-26 - 4481: -44,-27 - 4482: -44,-28 - 4483: -44,-29 - 4484: -44,-30 - 4485: -44,-31 - 4486: -44,-24 + 4460: -43,-24 + 4463: -43,-28 + 4478: -44,-25 + 4479: -44,-26 + 4480: -44,-27 + 4481: -44,-28 + 4482: -44,-29 + 4483: -44,-30 + 4484: -44,-31 + 4485: -44,-24 - node: color: '#D4D4D496' id: BrickTileSteelInnerNw @@ -646,35 +646,35 @@ entities: color: '#334E6DC8' id: BrickTileSteelInnerSe decals: - 4462: -43,-24 - 4463: -43,-28 + 4461: -43,-24 + 4462: -43,-28 - node: color: '#334E6DC8' id: BrickTileSteelInnerSw decals: - 4471: -43,-31 - 4472: -43,-30 - 4473: -43,-29 - 4474: -43,-28 - 4475: -43,-27 - 4476: -43,-26 - 4477: -43,-25 - 4478: -43,-24 - 4487: -43,-23 + 4470: -43,-31 + 4471: -43,-30 + 4472: -43,-29 + 4473: -43,-28 + 4474: -43,-27 + 4475: -43,-26 + 4476: -43,-25 + 4477: -43,-24 + 4486: -43,-23 - node: color: '#334E6DC8' id: BrickTileSteelLineE decals: - 3961: -20,-49 - 3962: -20,-48 - 3963: -20,-47 - 3964: -20,-46 - 4465: -43,-25 - 4466: -43,-26 - 4467: -43,-27 - 4468: -43,-29 - 4469: -43,-30 - 4470: -43,-31 + 3960: -20,-49 + 3961: -20,-48 + 3962: -20,-47 + 3963: -20,-46 + 4464: -43,-25 + 4465: -43,-26 + 4466: -43,-27 + 4467: -43,-29 + 4468: -43,-30 + 4469: -43,-31 - node: color: '#D4D4D496' id: BrickTileSteelLineE @@ -759,13 +759,13 @@ entities: color: '#334E6DC8' id: BrickTileSteelLineW decals: - 4452: -44,-30 - 4453: -44,-29 - 4454: -44,-28 - 4455: -44,-27 - 4456: -44,-26 - 4457: -44,-25 - 4458: -44,-24 + 4451: -44,-30 + 4452: -44,-29 + 4453: -44,-28 + 4454: -44,-27 + 4455: -44,-26 + 4456: -44,-25 + 4457: -44,-24 - node: color: '#D4D4D496' id: BrickTileSteelLineW @@ -794,8 +794,8 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 4380: -16,-13 - 4399: -16,-9 + 4379: -16,-13 + 4398: -16,-9 - node: color: '#169C9CC4' id: BrickTileWhiteCornerNe @@ -810,22 +810,22 @@ entities: 494: 5,-55 534: 6,-54 1285: 10,-66 - 4422: -18,-14 - 4661: -23,-18 + 4421: -18,-14 + 4660: -23,-18 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 4497: -37,-20 + 4496: -37,-20 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: 1196: 26,-33 - 3857: 55,-42 - 4588: -18,-9 - 4589: -24,-10 - 4590: -24,-14 + 3856: 55,-42 + 4587: -18,-9 + 4588: -24,-10 + 4589: -24,-14 - node: color: '#8932B87F' id: BrickTileWhiteCornerNe @@ -849,18 +849,18 @@ entities: color: '#D58C18BF' id: BrickTileWhiteCornerNe decals: - 4933: -36,-1 - 4938: -41,3 - 4949: -45,6 + 4923: -36,-1 + 4928: -41,3 + 4939: -45,6 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 4703: 4,-2 - 4704: 3,-1 - 4737: -1,1 - 4778: -11,2 - 4801: -36,-5 + 4702: 4,-2 + 4703: 3,-1 + 4735: -1,1 + 4776: -11,2 + 4799: -36,-5 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerNe @@ -871,8 +871,8 @@ entities: 1027: 22,-16 1028: 22,-19 1052: 19,-12 - 4216: 13,-22 - 4264: 26,-22 + 4215: 13,-22 + 4263: 26,-22 - node: color: '#169C9CFF' id: BrickTileWhiteCornerNw @@ -887,23 +887,23 @@ entities: 493: 3,-55 523: 0,-54 1286: 8,-66 - 4426: -22,-14 + 4425: -22,-14 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 4489: -41,-23 - 4495: -39,-20 + 4488: -41,-23 + 4494: -39,-20 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: 1194: 24,-33 1206: 22,-37 - 3848: 46,-42 - 4596: -22,-9 - 4597: -27,-10 - 4598: -27,-14 + 3847: 46,-42 + 4595: -22,-9 + 4596: -27,-10 + 4597: -27,-14 - node: color: '#8932B87F' id: BrickTileWhiteCornerNw @@ -936,20 +936,20 @@ entities: color: '#D58C18BF' id: BrickTileWhiteCornerNw decals: - 4940: -43,3 - 4954: -49,6 - 4965: -49,-1 - 4966: -47,-1 - 4967: -45,-1 + 4930: -43,3 + 4944: -49,6 + 4955: -49,-1 + 4956: -47,-1 + 4957: -45,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 4709: 2,-5 - 4779: -13,2 - 4780: -17,1 - 4802: -38,-5 - 4805: -41,-6 + 4708: 2,-5 + 4777: -13,2 + 4778: -17,1 + 4800: -38,-5 + 4803: -41,-6 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerNw @@ -966,8 +966,8 @@ entities: 1058: 21,-19 1075: 18,-33 1125: 10,-30 - 4213: 10,-22 - 4260: 21,-22 + 4212: 10,-22 + 4259: 21,-22 - node: color: '#169C9CC4' id: BrickTileWhiteCornerSe @@ -981,23 +981,23 @@ entities: 468: 0,-62 495: 5,-58 529: 6,-59 - 4442: -14,-22 - 4658: -24,-32 - 4659: -23,-22 + 4441: -14,-22 + 4657: -24,-32 + 4658: -23,-22 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 4502: -37,-25 + 4501: -37,-25 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: 1201: 26,-39 - 3859: 55,-44 - 4604: -24,-16 - 4605: -18,-12 - 4606: -24,-13 + 3858: 55,-44 + 4603: -24,-16 + 4604: -18,-12 + 4605: -24,-13 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe @@ -1016,25 +1016,25 @@ entities: decals: 387: 22,-53 388: 26,-52 - 3828: 28,-70 + 3827: 28,-70 - node: color: '#D58C18BF' id: BrickTileWhiteCornerSe decals: - 4971: -48,-2 - 4972: -46,-2 - 4973: -44,-2 + 4961: -48,-2 + 4962: -46,-2 + 4963: -44,-2 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 4525: -37,-31 - 4810: -40,-7 - 4817: -36,-7 - 4845: -30,-6 - 4865: -17,-2 - 4876: -11,0 - 4906: -8,-7 + 4524: -37,-31 + 4808: -40,-7 + 4815: -36,-7 + 4843: -30,-6 + 4863: -17,-2 + 4874: -11,0 + 4896: -8,-7 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerSe @@ -1046,8 +1046,8 @@ entities: 1007: 22,-17 1008: 22,-14 1071: 22,-35 - 4219: 13,-28 - 4265: 26,-24 + 4218: 13,-28 + 4264: 26,-24 - node: color: '#169C9CC4' id: BrickTileWhiteCornerSw @@ -1062,8 +1062,8 @@ entities: 467: -1,-62 496: 3,-58 524: 0,-55 - 4428: -22,-16 - 4435: -21,-22 + 4427: -22,-16 + 4434: -21,-22 - node: angle: 43.982297150257104 rad color: '#334E6DC8' @@ -1075,9 +1075,9 @@ entities: id: BrickTileWhiteCornerSw decals: 1205: 22,-39 - 3846: 46,-44 - 4602: -22,-12 - 4603: -27,-16 + 3845: 46,-44 + 4601: -22,-12 + 4602: -27,-16 - node: angle: 43.982297150257104 rad color: '#52B4E996' @@ -1108,23 +1108,24 @@ entities: 379: 18,-53 399: 24,-57 1247: 12,-70 - 3834: 23,-70 + 3833: 23,-70 - node: color: '#D58C18BF' id: BrickTileWhiteCornerSw decals: - 4931: -43,-2 - 4960: -49,0 - 4968: -49,-2 - 4969: -47,-2 - 4970: -45,-2 + 4921: -43,-2 + 4950: -49,0 + 4958: -49,-2 + 4959: -47,-2 + 4960: -45,-2 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 4530: -41,-31 - 4708: 2,-6 - 4815: -38,-7 + 4529: -41,-31 + 4707: 2,-6 + 4813: -38,-7 + 5646: -5,-7 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerSw @@ -1141,7 +1142,7 @@ entities: 1060: 21,-14 1076: 18,-35 1140: 10,-31 - 4222: 10,-28 + 4221: 10,-28 - node: color: '#169C9CFF' id: BrickTileWhiteEndE @@ -1151,12 +1152,12 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteEndE decals: - 4842: -30,-13 + 4840: -30,-13 - node: color: '#F9FFFEFF' id: BrickTileWhiteEndE decals: - 4277: 25,-23 + 4276: 25,-23 - node: color: '#1D1D21FF' id: BrickTileWhiteEndN @@ -1166,8 +1167,8 @@ entities: color: '#52B4E996' id: BrickTileWhiteEndN decals: - 3850: 48,-41 - 3867: 48,-44 + 3849: 48,-41 + 3866: 48,-44 - node: color: '#1D1D21FF' id: BrickTileWhiteEndS @@ -1177,7 +1178,7 @@ entities: color: '#52B4E996' id: BrickTileWhiteEndS decals: - 3868: 48,-42 + 3867: 48,-42 - node: color: '#169C9CFF' id: BrickTileWhiteEndW @@ -1187,87 +1188,87 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteEndW decals: - 4830: -33,-13 + 4828: -33,-13 - node: color: '#F9FFFEFF' id: BrickTileWhiteEndW decals: 1126: 10,-35 - 4276: 21,-23 + 4275: 21,-23 - node: color: '#1D1D21FF' id: BrickTileWhiteInnerNe decals: 430: 3,-63 - 4653: -24,-24 + 4652: -24,-24 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 3869: 48,-46 - 4582: -18,-11 - 4616: -25,-14 - 4618: -24,-11 + 3868: 48,-46 + 4581: -18,-11 + 4615: -25,-14 + 4617: -24,-11 - node: color: '#79150096' id: BrickTileWhiteInnerNe decals: - 4371: -11,-37 + 4370: -11,-37 - node: color: '#D58C18BF' id: BrickTileWhiteInnerNe decals: - 4932: -36,-2 - 4944: -45,1 - 4950: -46,6 + 4922: -36,-2 + 4934: -45,1 + 4940: -46,6 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 4517: -41,-27 - 4691: 4,-9 - 4705: 3,-2 - 4723: -1,-9 - 4734: -1,-1 - 4763: -7,1 - 4764: -21,-2 - 4765: -24,-2 - 4766: -27,-2 - 4767: -32,-2 - 4774: -11,1 - 4800: -36,-6 - 4806: -40,-6 - 4843: -31,-13 - 4898: -5,-9 - 4919: -8,-3 + 4516: -41,-27 + 4690: 4,-9 + 4704: 3,-2 + 4722: -1,-9 + 4732: -1,-1 + 4761: -7,1 + 4762: -21,-2 + 4763: -24,-2 + 4764: -27,-2 + 4765: -32,-2 + 4772: -11,1 + 4798: -36,-6 + 4804: -40,-6 + 4841: -31,-13 + 4909: -8,-3 + 5645: -5,-7 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 3954: 21,11 + 3953: 21,11 - node: color: '#1D1D21FF' id: BrickTileWhiteInnerNw decals: 432: 5,-63 - 4670: -25,-27 - 4674: -25,-25 + 4669: -25,-27 + 4673: -25,-25 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 4490: -41,-24 - 4492: -39,-23 + 4489: -41,-24 + 4491: -39,-23 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: 1208: 24,-37 - 3870: 48,-46 - 4580: -16,-11 - 4583: -22,-11 - 4613: -27,-13 - 4617: -26,-14 + 3869: 48,-46 + 4579: -16,-11 + 4582: -22,-11 + 4612: -27,-13 + 4616: -26,-14 - node: angle: 43.982297150257104 rad color: '#52B4E996' @@ -1278,12 +1279,12 @@ entities: color: '#79150096' id: BrickTileWhiteInnerNw decals: - 4372: -12,-37 + 4371: -12,-37 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 4328: -12,-24 + 4327: -12,-24 - node: angle: 43.982297150257104 rad color: '#9FED5896' @@ -1300,32 +1301,32 @@ entities: color: '#D58C18BF' id: BrickTileWhiteInnerNw decals: - 4942: -43,1 - 4951: -46,6 - 4957: -49,3 + 4932: -43,1 + 4941: -46,6 + 4947: -49,3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 4515: -41,-28 - 4692: 3,-9 - 4706: 3,-5 - 4724: -2,-9 - 4768: -32,-2 - 4769: -27,-2 - 4770: -24,-2 - 4771: -21,-2 - 4772: -17,-2 - 4773: -13,1 - 4777: -7,1 - 4796: -33,-6 - 4803: -38,-6 - 4807: -40,-6 - 4808: -41,-7 - 4829: -32,-13 - 4899: -5,-9 - 4907: -8,-7 - 4918: -5,-3 + 4514: -41,-28 + 4691: 3,-9 + 4705: 3,-5 + 4723: -2,-9 + 4766: -32,-2 + 4767: -27,-2 + 4768: -24,-2 + 4769: -21,-2 + 4770: -17,-2 + 4771: -13,1 + 4775: -7,1 + 4794: -33,-6 + 4801: -38,-6 + 4805: -40,-6 + 4806: -41,-7 + 4827: -32,-13 + 4897: -8,-7 + 4908: -5,-3 + 5651: -2,-7 - node: color: '#F9FFFEFF' id: BrickTileWhiteInnerNw @@ -1340,20 +1341,20 @@ entities: id: BrickTileWhiteInnerSe decals: 431: 3,-62 - 4652: -24,-26 - 4660: -24,-22 + 4651: -24,-26 + 4659: -24,-22 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 4506: -41,-25 + 4505: -41,-25 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 4581: -18,-11 - 4615: -25,-13 - 4619: -24,-11 + 4580: -18,-11 + 4614: -25,-13 + 4618: -24,-11 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe @@ -1369,49 +1370,49 @@ entities: color: '#D58C18BF' id: BrickTileWhiteInnerSe decals: - 4977: -48,0 - 4978: -46,0 - 4979: -44,0 + 4967: -48,0 + 4968: -46,0 + 4969: -44,0 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 4528: -39,-31 - 4735: -1,-2 - 4809: -41,-7 - 4811: -40,-6 - 4818: -36,-6 - 4822: -31,-6 - 4844: -31,-13 - 4849: -30,-2 - 4862: -21,-2 - 4867: -17,0 - 4875: -12,0 - 4877: -11,1 - 4887: -8,1 - 4888: -5,1 - 4903: -8,-6 + 4527: -39,-31 + 4733: -1,-2 + 4807: -41,-7 + 4809: -40,-6 + 4816: -36,-6 + 4820: -31,-6 + 4842: -31,-13 + 4847: -30,-2 + 4860: -21,-2 + 4865: -17,0 + 4873: -12,0 + 4875: -11,1 + 4885: -8,1 + 4886: -5,1 + 4893: -8,-6 - node: color: '#1D1D21FF' id: BrickTileWhiteInnerSw decals: 433: 5,-62 539: 2,-55 - 4429: -21,-16 - 4673: -25,-25 - 4675: -25,-23 + 4428: -21,-16 + 4672: -25,-25 + 4674: -25,-23 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 4508: -41,-24 + 4507: -41,-24 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 4579: -16,-11 - 4584: -22,-11 - 4614: -26,-13 + 4578: -16,-11 + 4583: -22,-11 + 4613: -26,-13 - node: angle: 43.982297150257104 rad color: '#52B4E996' @@ -1423,7 +1424,7 @@ entities: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 4313: -12,-26 + 4312: -12,-26 - node: color: '#8932B87F' id: BrickTileWhiteInnerSw @@ -1439,26 +1440,27 @@ entities: color: '#D58C18BF' id: BrickTileWhiteInnerSw decals: - 4958: -49,2 - 4962: -43,0 + 4948: -49,2 + 4952: -43,0 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 4514: -41,-28 - 4529: -39,-31 - 4707: 3,-6 - 4713: 3,-2 - 4792: -33,-2 - 4816: -38,-6 - 4821: -32,-6 - 4831: -32,-13 - 4861: -21,-2 - 4874: -12,0 - 4884: -2,1 - 4885: -5,1 - 4886: -8,1 - 4902: -5,-6 + 4513: -41,-28 + 4528: -39,-31 + 4706: 3,-6 + 4712: 3,-2 + 4790: -33,-2 + 4814: -38,-6 + 4819: -32,-6 + 4829: -32,-13 + 4859: -21,-2 + 4872: -12,0 + 4882: -2,1 + 4883: -5,1 + 4884: -8,1 + 5643: -5,-6 + 5652: -2,-7 - node: color: '#F9FFFEFF' id: BrickTileWhiteInnerSw @@ -1494,31 +1496,31 @@ entities: 1292: 10,-69 1293: 10,-68 1294: 10,-67 - 4654: -24,-23 - 4655: -24,-27 - 4656: -24,-28 - 4657: -24,-29 - 4662: -23,-21 - 4663: -23,-20 - 4664: -23,-19 - 4665: -24,-31 - 4666: -24,-30 + 4653: -24,-23 + 4654: -24,-27 + 4655: -24,-28 + 4656: -24,-29 + 4661: -23,-21 + 4662: -23,-20 + 4663: -23,-19 + 4664: -24,-31 + 4665: -24,-30 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 3965: -20,-44 - 3966: -20,-46 - 3967: -20,-47 - 3968: -20,-48 - 3969: -20,-49 - 3970: -20,-50 - 3978: -20,-43 - 4498: -37,-21 - 4499: -37,-22 - 4500: -37,-23 - 4501: -37,-24 - 4509: -41,-26 + 3964: -20,-44 + 3965: -20,-46 + 3966: -20,-47 + 3967: -20,-48 + 3968: -20,-49 + 3969: -20,-50 + 3977: -20,-43 + 4497: -37,-21 + 4498: -37,-22 + 4499: -37,-23 + 4500: -37,-24 + 4508: -41,-26 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1527,22 +1529,22 @@ entities: 1198: 26,-35 1199: 26,-36 1200: 26,-37 - 3858: 55,-43 - 3871: 48,-45 - 4585: -18,-10 - 4586: -24,-12 - 4587: -24,-15 + 3857: 55,-43 + 3870: 48,-45 + 4584: -18,-10 + 4585: -24,-12 + 4586: -24,-15 - node: color: '#79150096' id: BrickTileWhiteLineE decals: - 4306: -11,-36 - 4307: -11,-35 - 4308: -11,-34 - 4309: -11,-33 - 4310: -11,-32 - 4311: -11,-31 - 4312: -11,-30 + 4305: -11,-36 + 4306: -11,-35 + 4307: -11,-34 + 4308: -11,-33 + 4309: -11,-32 + 4310: -11,-31 + 4311: -11,-30 - node: color: '#8932B87F' id: BrickTileWhiteLineE @@ -1557,17 +1559,17 @@ entities: decals: 239: 43,-35 240: 43,-34 - 4338: -11,-15 - 4339: -11,-16 - 4340: -11,-17 - 4341: -11,-18 - 4342: -11,-20 - 4343: -11,-22 - 4344: -11,-23 - 4345: -11,-24 - 4346: -11,-28 - 4347: -11,-29 - 4348: -11,-14 + 4337: -11,-15 + 4338: -11,-16 + 4339: -11,-17 + 4340: -11,-18 + 4341: -11,-20 + 4342: -11,-22 + 4343: -11,-23 + 4344: -11,-24 + 4345: -11,-28 + 4346: -11,-29 + 4347: -11,-14 - node: angle: 43.982297150257104 rad color: '#9FED5896' @@ -1595,73 +1597,71 @@ entities: 411: 28,-65 1242: 17,-68 1243: 17,-69 - 3822: 17,-67 - 3829: 28,-69 + 3821: 17,-67 + 3828: 28,-69 - node: color: '#D58C18BF' id: BrickTileWhiteLineE decals: - 4937: -41,2 - 4945: -45,2 - 4946: -45,3 - 4947: -45,4 - 4948: -45,5 - 4974: -44,-1 - 4975: -46,-1 - 4976: -48,-1 - 4981: -41,1 + 4927: -41,2 + 4935: -45,2 + 4936: -45,3 + 4937: -45,4 + 4938: -45,5 + 4964: -44,-1 + 4965: -46,-1 + 4966: -48,-1 + 4971: -41,1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 4521: -37,-28 - 4522: -37,-29 - 4523: -37,-30 - 4534: -39,-32 - 4693: 4,-8 - 4694: 4,-7 - 4695: 4,-6 - 4696: 4,-5 - 4697: 4,-4 - 4698: 4,-3 - 4717: -1,-8 - 4718: -1,-7 - 4719: -1,-6 - 4720: -1,-5 - 4721: -1,-4 - 4722: -1,-3 - 4736: -1,0 - 4775: -7,2 - 4786: -27,-1 - 4787: -24,-1 - 4788: -21,-1 - 4789: -32,-1 - 4834: -31,-15 - 4835: -31,-14 - 4836: -31,-12 - 4837: -31,-11 - 4838: -31,-10 - 4839: -31,-9 - 4840: -31,-8 - 4841: -31,-7 - 4846: -30,-5 - 4847: -30,-4 - 4848: -30,-3 - 4863: -21,-3 - 4866: -17,-1 - 4872: -12,-1 - 4889: -5,0 - 4890: -5,-1 - 4891: -5,-2 - 4892: -5,-3 - 4893: -5,-4 - 4894: -5,-5 - 4895: -5,-6 - 4896: -5,-7 - 4897: -5,-8 - 4922: -8,-2 - 4923: -8,-1 - 4924: -8,0 + 4520: -37,-28 + 4521: -37,-29 + 4522: -37,-30 + 4533: -39,-32 + 4692: 4,-8 + 4693: 4,-7 + 4694: 4,-6 + 4695: 4,-5 + 4696: 4,-4 + 4697: 4,-3 + 4716: -1,-8 + 4717: -1,-7 + 4718: -1,-6 + 4719: -1,-5 + 4720: -1,-4 + 4721: -1,-3 + 4734: -1,0 + 4773: -7,2 + 4784: -27,-1 + 4785: -24,-1 + 4786: -21,-1 + 4787: -32,-1 + 4832: -31,-15 + 4833: -31,-14 + 4834: -31,-12 + 4835: -31,-11 + 4836: -31,-10 + 4837: -31,-9 + 4838: -31,-8 + 4839: -31,-7 + 4844: -30,-5 + 4845: -30,-4 + 4846: -30,-3 + 4861: -21,-3 + 4864: -17,-1 + 4870: -12,-1 + 4887: -5,0 + 4888: -5,-1 + 4889: -5,-2 + 4890: -5,-3 + 4891: -5,-4 + 4892: -5,-5 + 4912: -8,-2 + 4913: -8,-1 + 4914: -8,0 + 5644: -5,-6 - node: color: '#F9FFFEFF' id: BrickTileWhiteLineE @@ -1689,9 +1689,9 @@ entities: 1172: 15,-33 1173: 15,-32 1174: 15,-31 - 4217: 13,-24 - 4218: 13,-26 - 4235: 13,-27 + 4216: 13,-24 + 4217: 13,-26 + 4234: 13,-27 - node: color: '#169C9CFF' id: BrickTileWhiteLineN @@ -1714,21 +1714,21 @@ entities: 536: 4,-54 537: 2,-54 538: 1,-54 - 4423: -19,-14 - 4424: -20,-14 - 4425: -21,-14 - 4635: -20,-24 - 4636: -21,-24 - 4637: -22,-24 - 4638: -23,-24 - 4639: -24,-18 - 4640: -25,-18 - 4641: -26,-18 - 4642: -27,-18 - 4643: -28,-18 - 4667: -28,-27 - 4668: -27,-27 - 4669: -26,-27 + 4422: -19,-14 + 4423: -20,-14 + 4424: -21,-14 + 4634: -20,-24 + 4635: -21,-24 + 4636: -22,-24 + 4637: -23,-24 + 4638: -24,-18 + 4639: -25,-18 + 4640: -26,-18 + 4641: -27,-18 + 4642: -28,-18 + 4666: -28,-27 + 4667: -27,-27 + 4668: -26,-27 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1742,9 +1742,9 @@ entities: 218: -13,-53 219: -12,-53 220: -11,-53 - 4488: -42,-24 - 4491: -40,-23 - 4496: -38,-20 + 4487: -42,-24 + 4490: -40,-23 + 4495: -38,-20 - node: angle: 43.982297150257104 rad color: '#334E6DC8' @@ -1764,28 +1764,28 @@ entities: decals: 1195: 25,-33 1207: 23,-37 - 3837: 46,-46 - 3838: 47,-46 - 3839: 49,-46 - 3840: 50,-46 - 3841: 51,-46 - 3842: 52,-46 - 3843: 53,-46 - 3844: 54,-46 - 3845: 55,-46 - 3849: 47,-42 - 3851: 49,-42 - 3852: 50,-42 - 3853: 51,-42 - 3854: 52,-42 - 3855: 53,-42 - 3856: 54,-42 - 4577: -17,-11 - 4591: -19,-9 - 4592: -20,-9 - 4593: -21,-9 - 4594: -25,-10 - 4595: -26,-10 + 3836: 46,-46 + 3837: 47,-46 + 3838: 49,-46 + 3839: 50,-46 + 3840: 51,-46 + 3841: 52,-46 + 3842: 53,-46 + 3843: 54,-46 + 3844: 55,-46 + 3848: 47,-42 + 3850: 49,-42 + 3851: 50,-42 + 3852: 51,-42 + 3853: 52,-42 + 3854: 53,-42 + 3855: 54,-42 + 4576: -17,-11 + 4590: -19,-9 + 4591: -20,-9 + 4592: -21,-9 + 4593: -25,-10 + 4594: -26,-10 - node: angle: 43.982297150257104 rad color: '#52B4E996' @@ -1796,17 +1796,17 @@ entities: color: '#79150096' id: BrickTileWhiteLineN decals: - 4360: -14,-37 - 4361: -13,-37 - 4362: -10,-37 - 4363: -9,-37 - 4364: -8,-37 - 4365: -16,-37 - 4366: -15,-37 - 4367: -7,-37 - 4368: -6,-37 - 4369: -5,-37 - 4370: -4,-37 + 4359: -14,-37 + 4360: -13,-37 + 4361: -10,-37 + 4362: -9,-37 + 4363: -8,-37 + 4364: -16,-37 + 4365: -15,-37 + 4366: -7,-37 + 4367: -6,-37 + 4368: -5,-37 + 4369: -4,-37 - node: color: '#8932B87F' id: BrickTileWhiteLineN @@ -1833,16 +1833,16 @@ entities: 242: 42,-32 243: 41,-32 244: 40,-32 - 4050: -28,-25 - 4051: -27,-25 - 4052: -26,-25 - 4321: -19,-24 - 4322: -18,-24 - 4323: -17,-24 - 4324: -16,-24 - 4325: -15,-24 - 4326: -14,-24 - 4327: -13,-24 + 4049: -28,-25 + 4050: -27,-25 + 4051: -26,-25 + 4320: -19,-24 + 4321: -18,-24 + 4322: -17,-24 + 4323: -16,-24 + 4324: -15,-24 + 4325: -14,-24 + 4326: -13,-24 - node: angle: 43.982297150257104 rad color: '#9FED5896' @@ -1882,79 +1882,82 @@ entities: color: '#D58C18BF' id: BrickTileWhiteLineN decals: - 4926: -35,-2 - 4934: -37,-1 - 4935: -38,-1 - 4936: -39,-1 - 4939: -42,3 - 4943: -44,1 - 4952: -47,6 - 4953: -48,6 + 4916: -35,-2 + 4924: -37,-1 + 4925: -38,-1 + 4926: -39,-1 + 4929: -42,3 + 4933: -44,1 + 4942: -47,6 + 4943: -48,6 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 4382: 5,-9 - 4383: 2,-9 - 4384: 1,-9 - 4385: 0,-9 - 4386: -3,-9 - 4387: -4,-9 - 4388: -6,-9 - 4389: -7,-9 - 4390: -8,-9 - 4391: -9,-9 - 4392: -10,-9 - 4393: -11,-9 - 4394: -12,-9 - 4395: -13,-9 - 4396: -14,-9 - 4397: -15,-9 - 4398: -16,-9 - 4513: -42,-28 - 4518: -40,-27 - 4519: -39,-27 - 4520: -38,-27 - 4524: -37,-27 - 4710: 2,-1 - 4711: 1,-1 - 4712: 0,-1 - 4738: -2,1 - 4739: -3,1 - 4740: -4,1 - 4741: -5,1 - 4742: -6,1 - 4743: -8,1 - 4744: -9,1 - 4745: -10,1 - 4746: -12,2 - 4747: -14,1 - 4748: -15,1 - 4749: -16,1 - 4750: -18,-2 - 4751: -19,-2 - 4752: -20,-2 - 4753: -22,-2 - 4754: -23,-2 - 4755: -25,-2 - 4756: -26,-2 - 4757: -28,-2 - 4758: -29,-2 - 4759: -30,-2 - 4760: -31,-2 - 4761: -33,-2 - 4762: -34,-2 - 4797: -34,-6 - 4798: -35,-6 - 4799: -37,-5 - 4804: -39,-6 - 4920: -6,-3 - 4921: -7,-3 + 4381: 5,-9 + 4382: 2,-9 + 4383: 1,-9 + 4384: 0,-9 + 4385: -3,-9 + 4386: -4,-9 + 4387: -6,-9 + 4388: -7,-9 + 4389: -8,-9 + 4390: -9,-9 + 4391: -10,-9 + 4392: -11,-9 + 4393: -12,-9 + 4394: -13,-9 + 4395: -14,-9 + 4396: -15,-9 + 4397: -16,-9 + 4512: -42,-28 + 4517: -40,-27 + 4518: -39,-27 + 4519: -38,-27 + 4523: -37,-27 + 4709: 2,-1 + 4710: 1,-1 + 4711: 0,-1 + 4736: -2,1 + 4737: -3,1 + 4738: -4,1 + 4739: -5,1 + 4740: -6,1 + 4741: -8,1 + 4742: -9,1 + 4743: -10,1 + 4744: -12,2 + 4745: -14,1 + 4746: -15,1 + 4747: -16,1 + 4748: -18,-2 + 4749: -19,-2 + 4750: -20,-2 + 4751: -22,-2 + 4752: -23,-2 + 4753: -25,-2 + 4754: -26,-2 + 4755: -28,-2 + 4756: -29,-2 + 4757: -30,-2 + 4758: -31,-2 + 4759: -33,-2 + 4760: -34,-2 + 4795: -34,-6 + 4796: -35,-6 + 4797: -37,-5 + 4802: -39,-6 + 4910: -6,-3 + 4911: -7,-3 + 5649: -4,-7 + 5650: -3,-7 + 5653: -5,-9 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 3953: 26,11 + 3952: 26,11 - node: angle: 43.982297150257104 rad color: '#EFB34196' @@ -2007,12 +2010,12 @@ entities: 1122: 11,-35 1123: 12,-35 1124: 13,-35 - 4214: 11,-22 - 4215: 12,-22 - 4261: 22,-22 - 4262: 23,-22 - 4263: 24,-22 - 4278: 23,-23 + 4213: 11,-22 + 4214: 12,-22 + 4260: 22,-22 + 4261: 23,-22 + 4262: 24,-22 + 4277: 23,-23 - node: color: '#169C9CFF' id: BrickTileWhiteLineS @@ -2035,23 +2038,23 @@ entities: 526: 3,-59 527: 4,-59 528: 5,-59 - 4436: -20,-22 - 4437: -19,-22 - 4438: -18,-22 - 4439: -17,-22 - 4440: -16,-22 - 4441: -15,-22 - 4644: -28,-32 - 4645: -27,-32 - 4646: -26,-32 - 4647: -25,-32 - 4648: -23,-26 - 4649: -22,-26 - 4650: -21,-26 - 4651: -20,-26 - 4676: -26,-23 - 4677: -27,-23 - 4678: -28,-23 + 4435: -20,-22 + 4436: -19,-22 + 4437: -18,-22 + 4438: -17,-22 + 4439: -16,-22 + 4440: -15,-22 + 4643: -28,-32 + 4644: -27,-32 + 4645: -26,-32 + 4646: -25,-32 + 4647: -23,-26 + 4648: -22,-26 + 4649: -21,-26 + 4650: -20,-26 + 4675: -26,-23 + 4676: -27,-23 + 4677: -28,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -2065,10 +2068,10 @@ entities: 227: -17,-54 228: -18,-54 229: -19,-54 - 4503: -38,-25 - 4504: -39,-25 - 4505: -40,-25 - 4511: -42,-24 + 4502: -38,-25 + 4503: -39,-25 + 4504: -40,-25 + 4510: -42,-24 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -2076,20 +2079,20 @@ entities: 1202: 25,-39 1203: 24,-39 1204: 23,-39 - 3860: 54,-44 - 3861: 53,-44 - 3862: 52,-44 - 3863: 51,-44 - 3864: 50,-44 - 3865: 49,-44 - 3866: 47,-44 - 4578: -17,-11 - 4607: -19,-12 - 4608: -20,-12 - 4609: -21,-12 - 4610: -25,-16 - 4611: -26,-16 - 4612: -27,-13 + 3859: 54,-44 + 3860: 53,-44 + 3861: 52,-44 + 3862: 51,-44 + 3863: 50,-44 + 3864: 49,-44 + 3865: 47,-44 + 4577: -17,-11 + 4606: -19,-12 + 4607: -20,-12 + 4608: -21,-12 + 4609: -25,-16 + 4610: -26,-16 + 4611: -27,-13 - node: angle: 43.982297150257104 rad color: '#52B4E996' @@ -2102,13 +2105,13 @@ entities: color: '#79150096' id: BrickTileWhiteLineS decals: - 4314: -13,-26 - 4315: -14,-26 - 4316: -15,-26 - 4317: -16,-26 - 4318: -17,-26 - 4319: -18,-26 - 4320: -19,-26 + 4313: -13,-26 + 4314: -14,-26 + 4315: -15,-26 + 4316: -16,-26 + 4317: -17,-26 + 4318: -18,-26 + 4319: -19,-26 - node: color: '#8932B87F' id: BrickTileWhiteLineS @@ -2120,21 +2123,21 @@ entities: id: BrickTileWhiteLineS decals: 237: 42,-36 - 4053: -28,-25 - 4054: -27,-25 - 4055: -26,-25 - 4349: -15,-13 - 4350: -14,-13 - 4351: -13,-13 - 4352: -10,-13 - 4353: -7,-13 - 4354: -6,-13 - 4355: -5,-13 - 4356: -4,-13 - 4357: -3,-13 - 4358: -2,-13 - 4359: -1,-13 - 4379: -16,-13 + 4052: -28,-25 + 4053: -27,-25 + 4054: -26,-25 + 4348: -15,-13 + 4349: -14,-13 + 4350: -13,-13 + 4351: -10,-13 + 4352: -7,-13 + 4353: -6,-13 + 4354: -5,-13 + 4355: -4,-13 + 4356: -3,-13 + 4357: -2,-13 + 4358: -1,-13 + 4378: -16,-13 - node: angle: 43.982297150257104 rad color: '#9FED5896' @@ -2173,11 +2176,11 @@ entities: 1244: 16,-70 1245: 14,-70 1246: 13,-70 - 3821: 15,-70 - 3830: 27,-70 - 3831: 26,-70 - 3832: 25,-70 - 3833: 24,-70 + 3820: 15,-70 + 3829: 27,-70 + 3830: 26,-70 + 3831: 25,-70 + 3832: 24,-70 - node: angle: 43.982297150257104 rad color: '#D381C996' @@ -2194,53 +2197,55 @@ entities: color: '#D58C18BF' id: BrickTileWhiteLineS decals: - 4925: -35,-2 - 4927: -36,-2 - 4928: -37,-2 - 4929: -38,-2 - 4930: -39,-2 - 4963: -45,0 - 4964: -47,0 - 4980: -42,-2 + 4915: -35,-2 + 4917: -36,-2 + 4918: -37,-2 + 4919: -38,-2 + 4920: -39,-2 + 4953: -45,0 + 4954: -47,0 + 4970: -42,-2 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 4512: -42,-28 - 4526: -38,-31 - 4527: -40,-31 - 4714: 2,-2 - 4715: 1,-2 - 4716: 0,-2 - 4791: -34,-2 - 4812: -39,-6 - 4813: -37,-7 - 4814: -35,-6 - 4819: -34,-6 - 4820: -33,-6 - 4850: -29,-2 - 4851: -28,-2 - 4852: -27,-2 - 4853: -26,-2 - 4854: -25,-2 - 4855: -24,-2 - 4856: -23,-2 - 4857: -22,-2 - 4858: -20,-2 - 4859: -19,-2 - 4860: -18,-2 - 4868: -16,0 - 4869: -15,0 - 4870: -14,0 - 4871: -13,0 - 4878: -10,1 - 4879: -9,1 - 4880: -7,1 - 4881: -6,1 - 4882: -4,1 - 4883: -3,1 - 4904: -6,-6 - 4905: -7,-6 + 4511: -42,-28 + 4525: -38,-31 + 4526: -40,-31 + 4713: 2,-2 + 4714: 1,-2 + 4715: 0,-2 + 4789: -34,-2 + 4810: -39,-6 + 4811: -37,-7 + 4812: -35,-6 + 4817: -34,-6 + 4818: -33,-6 + 4848: -29,-2 + 4849: -28,-2 + 4850: -27,-2 + 4851: -26,-2 + 4852: -25,-2 + 4853: -24,-2 + 4854: -23,-2 + 4855: -22,-2 + 4856: -20,-2 + 4857: -19,-2 + 4858: -18,-2 + 4866: -16,0 + 4867: -15,0 + 4868: -14,0 + 4869: -13,0 + 4876: -10,1 + 4877: -9,1 + 4878: -7,1 + 4879: -6,1 + 4880: -4,1 + 4881: -3,1 + 4894: -6,-6 + 4895: -7,-6 + 5647: -4,-7 + 5648: -3,-7 - node: color: '#F9FFFEFF' id: BrickTileWhiteLineS @@ -2275,12 +2280,12 @@ entities: 1137: 13,-31 1138: 12,-31 1139: 11,-31 - 4220: 12,-28 - 4221: 11,-28 - 4266: 24,-24 - 4267: 23,-24 - 4268: 22,-24 - 4279: 23,-23 + 4219: 12,-28 + 4220: 11,-28 + 4265: 24,-24 + 4266: 23,-24 + 4267: 22,-24 + 4278: 23,-23 - node: color: '#169C9CC4' id: BrickTileWhiteLineW @@ -2307,42 +2312,42 @@ entities: 1288: 8,-68 1289: 8,-69 1290: 8,-70 - 4427: -22,-15 - 4430: -21,-17 - 4431: -21,-18 - 4432: -21,-19 - 4433: -21,-20 - 4434: -21,-21 - 4671: -25,-26 - 4672: -25,-24 - 4679: -28,-18 - 4680: -28,-19 - 4681: -28,-20 - 4682: -28,-21 - 4683: -28,-22 - 4684: -28,-23 - 4685: -28,-27 - 4686: -28,-28 - 4687: -28,-29 - 4688: -28,-30 - 4689: -28,-31 - 4690: -28,-32 + 4426: -22,-15 + 4429: -21,-17 + 4430: -21,-18 + 4431: -21,-19 + 4432: -21,-20 + 4433: -21,-21 + 4670: -25,-26 + 4671: -25,-24 + 4678: -28,-18 + 4679: -28,-19 + 4680: -28,-20 + 4681: -28,-21 + 4682: -28,-22 + 4683: -28,-23 + 4684: -28,-27 + 4685: -28,-28 + 4686: -28,-29 + 4687: -28,-30 + 4688: -28,-31 + 4689: -28,-32 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 3971: -20,-50 - 3972: -20,-49 - 3973: -20,-48 - 3974: -20,-47 - 3975: -20,-46 - 3976: -20,-45 - 3977: -20,-44 - 3979: -20,-43 - 4493: -39,-22 - 4494: -39,-21 - 4507: -41,-25 - 4510: -41,-26 + 3970: -20,-50 + 3971: -20,-49 + 3972: -20,-48 + 3973: -20,-47 + 3974: -20,-46 + 3975: -20,-45 + 3976: -20,-44 + 3978: -20,-43 + 4492: -39,-22 + 4493: -39,-21 + 4506: -41,-25 + 4509: -41,-26 - node: angle: 43.982297150257104 rad color: '#334E6DC8' @@ -2356,16 +2361,16 @@ entities: decals: 1209: 24,-36 1210: 24,-35 - 3847: 46,-43 - 3872: 48,-45 - 4377: -16,-10 - 4378: -16,-12 - 4381: -16,-13 - 4400: -16,-9 - 4599: -22,-10 - 4600: -27,-11 - 4601: -27,-12 - 4620: -27,-15 + 3846: 46,-43 + 3871: 48,-45 + 4376: -16,-10 + 4377: -16,-12 + 4380: -16,-13 + 4399: -16,-9 + 4598: -22,-10 + 4599: -27,-11 + 4600: -27,-12 + 4619: -27,-15 - node: angle: 43.982297150257104 rad color: '#52B4E996' @@ -2396,16 +2401,16 @@ entities: color: '#79150096' id: BrickTileWhiteLineW decals: - 4296: -12,-36 - 4297: -12,-35 - 4298: -12,-34 - 4299: -12,-33 - 4300: -12,-32 - 4301: -12,-31 - 4302: -12,-30 - 4303: -12,-29 - 4304: -12,-28 - 4305: -12,-27 + 4295: -12,-36 + 4296: -12,-35 + 4297: -12,-34 + 4298: -12,-33 + 4299: -12,-32 + 4300: -12,-31 + 4301: -12,-30 + 4302: -12,-29 + 4303: -12,-28 + 4304: -12,-27 - node: color: '#8932B87F' id: BrickTileWhiteLineW @@ -2418,15 +2423,15 @@ entities: id: BrickTileWhiteLineW decals: 246: 39,-35 - 4329: -12,-23 - 4330: -12,-22 - 4331: -12,-20 - 4332: -12,-19 - 4333: -12,-18 - 4334: -12,-17 - 4335: -12,-16 - 4336: -12,-15 - 4337: -12,-14 + 4328: -12,-23 + 4329: -12,-22 + 4330: -12,-20 + 4331: -12,-19 + 4332: -12,-18 + 4333: -12,-17 + 4334: -12,-16 + 4335: -12,-15 + 4336: -12,-14 - node: angle: 43.982297150257104 rad color: '#9FED5896' @@ -2455,69 +2460,66 @@ entities: 1248: 12,-69 1249: 12,-68 1250: 12,-67 - 3835: 23,-69 + 3834: 23,-69 - node: color: '#D58C18BF' id: BrickTileWhiteLineW decals: - 4941: -43,2 - 4955: -49,5 - 4956: -49,4 - 4959: -49,1 - 4961: -43,-1 + 4931: -43,2 + 4945: -49,5 + 4946: -49,4 + 4949: -49,1 + 4951: -43,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 4516: -41,-27 - 4531: -41,-30 - 4532: -41,-29 - 4533: -39,-32 - 4699: 3,-8 - 4700: 3,-7 - 4701: 3,-4 - 4702: 3,-3 - 4725: -2,-8 - 4726: -2,-7 - 4727: -2,-6 - 4728: -2,-5 - 4729: -2,-4 - 4730: -2,-3 - 4731: -2,-2 - 4732: -2,-1 - 4733: -2,0 - 4776: -7,2 - 4781: -17,0 - 4782: -17,-1 - 4783: -21,-1 - 4784: -24,-1 - 4785: -27,-1 - 4790: -32,-1 - 4793: -33,-3 - 4794: -33,-4 - 4795: -33,-5 - 4823: -32,-7 - 4824: -32,-8 - 4825: -32,-9 - 4826: -32,-10 - 4827: -32,-11 - 4828: -32,-12 - 4832: -32,-14 - 4833: -32,-15 - 4864: -21,-3 - 4873: -12,-1 - 4900: -5,-8 - 4901: -5,-7 - 4908: -8,-6 - 4909: -8,-5 - 4910: -8,-4 - 4911: -8,-3 - 4912: -8,-2 - 4913: -8,-1 - 4914: -8,0 - 4915: -5,0 - 4916: -5,-1 - 4917: -5,-2 + 4515: -41,-27 + 4530: -41,-30 + 4531: -41,-29 + 4532: -39,-32 + 4698: 3,-8 + 4699: 3,-7 + 4700: 3,-4 + 4701: 3,-3 + 4724: -2,-8 + 4725: -2,-6 + 4726: -2,-5 + 4727: -2,-4 + 4728: -2,-3 + 4729: -2,-2 + 4730: -2,-1 + 4731: -2,0 + 4774: -7,2 + 4779: -17,0 + 4780: -17,-1 + 4781: -21,-1 + 4782: -24,-1 + 4783: -27,-1 + 4788: -32,-1 + 4791: -33,-3 + 4792: -33,-4 + 4793: -33,-5 + 4821: -32,-7 + 4822: -32,-8 + 4823: -32,-9 + 4824: -32,-10 + 4825: -32,-11 + 4826: -32,-12 + 4830: -32,-14 + 4831: -32,-15 + 4862: -21,-3 + 4871: -12,-1 + 4898: -8,-6 + 4899: -8,-5 + 4900: -8,-4 + 4901: -8,-3 + 4902: -8,-2 + 4903: -8,-1 + 4904: -8,0 + 4905: -5,0 + 4906: -5,-1 + 4907: -5,-2 - node: color: '#F9FFFEFF' id: BrickTileWhiteLineW @@ -2540,79 +2542,79 @@ entities: 1168: 15,-32 1169: 15,-33 1170: 15,-34 - 4223: 10,-27 - 4224: 10,-26 - 4225: 10,-25 - 4226: 10,-24 - 4280: 15,-26 - 4281: 15,-24 + 4222: 10,-27 + 4223: 10,-26 + 4224: 10,-25 + 4225: 10,-24 + 4279: 15,-26 + 4280: 15,-24 - node: color: '#80C71FFF' id: BushCThree decals: - 5077: -16.730618,-16.83763 + 5067: -16.730618,-16.83763 - node: color: '#F9801DFF' id: Bushc2 decals: - 5079: -15.553534,-15.284467 + 5069: -15.553534,-15.284467 - node: color: '#FED83DFF' id: Bushe1 decals: - 3886: 53.149242,-50.203865 - 3893: 53.170074,-50.328953 + 3885: 53.149242,-50.203865 + 3892: 53.170074,-50.328953 - node: color: '#FED83DFF' id: Bushe2 decals: - 3884: 50.899242,-50.203865 - 3892: 50.909657,-50.235138 + 3883: 50.899242,-50.203865 + 3891: 50.909657,-50.235138 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 5075: -14.782701,-19.4853 + 5065: -14.782701,-19.4853 - node: color: '#FED83DFF' id: Bushe3 decals: - 3885: 52.065907,-50.943962 + 3884: 52.065907,-50.943962 - node: color: '#FED83DFF' id: Bushe4 decals: - 3887: 51.982574,-49.703518 + 3886: 51.982574,-49.703518 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 5076: -14.043118,-19.308094 + 5066: -14.043118,-19.308094 - node: color: '#FED83DFF' id: Bushi1 decals: - 5042: -16.983692,-16.823538 - 5047: -15.160776,-20.013252 - 5049: -13.629526,-19.929863 - 5055: -16.192026,-14.832572 + 5032: -16.983692,-16.823538 + 5037: -15.160776,-20.013252 + 5039: -13.629526,-19.929863 + 5045: -16.192026,-14.832572 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 3889: 50.878407,-49.75564 + 3888: 50.878407,-49.75564 - node: color: '#FED83DFF' id: Bushi2 decals: - 5041: -16.952442,-16.166832 - 5043: -16.93161,-17.46982 - 5046: -16.858692,-20.096645 - 5048: -14.317026,-20.096645 - 5050: -13.848276,-19.304428 - 5052: -14.598276,-19.492058 - 5054: -15.348276,-19.36697 - 5056: -16.192026,-15.426735 + 5031: -16.952442,-16.166832 + 5033: -16.93161,-17.46982 + 5036: -16.858692,-20.096645 + 5038: -14.317026,-20.096645 + 5040: -13.848276,-19.304428 + 5042: -14.598276,-19.492058 + 5044: -15.348276,-19.36697 + 5046: -16.192026,-15.426735 - node: color: '#FFFFFFFF' id: Bushi2 @@ -2623,23 +2625,23 @@ entities: color: '#FED83DFF' id: Bushi3 decals: - 5040: -16.93161,-15.52055 - 5044: -16.90036,-18.105679 - 5051: -13.900359,-18.69984 - 5053: -14.619109,-18.866623 - 5057: -15.369109,-14.863844 + 5030: -16.93161,-15.52055 + 5034: -16.90036,-18.105679 + 5041: -13.900359,-18.69984 + 5043: -14.619109,-18.866623 + 5047: -15.369109,-14.863844 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 3891: 53.170074,-49.693092 + 3890: 53.170074,-49.693092 - node: color: '#FED83DFF' id: Bushi4 decals: - 5039: -16.983692,-14.9055395 - 5045: -16.889942,-19.62757 - 5058: -14.577442,-14.842996 + 5029: -16.983692,-14.9055395 + 5035: -16.889942,-19.62757 + 5048: -14.577442,-14.842996 - node: color: '#FFFFFFFF' id: Bushi4 @@ -2738,12 +2740,12 @@ entities: 1571: 40.2036,-87.23115 1572: 40.6411,-87.26242 1573: 41.21402,-87.26242 - 3890: 53.149242,-51.17329 + 3889: 53.149242,-51.17329 - node: color: '#F9801DFF' id: Bushn1 decals: - 5078: -16.741034,-19.4853 + 5068: -16.741034,-19.4853 - node: color: '#FFFFFFFF' id: Caution @@ -2753,8 +2755,8 @@ entities: 1597: -4,-81 1636: 17,37 1637: 18,37 - 3813: 31,43 - 3814: 33,43 + 3812: 31,43 + 3813: 33,43 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2776,27 +2778,27 @@ entities: color: '#DE3A3A96' id: CautionGreyscale decals: - 4445: -32,-37 - 4446: -31,-37 - 4447: -32,-37 - 4448: -31,-37 + 4444: -32,-37 + 4445: -31,-37 + 4446: -32,-37 + 4447: -31,-37 - node: color: '#52B4E996' id: CheckerNWSE decals: - 4621: -26,-11 - 4622: -25,-11 - 4623: -25,-12 - 4624: -26,-12 - 4628: -26,-15 - 4629: -25,-15 + 4620: -26,-11 + 4621: -25,-11 + 4622: -25,-12 + 4623: -26,-12 + 4627: -26,-15 + 4628: -25,-15 - node: color: '#DE3A3AC0' id: Delivery decals: - 3991: -40,0 - 3992: -40,-2 - 3993: -40,-1 + 3990: -40,0 + 3991: -40,-2 + 3992: -40,-1 - node: cleanable: True color: '#E43E9AFF' @@ -2807,65 +2809,65 @@ entities: color: '#835432FF' id: DiagonalCheckerAOverlay decals: - 4056: -26,-18 - 4057: -25,-18 - 4058: -24,-18 - 4059: -23,-18 - 4060: -23,-19 - 4061: -24,-19 - 4062: -25,-19 - 4063: -26,-19 - 4064: -26,-20 - 4065: -25,-20 - 4066: -24,-20 - 4067: -23,-20 - 4068: -23,-21 - 4069: -23,-22 - 4070: -24,-22 - 4071: -24,-21 - 4072: -25,-21 - 4073: -26,-21 - 4074: -26,-22 - 4075: -25,-22 - 4076: -26,-23 - 4077: -25,-23 - 4078: -24,-23 - 4079: -25,-24 - 4080: -24,-24 - 4081: -23,-24 - 4082: -22,-24 - 4083: -21,-24 - 4084: -20,-24 - 4085: -20,-25 - 4086: -21,-25 - 4087: -22,-25 - 4088: -23,-25 - 4089: -24,-25 - 4090: -25,-25 - 4091: -25,-26 - 4092: -24,-26 - 4093: -23,-26 - 4094: -22,-26 - 4095: -21,-26 - 4096: -20,-26 - 4097: -26,-27 - 4098: -26,-28 - 4099: -26,-29 - 4100: -26,-30 - 4101: -26,-31 - 4102: -26,-32 - 4103: -25,-32 - 4104: -25,-31 - 4105: -25,-30 - 4106: -25,-29 - 4107: -25,-28 - 4108: -25,-27 - 4109: -24,-27 - 4110: -24,-28 - 4111: -24,-29 - 4112: -24,-30 - 4113: -24,-31 - 4114: -24,-32 + 4055: -26,-18 + 4056: -25,-18 + 4057: -24,-18 + 4058: -23,-18 + 4059: -23,-19 + 4060: -24,-19 + 4061: -25,-19 + 4062: -26,-19 + 4063: -26,-20 + 4064: -25,-20 + 4065: -24,-20 + 4066: -23,-20 + 4067: -23,-21 + 4068: -23,-22 + 4069: -24,-22 + 4070: -24,-21 + 4071: -25,-21 + 4072: -26,-21 + 4073: -26,-22 + 4074: -25,-22 + 4075: -26,-23 + 4076: -25,-23 + 4077: -24,-23 + 4078: -25,-24 + 4079: -24,-24 + 4080: -23,-24 + 4081: -22,-24 + 4082: -21,-24 + 4083: -20,-24 + 4084: -20,-25 + 4085: -21,-25 + 4086: -22,-25 + 4087: -23,-25 + 4088: -24,-25 + 4089: -25,-25 + 4090: -25,-26 + 4091: -24,-26 + 4092: -23,-26 + 4093: -22,-26 + 4094: -21,-26 + 4095: -20,-26 + 4096: -26,-27 + 4097: -26,-28 + 4098: -26,-29 + 4099: -26,-30 + 4100: -26,-31 + 4101: -26,-32 + 4102: -25,-32 + 4103: -25,-31 + 4104: -25,-30 + 4105: -25,-29 + 4106: -25,-28 + 4107: -25,-27 + 4108: -24,-27 + 4109: -24,-28 + 4110: -24,-29 + 4111: -24,-30 + 4112: -24,-31 + 4113: -24,-32 - node: color: '#9FED5896' id: DiagonalCheckerAOverlay @@ -2924,65 +2926,65 @@ entities: color: '#5E7C16FF' id: DiagonalCheckerBOverlay decals: - 4115: -26,-32 - 4116: -25,-32 - 4117: -24,-32 - 4118: -24,-31 - 4119: -25,-31 - 4120: -26,-31 - 4121: -26,-30 - 4122: -25,-30 - 4123: -24,-30 - 4124: -24,-29 - 4125: -25,-29 - 4126: -26,-29 - 4127: -26,-28 - 4128: -25,-28 - 4129: -24,-28 - 4130: -24,-27 - 4131: -25,-27 - 4132: -26,-27 - 4133: -25,-26 - 4134: -24,-26 - 4135: -23,-26 - 4136: -22,-26 - 4137: -21,-26 - 4138: -20,-26 - 4139: -20,-25 - 4140: -21,-25 - 4141: -22,-25 - 4142: -23,-25 - 4143: -24,-25 - 4144: -25,-25 - 4145: -25,-24 - 4146: -24,-24 - 4147: -23,-24 - 4148: -22,-24 - 4149: -21,-24 - 4150: -20,-24 - 4151: -24,-23 - 4152: -25,-23 - 4153: -26,-23 - 4154: -26,-22 - 4155: -25,-22 - 4156: -24,-22 - 4157: -23,-22 - 4158: -23,-21 - 4159: -24,-21 - 4160: -25,-21 - 4161: -26,-21 - 4162: -26,-20 - 4163: -25,-20 - 4164: -24,-20 - 4165: -23,-20 - 4166: -23,-19 - 4167: -24,-19 - 4168: -25,-19 - 4169: -26,-19 - 4170: -26,-18 - 4171: -25,-18 - 4172: -24,-18 - 4173: -23,-18 + 4114: -26,-32 + 4115: -25,-32 + 4116: -24,-32 + 4117: -24,-31 + 4118: -25,-31 + 4119: -26,-31 + 4120: -26,-30 + 4121: -25,-30 + 4122: -24,-30 + 4123: -24,-29 + 4124: -25,-29 + 4125: -26,-29 + 4126: -26,-28 + 4127: -25,-28 + 4128: -24,-28 + 4129: -24,-27 + 4130: -25,-27 + 4131: -26,-27 + 4132: -25,-26 + 4133: -24,-26 + 4134: -23,-26 + 4135: -22,-26 + 4136: -21,-26 + 4137: -20,-26 + 4138: -20,-25 + 4139: -21,-25 + 4140: -22,-25 + 4141: -23,-25 + 4142: -24,-25 + 4143: -25,-25 + 4144: -25,-24 + 4145: -24,-24 + 4146: -23,-24 + 4147: -22,-24 + 4148: -21,-24 + 4149: -20,-24 + 4150: -24,-23 + 4151: -25,-23 + 4152: -26,-23 + 4153: -26,-22 + 4154: -25,-22 + 4155: -24,-22 + 4156: -23,-22 + 4157: -23,-21 + 4158: -24,-21 + 4159: -25,-21 + 4160: -26,-21 + 4161: -26,-20 + 4162: -25,-20 + 4163: -24,-20 + 4164: -23,-20 + 4165: -23,-19 + 4166: -24,-19 + 4167: -25,-19 + 4168: -26,-19 + 4169: -26,-18 + 4170: -25,-18 + 4171: -24,-18 + 4172: -23,-18 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay @@ -2994,550 +2996,550 @@ entities: color: '#FFFFFFFF' id: Dirt decals: - 3386: 69.419556,-18.458513 - 3387: 71.544556,-18.489784 - 3388: 72.86748,-27.644072 - 3389: 72.06539,-27.831703 - 3390: 59.36202,-29.971268 - 3391: 56.55852,-29.491768 - 3392: 56.141853,-29.564735 - 3393: 55.37102,-29.637703 - 3394: 51.531544,-27.504915 - 3395: 51.32321,-26.74397 - 3396: 51.312794,-26.379133 - 3397: 53.926983,-24.575829 - 3398: 53.97907,-25.055328 - 3399: 53.9999,-25.753729 - 3400: 51.29157,-22.673273 - 3401: 51.44782,-22.277164 - 3402: 51.8124,-22.131231 - 3403: 50.3124,-20.602192 - 3404: 51.270733,-20.404137 - 3405: 50.85407,-20.643887 - 3406: 48.907383,-21.133812 - 3407: 47.05322,-21.23805 - 3408: 47.366463,-21.248474 - 3409: 47.970627,-21.18593 - 3410: 46.265556,-22.520191 - 3411: 45.463474,-22.70782 - 3412: 45.859306,-22.478495 - 3413: 45.748272,-23.248838 - 3414: 45.63369,-23.540709 - 3415: 45.467022,-23.915968 - 3416: 39.119694,-22.556726 - 3417: 38.963444,-22.421217 - 3418: 38.07209,-20.77324 - 3419: 37.863754,-20.919174 - 3420: 34.301254,-20.801998 - 3421: 33.863754,-20.81242 - 3422: 33.374172,-21.020899 - 3423: 33.311672,-21.813116 - 3424: 33.57209,-22.084137 - 3425: 42.562397,-18.781172 - 3426: 42.416565,-18.239128 - 3427: 43.58323,-17.89514 - 3428: 42.437397,-18.061922 - 3429: 41.572815,-17.509455 - 3430: 40.89573,-17.15504 - 3431: 42.08323,-13.393965 - 3432: 42.218647,-12.68514 - 3433: 41.67698,-12.956161 - 3434: 41.23948,-12.518357 - 3435: 43.11448,-11.148764 - 3436: 43.67698,-10.773503 - 3437: 43.947815,-10.637992 - 3438: 43.567116,-10.888165 - 3439: 42.755833,-8.574059 - 3440: 43.71417,-9.720689 - 3441: 48.731606,-9.658145 - 3442: 50.877438,-9.637298 - 3443: 49.814938,-9.75196 - 3444: 48.33577,-10.085525 - 3445: 49.17952,-9.950014 - 3446: 48.314938,-10.502481 - 3447: 47.596188,-10.992405 - 3448: 47.24202,-11.2425785 - 3449: 51.002857,-8.7825365 - 3450: 51.284107,-5.74918 - 3451: 51.054943,-6.60394 - 3452: 51.190357,-7.583787 - 3453: 52.044525,-6.5935163 - 3454: 52.315357,-7.792265 - 3455: 52.357025,-9.03271 - 3456: 52.346607,-10.52333 - 3457: 52.273693,-10.877742 - 3458: 52.054943,-11.357242 - 3459: 51.586193,-11.711655 - 3460: 51.054943,-12.458711 - 3461: 50.732025,-13.584493 - 3462: 50.607025,-14.043145 - 3463: 50.492443,-14.112839 - 3464: 50.669525,-14.748697 - 3465: 50.565357,-14.477675 - 3466: 50.690357,-15.082262 - 3467: 50.607025,-15.7493925 - 3468: 50.065357,-17.862099 - 3469: 49.950775,-18.226936 - 3470: 49.804943,-19.269327 - 3471: 48.284107,-17.841251 - 3472: 48.742443,-17.111578 - 3473: 49.221607,-16.246395 - 3474: 49.117443,-14.411788 - 3475: 48.804943,-13.552691 - 3476: 48.419525,-13.22955 - 3477: 48.065357,-13.938375 - 3478: 34.96789,-9.936574 - 3479: 34.07206,-9.780215 - 3480: 33.332474,-9.780215 - 3481: 33.07206,-10.072084 - 3482: 32.78039,-10.290986 - 3483: 32.49914,-10.916421 - 3484: 32.467155,-7.5102053 - 3485: 31.769238,-6.884772 - 3486: 30.862988,-6.301033 - 3487: 31.571323,-5.9570436 - 3488: 33.123405,-5.9049244 - 3489: 30.716919,-4.2787952 - 3490: 30.654419,-4.8104143 - 3491: 31.727337,-3.0487738 - 3492: 31.425251,-3.7680235 - 3493: 31.977337,-3.1530128 - 3494: 33.5815,-2.9132628 - 3495: 33.15442,-3.0279264 - 3496: 32.394,-3.2259803 - 3497: 28.50484,-5.175251 - 3498: 28.34859,-4.61236 - 3499: 28.025673,-3.4865785 - 3500: 28.66109,-2.6630893 - 3501: 28.09859,-2.8090243 - 3502: 26.775673,-5.3733053 - 3503: 26.765259,-5.9153485 - 3504: 26.44234,-7.155793 - 3505: 27.681923,-5.7172937 - 3506: 28.463173,-7.0619783 - 3507: 34.732906,-2.6831698 - 3508: 35.326656,-2.5580833 - 3509: 35.78499,-2.4955394 - 3510: 35.86832,-1.9639208 - 3511: 36.170406,-1.2759426 - 3512: 36.732906,0.30432153 - 3513: 37.87874,0.5336478 - 3514: 39.22249,0.65873456 - 3515: 36.107906,0.0437243 - 3516: 34.52457,-0.13348222 - 3517: 35.46207,0.03330016 - 3518: 37.08707,0.27305007 - 3519: 37.44124,0.5128 - 3520: 39.21207,0.59619117 - 3521: 40.451656,0.70043015 - 3522: 41.139156,-0.28984046 - 3523: 39.764156,-0.7380688 - 3524: 38.64957,-0.8423078 - 3525: 37.69124,-0.9465468 - 3526: 31.892235,0.74212575 - 3527: 31.569317,0.7733977 - 3528: 30.423485,0.7108538 - 3529: 29.340149,1.075691 - 3530: 30.735985,1.1903536 - 3531: 59.2448,12.477725 - 3532: 58.442715,12.394332 - 3533: 57.57813,12.363061 - 3534: 56.432297,12.352637 - 3535: 59.2448,11.445758 - 3536: 57.67188,11.341518 - 3537: 53.713547,12.22755 - 3538: 53.432297,12.14416 - 3539: 50.67188,11.581268 - 3540: 49.48438,11.539573 - 3541: 49.776047,11.549996 - 3542: 47.817715,5.8236 - 3543: 47.880215,6.0425034 - 3544: 47.82813,6.4281874 - 3545: 47.380215,6.7200565 - 3546: 47.04688,6.8347197 - 3547: 44.494797,6.761752 - 3548: 45.994797,6.73048 - 3549: 46.116024,6.855568 - 3550: 45.511856,6.824296 - 3551: 46.876442,9.055012 - 3552: 47.230606,8.387882 - 3553: 47.741024,7.6999035 - 3554: 50.888084,6.0633507 - 3555: 50.961002,6.6679373 - 3556: 50.127666,7.5539694 - 3557: 49.044334,7.835415 - 3558: 48.481834,8.40873 - 3559: 47.388084,9.044588 - 3560: 48.023502,8.440001 - 3561: 51.742252,6.8972626 - 3562: 50.981834,7.178709 - 3563: 51.648502,6.8764153 - 3564: 52.138084,6.647089 - 3565: 52.815166,6.3343716 - 3566: 54.044334,7.387186 - 3567: 54.117252,7.647784 - 3568: 55.804752,16.52822 - 3569: 55.763084,16.486525 - 3570: 55.596416,16.330166 - 3571: 55.263084,16.038296 - 3572: 54.690166,15.840242 - 3573: 54.408916,15.5692215 - 3574: 57.721416,17.528915 - 3575: 57.690166,17.080687 - 3576: 50.828125,13.963939 - 3577: 49.901043,13.359351 - 3578: 49.53646,13.32808 - 3579: 47.244793,13.286384 - 3580: 47.06771,13.7033415 - 3581: 46.713543,15.193959 - 3582: 46.796875,14.912515 - 3583: 47.109375,14.412166 - 3584: 42.741573,12.781077 - 3585: 42.272823,12.927012 - 3586: 40.918655,13.052098 - 3587: 41.543655,12.989554 - 3588: 41.604862,6.926813 - 3589: 40.896526,6.874694 - 3590: 40.438194,6.874694 - 3591: 38.167362,8.646758 - 3592: 39.292362,7.7398777 - 3593: 38.625694,8.448704 - 3594: 39.719444,7.260378 - 3595: 38.959026,6.8851175 - 3596: 39.427776,6.3847704 - 3597: 40.094444,6.0616293 - 3598: 41.406944,10.123722 - 3599: 40.646526,9.665071 - 3600: 40.521526,9.341929 - 3601: 39.625694,9.060484 - 3602: 41.281944,8.341234 - 3603: 40.427776,8.424625 - 3604: 29.152435,10.819572 - 3605: 29.048267,11.507549 - 3606: 28.60035,13.4047 - 3607: 28.78785,12.132985 - 3608: 28.798267,17.313667 - 3609: 29.9441,17.355362 - 3610: 30.714935,17.230274 - 3611: 31.048267,17.13646 - 3612: 31.235767,16.312971 - 3613: 31.3191,15.823048 - 3614: 31.485767,14.394971 - 3615: 31.47535,13.477668 - 3616: 28.923267,12.153832 - 3617: 28.360767,11.236528 - 3618: 27.735767,10.882115 - 3619: 28.16285,11.372039 - 3620: 25.961983,10.590245 - 3621: 25.961983,9.370648 - 3622: 26.024483,10.2254095 - 3623: 26.014069,11.361615 - 3624: 25.94115,12.904353 - 3625: 27.242832,13.823396 - 3626: 26.346996,13.2083845 - 3627: 18.553879,13.706912 - 3628: 18.616379,13.6339445 - 3629: 18.949715,13.498435 - 3630: 19.366379,13.310803 - 3631: 19.824715,13.164868 - 3632: 20.001797,12.132903 - 3633: 20.064297,11.401406 - 3634: 19.387215,10.338168 - 3635: 17.230965,10.338168 - 3636: 15.76667,10.160961 - 3637: 13.225657,10.223505 - 3638: 10.931874,10.233929 - 3639: 7.9547377,10.244353 - 3640: 8.545297,10.31732 - 3641: 9.243214,10.359015 - 3642: 9.878631,10.265201 - 3643: 11.441131,10.171386 - 3644: 12.326547,10.140114 - 3645: 23.46373,22.522877 - 3646: 23.442894,22.199736 - 3647: 23.317894,21.532606 - 3648: 23.192894,20.719542 - 3649: 22.90123,19.83351 - 3650: 22.515812,19.135107 - 3651: 22.265812,18.259499 - 3652: 24.46373,20.062834 - 3653: 25.359562,18.019749 - 3654: 25.43248,17.779999 - 3655: 15.003123,26.03166 - 3656: 14.357289,25.989964 - 3657: 15.253123,25.969116 - 3658: 16.117706,25.885725 - 3659: 17.648956,26.010813 - 3660: 18.669792,26.010813 - 3661: 21.440624,26.03166 - 3662: 20.107292,25.906572 - 3663: 19.898956,26.657095 - 3664: 18.867706,26.532007 - 3665: 17.992706,26.45904 - 3666: 17.367706,26.49031 - 3667: 16.711456,26.896845 - 3668: 16.461456,27.55355 - 3669: 18.253124,28.960777 - 3670: 18.544792,28.35619 - 3671: 32.105022,26.042084 - 3672: 29.698772,25.864878 - 3673: 29.073772,26.135899 - 3674: 36.210175,24.45765 - 3675: 35.73101,24.186628 - 3676: 34.48101,23.717552 - 3677: 34.658092,25.010117 - 3678: 34.57476,24.11366 - 3679: 33.022675,25.322834 - 3680: 34.189342,25.479193 - 3681: 36.19976,26.323528 - 3682: 36.928925,27.292952 - 3683: 37.126842,27.44931 - 3684: 36.814342,26.99066 - 3685: 36.32476,26.573704 - 3686: 23.456963,34.17295 - 3687: 23.706963,32.92208 - 3688: 23.540295,33.432854 - 3689: 11.412072,24.97239 - 3690: 10.672488,24.670095 - 3691: 10.318322,24.35738 - 3692: 11.339156,25.087053 - 3693: 12.172488,25.358074 - 3694: 10.859988,24.86815 - 3695: 14.651656,27.77642 - 3696: 14.349572,27.69303 - 3697: 13.641238,27.442856 - 3698: 9.203738,27.891083 - 3699: 9.255822,26.004356 - 3700: 9.516238,25.514433 - 3701: 11.318322,27.302483 - 3702: 11.287072,28.04258 - 3703: 11.203738,29.386631 - 3704: 11.599572,29.741043 - 3705: 13.828738,30.53326 - 3706: 12.953738,30.679195 - 3707: 11.599572,31.085728 - 3708: 10.682904,32.492954 - 3709: 11.547488,31.450565 - 3710: 11.547488,32.45126 - 3711: 13.964156,32.409565 - 3712: 13.380822,32.357445 - 3713: 12.818322,32.32617 - 3714: 13.880822,35.10814 - 3715: 12.901656,34.81627 - 3716: 12.016238,34.57652 - 3717: 11.474572,33.951084 - 3718: 9.28119,33.66964 - 3719: 7.864523,33.836422 - 3720: 5.395773,33.867695 - 3721: 4.729106,33.398617 - 3722: 3.7095013,33.62794 - 3723: 3.3553343,32.96081 - 3724: 4.4595013,33.42989 - 3725: 2.9074173,32.637672 - 3726: 3.8657513,32.981663 - 3727: 3.5532503,32.731487 - 3728: 3.3345003,32.304108 - 3729: 3.2199173,32.1269 - 3730: 2.4074173,31.689098 - 3731: 2.5584936,32.731487 - 3732: 1.1001601,32.439617 - 3733: 15.122949,16.834099 - 3734: 15.102115,18.168358 - 3735: 17.678928,-7.7376556 - 3736: 17.616428,-7.7793503 - 3737: 17.04351,-8.175459 - 3738: 15.905357,-11.104577 - 3739: 15.23869,-11.292208 - 3740: 7.293606,-9.676502 - 3741: 7.439439,-8.73835 - 3742: 7.647773,-9.864132 - 3743: 7.001939,-9.113611 - 3744: 8.616523,-10.458295 - 3745: -6.292487,-8.921461 - 3746: -8.625821,-8.733831 - 3747: -10.8474655,-9.31757 - 3748: -19.813374,3.4039094 - 3749: -20.021706,2.7159312 - 3750: 26,-42 - 3751: 20,-43 - 3752: 14,-43 - 3753: 4,-43 - 3754: 1,-48 - 3755: -9,-54 - 3756: -5,-54 - 3757: 17,-48 - 3758: 25,-48 - 3759: 34,-47 - 3760: 46,-47 - 3761: 59,-47 - 3762: 65,-47 - 3763: 70,-47 - 3764: 76,-47 - 3765: 73,-48 - 3766: 74,-42 - 3767: 74,-38 - 3768: 74,-34 - 3769: 74,-26 - 3770: 75.473015,-22.639088 - 3771: 75.20218,-22.649511 - 3772: 74.70218,-22.701632 - 3773: 74.4001,-22.80587 - 3774: 71.223015,-18.448677 - 3775: 71.379265,-18.95945 - 3776: 71.38968,-19.355558 - 3777: 69.5251,-18.9386 - 3778: 69.6501,-19.668274 - 3779: 69.63968,-20.116503 - 3780: 71.43135,-20.356253 - 3781: 73.973015,-24.468374 - 3782: 73.36885,-24.854057 - 3783: 72.598015,-25.427374 - 3784: 72.3376,-25.719242 - 3785: 29,-35 - 3786: 31,-32 - 3787: 33,-24 - 3788: 32,-19 - 3789: 26,-13 - 3790: 23,-9 - 3791: 24,-2 - 3792: 25,7 - 3793: 21,12 - 3794: 21.069393,11.594574 - 3795: 15,-10 - 5553: 1.8856349,-31.76875 - 5554: 1.4377184,-32.102314 - 5555: 0.5523014,-32.30037 - 5556: 0.1043849,-31.63324 - 5557: 0.9054718,-36.963215 - 5558: 0.6346383,-37.88052 - 5559: -15.283687,-39.79528 - 5560: -11.767625,-36.089367 - 5561: -11.934292,-35.568172 - 5562: -12.059292,-35.099094 - 5563: -4.3134036,-32.88301 - 5564: -4.5009036,-32.50775 - 5565: -5.1884036,-30.329155 - 5566: -4.802987,-31.924011 - 5567: -2.020146,-31.069252 - 5568: -0.93401146,-34.926098 - 5569: -0.93401146,-34.926098 - 5570: -9.83919,-29.496267 - 5571: -10.443356,-29.319061 - 5572: -10.641273,-29.162703 - 5573: -10.609102,-28.746555 - 5574: -10.619518,-29.34072 - 5575: -16.717175,-26.576124 - 5576: -16.644257,-27.003504 - 5577: -17.04009,-27.21198 - 5578: -17.248425,-26.46146 - 5579: -17.998425,-26.294678 - 5580: -19.498425,-26.180016 - 5581: -20.706757,-26.107048 - 5582: -18.238007,-24.595581 - 5583: -18.275425,-32.036373 - 5584: -17.858759,-31.994678 - 5585: -18.192093,-31.233732 - 5586: -18.233759,-30.378973 - 5587: -17.994175,-30.087103 - 5588: -18.233759,-29.128103 - 5589: -20.22153,-32.5263 - 5590: -21.19028,-32.495026 - 5591: -22.794449,-29.8682 - 5592: -22.794449,-30.191341 - 5593: -23.054867,-31.369244 - 5594: -15.394883,-20.881506 - 5595: -15.728216,-20.766842 - 5596: -14.821966,-21.16295 - 5597: -13.571966,-21.1838 - 5598: -12.384466,-20.89193 - 5599: -11.509466,-19.703604 - 5600: -10.832382,-18.880116 - 5601: -12.0928,-20.141409 - 5602: -11.561549,-20.68345 - 5603: -11.405299,-19.547245 - 5604: -11.332382,-18.99478 - 5605: -30.848236,-15.0994425 - 5606: -30.889904,-14.755453 - 5607: -30.952404,-14.348921 - 5608: -30.983654,-11.427445 - 5609: -30.900318,-11.052185 - 5610: -30.744068,-10.499718 - 5611: -32.379486,-35.70226 - 5612: -32.40032,-36.286 - 5613: -31.202404,-35.81692 - 5614: -30.816986,-35.983707 - 5615: -25.344467,-34.455265 - 5616: -25.95905,-34.403145 - 5617: -26.64655,-35.21621 - 5618: -26.938217,-35.330875 - 5619: -27.261131,-35.153667 - 5620: -25.448631,-40.135998 - 5621: -25.563217,-40.646767 - 5622: -26.281967,-41.386864 - 5623: -28.219467,-41.303474 - 5624: -29.52155,-39.927517 - 5625: -30.938217,-40.000484 - 5626: -32.20905,-39.948368 - 5627: -36.273994,-35.300537 - 5628: -35.248173,-1.9216735 - 5629: -36.98776,-1.5151412 - 5630: -39.73776,-1.1815765 - 5631: -43.528877,1.5458653 - 5632: -44.07054,1.6292565 - 5633: -44.89346,2.3902018 - 5634: -49.86221,1.139333 - 5635: -49.841377,1.1289089 - 5636: -49.58096,1.0663655 - 5637: -49.44554,3.4534404 - 5638: -49.48721,4.2352333 - 5639: -49.372627,2.7341907 - 5640: -45.449696,6.5832567 - 5641: -46.355946,7.55268 - 5642: -46.84553,9.012027 - 5643: -45.710114,8.949484 - 5644: -46.90803,8.949484 - 5645: -47.293446,7.166996 - 5646: -43.991364,8.042604 - 5647: -45.25178,1.5322659 - 5648: -46.012196,1.7928636 - 5649: -46.22053,2.001342 - 5650: -46.324696,2.2723634 - 5651: -46.28303,2.1160047 + 3385: 69.419556,-18.458513 + 3386: 71.544556,-18.489784 + 3387: 72.86748,-27.644072 + 3388: 72.06539,-27.831703 + 3389: 59.36202,-29.971268 + 3390: 56.55852,-29.491768 + 3391: 56.141853,-29.564735 + 3392: 55.37102,-29.637703 + 3393: 51.531544,-27.504915 + 3394: 51.32321,-26.74397 + 3395: 51.312794,-26.379133 + 3396: 53.926983,-24.575829 + 3397: 53.97907,-25.055328 + 3398: 53.9999,-25.753729 + 3399: 51.29157,-22.673273 + 3400: 51.44782,-22.277164 + 3401: 51.8124,-22.131231 + 3402: 50.3124,-20.602192 + 3403: 51.270733,-20.404137 + 3404: 50.85407,-20.643887 + 3405: 48.907383,-21.133812 + 3406: 47.05322,-21.23805 + 3407: 47.366463,-21.248474 + 3408: 47.970627,-21.18593 + 3409: 46.265556,-22.520191 + 3410: 45.463474,-22.70782 + 3411: 45.859306,-22.478495 + 3412: 45.748272,-23.248838 + 3413: 45.63369,-23.540709 + 3414: 45.467022,-23.915968 + 3415: 39.119694,-22.556726 + 3416: 38.963444,-22.421217 + 3417: 38.07209,-20.77324 + 3418: 37.863754,-20.919174 + 3419: 34.301254,-20.801998 + 3420: 33.863754,-20.81242 + 3421: 33.374172,-21.020899 + 3422: 33.311672,-21.813116 + 3423: 33.57209,-22.084137 + 3424: 42.562397,-18.781172 + 3425: 42.416565,-18.239128 + 3426: 43.58323,-17.89514 + 3427: 42.437397,-18.061922 + 3428: 41.572815,-17.509455 + 3429: 40.89573,-17.15504 + 3430: 42.08323,-13.393965 + 3431: 42.218647,-12.68514 + 3432: 41.67698,-12.956161 + 3433: 41.23948,-12.518357 + 3434: 43.11448,-11.148764 + 3435: 43.67698,-10.773503 + 3436: 43.947815,-10.637992 + 3437: 43.567116,-10.888165 + 3438: 42.755833,-8.574059 + 3439: 43.71417,-9.720689 + 3440: 48.731606,-9.658145 + 3441: 50.877438,-9.637298 + 3442: 49.814938,-9.75196 + 3443: 48.33577,-10.085525 + 3444: 49.17952,-9.950014 + 3445: 48.314938,-10.502481 + 3446: 47.596188,-10.992405 + 3447: 47.24202,-11.2425785 + 3448: 51.002857,-8.7825365 + 3449: 51.284107,-5.74918 + 3450: 51.054943,-6.60394 + 3451: 51.190357,-7.583787 + 3452: 52.044525,-6.5935163 + 3453: 52.315357,-7.792265 + 3454: 52.357025,-9.03271 + 3455: 52.346607,-10.52333 + 3456: 52.273693,-10.877742 + 3457: 52.054943,-11.357242 + 3458: 51.586193,-11.711655 + 3459: 51.054943,-12.458711 + 3460: 50.732025,-13.584493 + 3461: 50.607025,-14.043145 + 3462: 50.492443,-14.112839 + 3463: 50.669525,-14.748697 + 3464: 50.565357,-14.477675 + 3465: 50.690357,-15.082262 + 3466: 50.607025,-15.7493925 + 3467: 50.065357,-17.862099 + 3468: 49.950775,-18.226936 + 3469: 49.804943,-19.269327 + 3470: 48.284107,-17.841251 + 3471: 48.742443,-17.111578 + 3472: 49.221607,-16.246395 + 3473: 49.117443,-14.411788 + 3474: 48.804943,-13.552691 + 3475: 48.419525,-13.22955 + 3476: 48.065357,-13.938375 + 3477: 34.96789,-9.936574 + 3478: 34.07206,-9.780215 + 3479: 33.332474,-9.780215 + 3480: 33.07206,-10.072084 + 3481: 32.78039,-10.290986 + 3482: 32.49914,-10.916421 + 3483: 32.467155,-7.5102053 + 3484: 31.769238,-6.884772 + 3485: 30.862988,-6.301033 + 3486: 31.571323,-5.9570436 + 3487: 33.123405,-5.9049244 + 3488: 30.716919,-4.2787952 + 3489: 30.654419,-4.8104143 + 3490: 31.727337,-3.0487738 + 3491: 31.425251,-3.7680235 + 3492: 31.977337,-3.1530128 + 3493: 33.5815,-2.9132628 + 3494: 33.15442,-3.0279264 + 3495: 32.394,-3.2259803 + 3496: 28.50484,-5.175251 + 3497: 28.34859,-4.61236 + 3498: 28.025673,-3.4865785 + 3499: 28.66109,-2.6630893 + 3500: 28.09859,-2.8090243 + 3501: 26.775673,-5.3733053 + 3502: 26.765259,-5.9153485 + 3503: 26.44234,-7.155793 + 3504: 27.681923,-5.7172937 + 3505: 28.463173,-7.0619783 + 3506: 34.732906,-2.6831698 + 3507: 35.326656,-2.5580833 + 3508: 35.78499,-2.4955394 + 3509: 35.86832,-1.9639208 + 3510: 36.170406,-1.2759426 + 3511: 36.732906,0.30432153 + 3512: 37.87874,0.5336478 + 3513: 39.22249,0.65873456 + 3514: 36.107906,0.0437243 + 3515: 34.52457,-0.13348222 + 3516: 35.46207,0.03330016 + 3517: 37.08707,0.27305007 + 3518: 37.44124,0.5128 + 3519: 39.21207,0.59619117 + 3520: 40.451656,0.70043015 + 3521: 41.139156,-0.28984046 + 3522: 39.764156,-0.7380688 + 3523: 38.64957,-0.8423078 + 3524: 37.69124,-0.9465468 + 3525: 31.892235,0.74212575 + 3526: 31.569317,0.7733977 + 3527: 30.423485,0.7108538 + 3528: 29.340149,1.075691 + 3529: 30.735985,1.1903536 + 3530: 59.2448,12.477725 + 3531: 58.442715,12.394332 + 3532: 57.57813,12.363061 + 3533: 56.432297,12.352637 + 3534: 59.2448,11.445758 + 3535: 57.67188,11.341518 + 3536: 53.713547,12.22755 + 3537: 53.432297,12.14416 + 3538: 50.67188,11.581268 + 3539: 49.48438,11.539573 + 3540: 49.776047,11.549996 + 3541: 47.817715,5.8236 + 3542: 47.880215,6.0425034 + 3543: 47.82813,6.4281874 + 3544: 47.380215,6.7200565 + 3545: 47.04688,6.8347197 + 3546: 44.494797,6.761752 + 3547: 45.994797,6.73048 + 3548: 46.116024,6.855568 + 3549: 45.511856,6.824296 + 3550: 46.876442,9.055012 + 3551: 47.230606,8.387882 + 3552: 47.741024,7.6999035 + 3553: 50.888084,6.0633507 + 3554: 50.961002,6.6679373 + 3555: 50.127666,7.5539694 + 3556: 49.044334,7.835415 + 3557: 48.481834,8.40873 + 3558: 47.388084,9.044588 + 3559: 48.023502,8.440001 + 3560: 51.742252,6.8972626 + 3561: 50.981834,7.178709 + 3562: 51.648502,6.8764153 + 3563: 52.138084,6.647089 + 3564: 52.815166,6.3343716 + 3565: 54.044334,7.387186 + 3566: 54.117252,7.647784 + 3567: 55.804752,16.52822 + 3568: 55.763084,16.486525 + 3569: 55.596416,16.330166 + 3570: 55.263084,16.038296 + 3571: 54.690166,15.840242 + 3572: 54.408916,15.5692215 + 3573: 57.721416,17.528915 + 3574: 57.690166,17.080687 + 3575: 50.828125,13.963939 + 3576: 49.901043,13.359351 + 3577: 49.53646,13.32808 + 3578: 47.244793,13.286384 + 3579: 47.06771,13.7033415 + 3580: 46.713543,15.193959 + 3581: 46.796875,14.912515 + 3582: 47.109375,14.412166 + 3583: 42.741573,12.781077 + 3584: 42.272823,12.927012 + 3585: 40.918655,13.052098 + 3586: 41.543655,12.989554 + 3587: 41.604862,6.926813 + 3588: 40.896526,6.874694 + 3589: 40.438194,6.874694 + 3590: 38.167362,8.646758 + 3591: 39.292362,7.7398777 + 3592: 38.625694,8.448704 + 3593: 39.719444,7.260378 + 3594: 38.959026,6.8851175 + 3595: 39.427776,6.3847704 + 3596: 40.094444,6.0616293 + 3597: 41.406944,10.123722 + 3598: 40.646526,9.665071 + 3599: 40.521526,9.341929 + 3600: 39.625694,9.060484 + 3601: 41.281944,8.341234 + 3602: 40.427776,8.424625 + 3603: 29.152435,10.819572 + 3604: 29.048267,11.507549 + 3605: 28.60035,13.4047 + 3606: 28.78785,12.132985 + 3607: 28.798267,17.313667 + 3608: 29.9441,17.355362 + 3609: 30.714935,17.230274 + 3610: 31.048267,17.13646 + 3611: 31.235767,16.312971 + 3612: 31.3191,15.823048 + 3613: 31.485767,14.394971 + 3614: 31.47535,13.477668 + 3615: 28.923267,12.153832 + 3616: 28.360767,11.236528 + 3617: 27.735767,10.882115 + 3618: 28.16285,11.372039 + 3619: 25.961983,10.590245 + 3620: 25.961983,9.370648 + 3621: 26.024483,10.2254095 + 3622: 26.014069,11.361615 + 3623: 25.94115,12.904353 + 3624: 27.242832,13.823396 + 3625: 26.346996,13.2083845 + 3626: 18.553879,13.706912 + 3627: 18.616379,13.6339445 + 3628: 18.949715,13.498435 + 3629: 19.366379,13.310803 + 3630: 19.824715,13.164868 + 3631: 20.001797,12.132903 + 3632: 20.064297,11.401406 + 3633: 19.387215,10.338168 + 3634: 17.230965,10.338168 + 3635: 15.76667,10.160961 + 3636: 13.225657,10.223505 + 3637: 10.931874,10.233929 + 3638: 7.9547377,10.244353 + 3639: 8.545297,10.31732 + 3640: 9.243214,10.359015 + 3641: 9.878631,10.265201 + 3642: 11.441131,10.171386 + 3643: 12.326547,10.140114 + 3644: 23.46373,22.522877 + 3645: 23.442894,22.199736 + 3646: 23.317894,21.532606 + 3647: 23.192894,20.719542 + 3648: 22.90123,19.83351 + 3649: 22.515812,19.135107 + 3650: 22.265812,18.259499 + 3651: 24.46373,20.062834 + 3652: 25.359562,18.019749 + 3653: 25.43248,17.779999 + 3654: 15.003123,26.03166 + 3655: 14.357289,25.989964 + 3656: 15.253123,25.969116 + 3657: 16.117706,25.885725 + 3658: 17.648956,26.010813 + 3659: 18.669792,26.010813 + 3660: 21.440624,26.03166 + 3661: 20.107292,25.906572 + 3662: 19.898956,26.657095 + 3663: 18.867706,26.532007 + 3664: 17.992706,26.45904 + 3665: 17.367706,26.49031 + 3666: 16.711456,26.896845 + 3667: 16.461456,27.55355 + 3668: 18.253124,28.960777 + 3669: 18.544792,28.35619 + 3670: 32.105022,26.042084 + 3671: 29.698772,25.864878 + 3672: 29.073772,26.135899 + 3673: 36.210175,24.45765 + 3674: 35.73101,24.186628 + 3675: 34.48101,23.717552 + 3676: 34.658092,25.010117 + 3677: 34.57476,24.11366 + 3678: 33.022675,25.322834 + 3679: 34.189342,25.479193 + 3680: 36.19976,26.323528 + 3681: 36.928925,27.292952 + 3682: 37.126842,27.44931 + 3683: 36.814342,26.99066 + 3684: 36.32476,26.573704 + 3685: 23.456963,34.17295 + 3686: 23.706963,32.92208 + 3687: 23.540295,33.432854 + 3688: 11.412072,24.97239 + 3689: 10.672488,24.670095 + 3690: 10.318322,24.35738 + 3691: 11.339156,25.087053 + 3692: 12.172488,25.358074 + 3693: 10.859988,24.86815 + 3694: 14.651656,27.77642 + 3695: 14.349572,27.69303 + 3696: 13.641238,27.442856 + 3697: 9.203738,27.891083 + 3698: 9.255822,26.004356 + 3699: 9.516238,25.514433 + 3700: 11.318322,27.302483 + 3701: 11.287072,28.04258 + 3702: 11.203738,29.386631 + 3703: 11.599572,29.741043 + 3704: 13.828738,30.53326 + 3705: 12.953738,30.679195 + 3706: 11.599572,31.085728 + 3707: 10.682904,32.492954 + 3708: 11.547488,31.450565 + 3709: 11.547488,32.45126 + 3710: 13.964156,32.409565 + 3711: 13.380822,32.357445 + 3712: 12.818322,32.32617 + 3713: 13.880822,35.10814 + 3714: 12.901656,34.81627 + 3715: 12.016238,34.57652 + 3716: 11.474572,33.951084 + 3717: 9.28119,33.66964 + 3718: 7.864523,33.836422 + 3719: 5.395773,33.867695 + 3720: 4.729106,33.398617 + 3721: 3.7095013,33.62794 + 3722: 3.3553343,32.96081 + 3723: 4.4595013,33.42989 + 3724: 2.9074173,32.637672 + 3725: 3.8657513,32.981663 + 3726: 3.5532503,32.731487 + 3727: 3.3345003,32.304108 + 3728: 3.2199173,32.1269 + 3729: 2.4074173,31.689098 + 3730: 2.5584936,32.731487 + 3731: 1.1001601,32.439617 + 3732: 15.122949,16.834099 + 3733: 15.102115,18.168358 + 3734: 17.678928,-7.7376556 + 3735: 17.616428,-7.7793503 + 3736: 17.04351,-8.175459 + 3737: 15.905357,-11.104577 + 3738: 15.23869,-11.292208 + 3739: 7.293606,-9.676502 + 3740: 7.439439,-8.73835 + 3741: 7.647773,-9.864132 + 3742: 7.001939,-9.113611 + 3743: 8.616523,-10.458295 + 3744: -6.292487,-8.921461 + 3745: -8.625821,-8.733831 + 3746: -10.8474655,-9.31757 + 3747: -19.813374,3.4039094 + 3748: -20.021706,2.7159312 + 3749: 26,-42 + 3750: 20,-43 + 3751: 14,-43 + 3752: 4,-43 + 3753: 1,-48 + 3754: -9,-54 + 3755: -5,-54 + 3756: 17,-48 + 3757: 25,-48 + 3758: 34,-47 + 3759: 46,-47 + 3760: 59,-47 + 3761: 65,-47 + 3762: 70,-47 + 3763: 76,-47 + 3764: 73,-48 + 3765: 74,-42 + 3766: 74,-38 + 3767: 74,-34 + 3768: 74,-26 + 3769: 75.473015,-22.639088 + 3770: 75.20218,-22.649511 + 3771: 74.70218,-22.701632 + 3772: 74.4001,-22.80587 + 3773: 71.223015,-18.448677 + 3774: 71.379265,-18.95945 + 3775: 71.38968,-19.355558 + 3776: 69.5251,-18.9386 + 3777: 69.6501,-19.668274 + 3778: 69.63968,-20.116503 + 3779: 71.43135,-20.356253 + 3780: 73.973015,-24.468374 + 3781: 73.36885,-24.854057 + 3782: 72.598015,-25.427374 + 3783: 72.3376,-25.719242 + 3784: 29,-35 + 3785: 31,-32 + 3786: 33,-24 + 3787: 32,-19 + 3788: 26,-13 + 3789: 23,-9 + 3790: 24,-2 + 3791: 25,7 + 3792: 21,12 + 3793: 21.069393,11.594574 + 3794: 15,-10 + 5537: 1.8856349,-31.76875 + 5538: 1.4377184,-32.102314 + 5539: 0.5523014,-32.30037 + 5540: 0.1043849,-31.63324 + 5541: 0.9054718,-36.963215 + 5542: 0.6346383,-37.88052 + 5543: -15.283687,-39.79528 + 5544: -11.767625,-36.089367 + 5545: -11.934292,-35.568172 + 5546: -12.059292,-35.099094 + 5547: -4.3134036,-32.88301 + 5548: -4.5009036,-32.50775 + 5549: -5.1884036,-30.329155 + 5550: -4.802987,-31.924011 + 5551: -2.020146,-31.069252 + 5552: -0.93401146,-34.926098 + 5553: -0.93401146,-34.926098 + 5554: -9.83919,-29.496267 + 5555: -10.443356,-29.319061 + 5556: -10.641273,-29.162703 + 5557: -10.609102,-28.746555 + 5558: -10.619518,-29.34072 + 5559: -16.717175,-26.576124 + 5560: -16.644257,-27.003504 + 5561: -17.04009,-27.21198 + 5562: -17.248425,-26.46146 + 5563: -17.998425,-26.294678 + 5564: -19.498425,-26.180016 + 5565: -20.706757,-26.107048 + 5566: -18.238007,-24.595581 + 5567: -18.275425,-32.036373 + 5568: -17.858759,-31.994678 + 5569: -18.192093,-31.233732 + 5570: -18.233759,-30.378973 + 5571: -17.994175,-30.087103 + 5572: -18.233759,-29.128103 + 5573: -20.22153,-32.5263 + 5574: -21.19028,-32.495026 + 5575: -22.794449,-29.8682 + 5576: -22.794449,-30.191341 + 5577: -23.054867,-31.369244 + 5578: -15.394883,-20.881506 + 5579: -15.728216,-20.766842 + 5580: -14.821966,-21.16295 + 5581: -13.571966,-21.1838 + 5582: -12.384466,-20.89193 + 5583: -11.509466,-19.703604 + 5584: -10.832382,-18.880116 + 5585: -12.0928,-20.141409 + 5586: -11.561549,-20.68345 + 5587: -11.405299,-19.547245 + 5588: -11.332382,-18.99478 + 5589: -30.848236,-15.0994425 + 5590: -30.889904,-14.755453 + 5591: -30.952404,-14.348921 + 5592: -30.983654,-11.427445 + 5593: -30.900318,-11.052185 + 5594: -30.744068,-10.499718 + 5595: -32.379486,-35.70226 + 5596: -32.40032,-36.286 + 5597: -31.202404,-35.81692 + 5598: -30.816986,-35.983707 + 5599: -25.344467,-34.455265 + 5600: -25.95905,-34.403145 + 5601: -26.64655,-35.21621 + 5602: -26.938217,-35.330875 + 5603: -27.261131,-35.153667 + 5604: -25.448631,-40.135998 + 5605: -25.563217,-40.646767 + 5606: -26.281967,-41.386864 + 5607: -28.219467,-41.303474 + 5608: -29.52155,-39.927517 + 5609: -30.938217,-40.000484 + 5610: -32.20905,-39.948368 + 5611: -36.273994,-35.300537 + 5612: -35.248173,-1.9216735 + 5613: -36.98776,-1.5151412 + 5614: -39.73776,-1.1815765 + 5615: -43.528877,1.5458653 + 5616: -44.07054,1.6292565 + 5617: -44.89346,2.3902018 + 5618: -49.86221,1.139333 + 5619: -49.841377,1.1289089 + 5620: -49.58096,1.0663655 + 5621: -49.44554,3.4534404 + 5622: -49.48721,4.2352333 + 5623: -49.372627,2.7341907 + 5624: -45.449696,6.5832567 + 5625: -46.355946,7.55268 + 5626: -46.84553,9.012027 + 5627: -45.710114,8.949484 + 5628: -46.90803,8.949484 + 5629: -47.293446,7.166996 + 5630: -43.991364,8.042604 + 5631: -45.25178,1.5322659 + 5632: -46.012196,1.7928636 + 5633: -46.22053,2.001342 + 5634: -46.324696,2.2723634 + 5635: -46.28303,2.1160047 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 3796: 0.7615886,-23.692425 - 3797: 0.81367207,-23.661154 - 3798: 1.0949221,-23.827936 - 3799: 1.0636721,-25.214315 - 3800: 0.39550686,-34.45684 - 3943: 54,13 - 3944: 54,9 + 3795: 0.7615886,-23.692425 + 3796: 0.81367207,-23.661154 + 3797: 1.0949221,-23.827936 + 3798: 1.0636721,-25.214315 + 3799: 0.39550686,-34.45684 + 3942: 54,13 + 3943: 54,9 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 5277: -32.026825,-5.997283 - 5278: -24.030098,-6.0480723 - 5279: -24.030098,-6.0480723 - 5292: -49.025608,6.0883503 - 5293: -49.025608,6.0883503 - 5340: -45.0686,3.3973076 - 5341: -45.0686,3.3973076 - 5342: -44.641518,4.001895 - 5343: -44.97485,7.9872103 - 5344: -44.985268,7.9872103 - 5345: -42.99568,8.028906 - 5346: -42.99568,8.028906 - 5347: -42.99568,8.028906 - 5375: 2.7265406,-39.491512 - 5376: 2.7161236,-40.002285 - 5377: 2.7161236,-40.002285 - 5552: -6.104628,-21.528816 + 5261: -32.026825,-5.997283 + 5262: -24.030098,-6.0480723 + 5263: -24.030098,-6.0480723 + 5276: -49.025608,6.0883503 + 5277: -49.025608,6.0883503 + 5324: -45.0686,3.3973076 + 5325: -45.0686,3.3973076 + 5326: -44.641518,4.001895 + 5327: -44.97485,7.9872103 + 5328: -44.985268,7.9872103 + 5329: -42.99568,8.028906 + 5330: -42.99568,8.028906 + 5331: -42.99568,8.028906 + 5359: 2.7265406,-39.491512 + 5360: 2.7161236,-40.002285 + 5361: 2.7161236,-40.002285 + 5536: -6.104628,-21.528816 - node: cleanable: True color: '#FFFFFFFF' @@ -3750,1613 +3752,1606 @@ entities: 2234: -11.536205,-0.47062206 2235: -13.484123,-3.7645764 2236: -6.598706,-8.582137 - 2237: -5.4528723,-7.550171 - 2238: -5.3903723,-3.7767167 - 2239: -14.202872,-10.448606 - 2240: -2.6940975,-11.574832 - 2241: -3.298264,-11.595679 - 2242: -4.4753475,-10.490746 - 2243: -2.454514,-10.511593 - 2244: -1.454514,-9.458778 - 2245: 0.5969219,-11.845853 - 2246: 0.49275494,-12.387897 - 2247: 0.46150494,-13.35732 - 2248: 3.478551,-8.484807 - 2249: 7.0299044,-8.073131 - 2250: 7.0819883,-8.761107 - 2251: 2.6165943,-12.527547 - 2252: 2.4707613,-12.746449 - 2253: 2.5540943,-16.394815 - 2254: 2.5436773,-16.040403 - 2255: 2.5332613,-15.623446 - 2256: 2.1999273,-15.873621 - 2257: 1.8145113,-15.758958 - 2258: 1.7832613,-16.123795 - 2259: 3.3561773,-18.7698 - 2260: 3.4811773,-19.416082 - 2261: 4.6270113,-18.613441 - 2262: 4.6061773,-18.488354 - 2263: 4.4499273,-17.581474 - 2264: 4.0436773,-17.498083 - 2265: 1.9395113,-18.550898 - 2266: 1.6165943,-18.571747 - 2267: 1.2103443,-18.686409 - 2268: 4.601055,-13.653295 - 2269: 5.017722,-13.55948 - 2270: 5.913555,-13.903468 - 2271: 5.882305,-14.143218 - 2272: 5.840638,-14.445512 - 2273: 3.5698051,-11.349611 - 2274: 3.5073051,-11.422579 - 2275: 3.8406382,-11.495545 - 2276: 2.5073051,-11.495545 - 2277: 9.247281,-10.978955 - 2278: 9.580614,-10.926836 - 2279: 17.072475,-7.5941076 - 2280: 14.4578905,-8.011065 - 2281: 15.67664,-11.4196825 - 2282: 16.124557,-11.492649 - 2283: 22.971046,-11.190355 - 2284: 22.82521,-11.513497 - 2285: 23.002296,-11.461377 - 2286: 23.408546,-11.388411 - 2287: 26.581997,-4.5476413 - 2288: 27.175747,-4.5476413 - 2289: 26.956997,-4.776967 - 2290: 28.071583,-4.5267935 - 2291: 28.248665,-4.516369 - 2292: 28.394497,-5.3711295 - 2293: 27.967415,-5.5691833 - 2294: 30.602833,-5.673423 - 2295: 31.019497,-4.8186626 - 2296: 31.446583,-4.558065 - 2297: 31.456997,-4.558065 - 2298: 33.852833,-3.432283 - 2299: 33.602833,-3.4114356 - 2300: 33.269497,-2.994479 - 2301: 33.51746,-0.37743497 - 2302: 33.413296,0.14375997 - 2303: 34.444546,0.4356296 - 2304: 34.444546,-0.3670113 - 2305: 34.600796,-0.49209833 - 2306: 34.902878,-0.79439163 - 2307: 35.246628,-1.3885541 - 2308: 36.934128,0.779618 - 2309: 37.45496,1.0089443 - 2310: 36.757046,0.9776728 - 2311: 37.782017,0.46690106 - 2312: 38.844517,0.42520547 - 2313: 39.11535,0.8630092 - 2314: 39.11535,0.85258555 - 2315: 40.41743,-0.51294565 - 2316: 41.05285,-0.62760925 - 2317: 38.907017,-1.4406738 - 2318: 37.44868,-0.05429387 - 2319: 37.42785,-0.07514167 - 2320: 27.477322,1.5362422 - 2321: 27.36274,0.9629276 - 2322: 29.64399,1.3381884 - 2323: 30.716904,0.816993 - 2324: 30.685654,0.67105794 - 2325: 31.30024,0.6606343 - 2326: 31.42524,1.4320037 - 2327: 30.946072,1.4111559 - 2328: 31.852322,1.0046237 - 2329: 31.61274,0.921232 - 2330: 32.16482,1.3277647 - 2331: 30.92524,2.5654871 - 2332: 31.64399,3.3368556 - 2333: 31.414822,3.3577034 - 2334: 29.321072,3.2743123 - 2335: 29.414822,3.0971062 - 2336: 26.623154,3.368128 - 2337: 26.560654,3.3785517 - 2338: 33.435654,3.3889754 - 2339: 33.39399,-4.4124975 - 2340: 32.72732,-4.4854646 - 2341: 32.28982,-4.5063124 - 2342: 32.22732,-4.5063124 - 2343: 31.946072,-3.43265 - 2344: 27.227322,-2.4030805 - 2345: 26.935654,-3.4037755 - 2346: 27.98774,-3.4871666 - 2347: 27.935654,-2.5281677 - 2348: 28.529404,-2.3301136 - 2349: 29.466904,-2.4552002 - 2350: 29.529404,-2.9685516 - 2351: 34.46227,-9.558907 - 2352: 35.191433,-9.475515 - 2353: 35.566433,-11.403938 - 2354: 34.39977,-11.497753 - 2355: 34.972683,-10.945286 - 2356: 35.01435,-10.455362 - 2357: 35.410183,-10.476211 - 2358: 36.402534,-12.446329 - 2359: 40.488354,-11.508177 - 2360: 42.547966,-11.768775 - 2361: 42.527134,-12.008525 - 2362: 42.53755,-11.8417425 - 2363: 43.527134,-11.403938 - 2364: 43.860466,-9.517212 - 2365: 45.28755,-9.475515 - 2366: 45.589634,-9.475515 - 2367: 47.433384,-9.444244 - 2368: 48.579216,-9.475515 - 2369: 48.704216,-9.475515 - 2370: 48.683384,-9.527636 - 2371: 49.72505,-9.517212 - 2372: 49.922966,-9.496364 - 2373: 50.5688,-9.485939 - 2374: 50.28755,-9.527636 - 2375: 50.110466,-9.517212 - 2376: 49.766716,-9.548483 - 2377: 51.055984,-9.765561 - 2378: 51.0039,-9.98446 - 2379: 50.951817,-10.65159 - 2380: 50.983067,-10.985155 - 2381: 50.983067,-11.349992 - 2382: 50.451817,-11.548046 - 2383: 51.59765,-11.464656 - 2384: 52.087234,-11.537623 - 2385: 52.233067,-11.485503 - 2386: 52.514317,-11.006003 - 2387: 52.420567,-9.327754 - 2388: 50.66015,-5.450061 - 2389: 50.5664,-5.5543 - 2390: 50.545567,-5.648115 - 2391: 50.514317,-6.336093 - 2392: 50.514317,-6.6696577 - 2393: 50.483067,-6.8781357 - 2394: 50.462234,-7.138734 - 2395: 50.483067,-7.8267117 - 2396: 50.514317,-8.108157 - 2397: 50.524734,-8.264515 - 2398: 50.53515,-8.556385 - 2399: 50.47265,-9.07758 - 2400: 50.524734,-8.681472 - 2401: 51.868484,-5.4917564 - 2402: 52.170567,-5.6689625 - 2403: 52.170567,-6.898984 - 2404: 52.1289,-7.013647 - 2405: 52.295567,-7.07619 - 2406: 52.399734,-7.55569 - 2407: 52.451817,-7.7120485 - 2408: 52.451817,-8.400026 - 2409: 52.483067,-8.493841 - 2410: 52.483067,-8.535538 - 2411: 52.108067,-8.962917 - 2412: 52.493484,-9.473688 - 2413: 52.493484,-9.838526 - 2414: 52.493484,-10.11997 - 2415: 52.59765,-10.839221 - 2416: 52.389317,-11.495927 - 2417: 51.545567,-12.4901495 - 2418: 51.545567,-12.938377 - 2419: 51.53515,-12.907105 - 2420: 51.5039,-13.58466 - 2421: 51.514317,-13.63678 - 2422: 51.555984,-14.126703 - 2423: 51.5664,-14.428996 - 2424: 51.139317,-13.553388 - 2425: 50.670567,-13.480421 - 2426: 50.53515,-12.91753 - 2427: 50.53515,-13.886953 - 2428: 50.483067,-15.075278 - 2429: 50.483067,-15.711137 - 2430: 50.524734,-15.627746 - 2431: 50.608067,-16.128094 - 2432: 50.59765,-16.618015 - 2433: 51.430984,-16.555473 - 2434: 51.524734,-18.44328 - 2435: 51.47265,-20.366905 - 2436: 51.493484,-20.502415 - 2437: 51.837234,-20.564959 - 2438: 52.368484,-20.51284 - 2439: 52.087234,-22.410568 - 2440: 52.576817,-22.441841 - 2441: 52.576817,-22.108276 - 2442: 51.524734,-22.514809 + 2237: -5.3903723,-3.7767167 + 2238: -14.202872,-10.448606 + 2239: -2.6940975,-11.574832 + 2240: -3.298264,-11.595679 + 2241: -4.4753475,-10.490746 + 2242: -2.454514,-10.511593 + 2243: -1.454514,-9.458778 + 2244: 0.5969219,-11.845853 + 2245: 0.49275494,-12.387897 + 2246: 0.46150494,-13.35732 + 2247: 3.478551,-8.484807 + 2248: 7.0299044,-8.073131 + 2249: 7.0819883,-8.761107 + 2250: 2.6165943,-12.527547 + 2251: 2.4707613,-12.746449 + 2252: 2.5540943,-16.394815 + 2253: 2.5436773,-16.040403 + 2254: 2.5332613,-15.623446 + 2255: 2.1999273,-15.873621 + 2256: 1.8145113,-15.758958 + 2257: 1.7832613,-16.123795 + 2258: 3.3561773,-18.7698 + 2259: 3.4811773,-19.416082 + 2260: 4.6270113,-18.613441 + 2261: 4.6061773,-18.488354 + 2262: 4.4499273,-17.581474 + 2263: 4.0436773,-17.498083 + 2264: 1.9395113,-18.550898 + 2265: 1.6165943,-18.571747 + 2266: 1.2103443,-18.686409 + 2267: 4.601055,-13.653295 + 2268: 5.017722,-13.55948 + 2269: 5.913555,-13.903468 + 2270: 5.882305,-14.143218 + 2271: 5.840638,-14.445512 + 2272: 3.5698051,-11.349611 + 2273: 3.5073051,-11.422579 + 2274: 3.8406382,-11.495545 + 2275: 2.5073051,-11.495545 + 2276: 9.247281,-10.978955 + 2277: 9.580614,-10.926836 + 2278: 17.072475,-7.5941076 + 2279: 14.4578905,-8.011065 + 2280: 15.67664,-11.4196825 + 2281: 16.124557,-11.492649 + 2282: 22.971046,-11.190355 + 2283: 22.82521,-11.513497 + 2284: 23.002296,-11.461377 + 2285: 23.408546,-11.388411 + 2286: 26.581997,-4.5476413 + 2287: 27.175747,-4.5476413 + 2288: 26.956997,-4.776967 + 2289: 28.071583,-4.5267935 + 2290: 28.248665,-4.516369 + 2291: 28.394497,-5.3711295 + 2292: 27.967415,-5.5691833 + 2293: 30.602833,-5.673423 + 2294: 31.019497,-4.8186626 + 2295: 31.446583,-4.558065 + 2296: 31.456997,-4.558065 + 2297: 33.852833,-3.432283 + 2298: 33.602833,-3.4114356 + 2299: 33.269497,-2.994479 + 2300: 33.51746,-0.37743497 + 2301: 33.413296,0.14375997 + 2302: 34.444546,0.4356296 + 2303: 34.444546,-0.3670113 + 2304: 34.600796,-0.49209833 + 2305: 34.902878,-0.79439163 + 2306: 35.246628,-1.3885541 + 2307: 36.934128,0.779618 + 2308: 37.45496,1.0089443 + 2309: 36.757046,0.9776728 + 2310: 37.782017,0.46690106 + 2311: 38.844517,0.42520547 + 2312: 39.11535,0.8630092 + 2313: 39.11535,0.85258555 + 2314: 40.41743,-0.51294565 + 2315: 41.05285,-0.62760925 + 2316: 38.907017,-1.4406738 + 2317: 37.44868,-0.05429387 + 2318: 37.42785,-0.07514167 + 2319: 27.477322,1.5362422 + 2320: 27.36274,0.9629276 + 2321: 29.64399,1.3381884 + 2322: 30.716904,0.816993 + 2323: 30.685654,0.67105794 + 2324: 31.30024,0.6606343 + 2325: 31.42524,1.4320037 + 2326: 30.946072,1.4111559 + 2327: 31.852322,1.0046237 + 2328: 31.61274,0.921232 + 2329: 32.16482,1.3277647 + 2330: 30.92524,2.5654871 + 2331: 31.64399,3.3368556 + 2332: 31.414822,3.3577034 + 2333: 29.321072,3.2743123 + 2334: 29.414822,3.0971062 + 2335: 26.623154,3.368128 + 2336: 26.560654,3.3785517 + 2337: 33.435654,3.3889754 + 2338: 33.39399,-4.4124975 + 2339: 32.72732,-4.4854646 + 2340: 32.28982,-4.5063124 + 2341: 32.22732,-4.5063124 + 2342: 31.946072,-3.43265 + 2343: 27.227322,-2.4030805 + 2344: 26.935654,-3.4037755 + 2345: 27.98774,-3.4871666 + 2346: 27.935654,-2.5281677 + 2347: 28.529404,-2.3301136 + 2348: 29.466904,-2.4552002 + 2349: 29.529404,-2.9685516 + 2350: 34.46227,-9.558907 + 2351: 35.191433,-9.475515 + 2352: 35.566433,-11.403938 + 2353: 34.39977,-11.497753 + 2354: 34.972683,-10.945286 + 2355: 35.01435,-10.455362 + 2356: 35.410183,-10.476211 + 2357: 36.402534,-12.446329 + 2358: 40.488354,-11.508177 + 2359: 42.547966,-11.768775 + 2360: 42.527134,-12.008525 + 2361: 42.53755,-11.8417425 + 2362: 43.527134,-11.403938 + 2363: 43.860466,-9.517212 + 2364: 45.28755,-9.475515 + 2365: 45.589634,-9.475515 + 2366: 47.433384,-9.444244 + 2367: 48.579216,-9.475515 + 2368: 48.704216,-9.475515 + 2369: 48.683384,-9.527636 + 2370: 49.72505,-9.517212 + 2371: 49.922966,-9.496364 + 2372: 50.5688,-9.485939 + 2373: 50.28755,-9.527636 + 2374: 50.110466,-9.517212 + 2375: 49.766716,-9.548483 + 2376: 51.055984,-9.765561 + 2377: 51.0039,-9.98446 + 2378: 50.951817,-10.65159 + 2379: 50.983067,-10.985155 + 2380: 50.983067,-11.349992 + 2381: 50.451817,-11.548046 + 2382: 51.59765,-11.464656 + 2383: 52.087234,-11.537623 + 2384: 52.233067,-11.485503 + 2385: 52.514317,-11.006003 + 2386: 52.420567,-9.327754 + 2387: 50.66015,-5.450061 + 2388: 50.5664,-5.5543 + 2389: 50.545567,-5.648115 + 2390: 50.514317,-6.336093 + 2391: 50.514317,-6.6696577 + 2392: 50.483067,-6.8781357 + 2393: 50.462234,-7.138734 + 2394: 50.483067,-7.8267117 + 2395: 50.514317,-8.108157 + 2396: 50.524734,-8.264515 + 2397: 50.53515,-8.556385 + 2398: 50.47265,-9.07758 + 2399: 50.524734,-8.681472 + 2400: 51.868484,-5.4917564 + 2401: 52.170567,-5.6689625 + 2402: 52.170567,-6.898984 + 2403: 52.1289,-7.013647 + 2404: 52.295567,-7.07619 + 2405: 52.399734,-7.55569 + 2406: 52.451817,-7.7120485 + 2407: 52.451817,-8.400026 + 2408: 52.483067,-8.493841 + 2409: 52.483067,-8.535538 + 2410: 52.108067,-8.962917 + 2411: 52.493484,-9.473688 + 2412: 52.493484,-9.838526 + 2413: 52.493484,-10.11997 + 2414: 52.59765,-10.839221 + 2415: 52.389317,-11.495927 + 2416: 51.545567,-12.4901495 + 2417: 51.545567,-12.938377 + 2418: 51.53515,-12.907105 + 2419: 51.5039,-13.58466 + 2420: 51.514317,-13.63678 + 2421: 51.555984,-14.126703 + 2422: 51.5664,-14.428996 + 2423: 51.139317,-13.553388 + 2424: 50.670567,-13.480421 + 2425: 50.53515,-12.91753 + 2426: 50.53515,-13.886953 + 2427: 50.483067,-15.075278 + 2428: 50.483067,-15.711137 + 2429: 50.524734,-15.627746 + 2430: 50.608067,-16.128094 + 2431: 50.59765,-16.618015 + 2432: 51.430984,-16.555473 + 2433: 51.524734,-18.44328 + 2434: 51.47265,-20.366905 + 2435: 51.493484,-20.502415 + 2436: 51.837234,-20.564959 + 2437: 52.368484,-20.51284 + 2438: 52.087234,-22.410568 + 2439: 52.576817,-22.441841 + 2440: 52.576817,-22.108276 + 2441: 51.524734,-22.514809 + 2442: 51.014317,-23.985928 2443: 51.014317,-23.985928 - 2444: 51.014317,-23.985928 - 2445: 50.5664,-25.424427 - 2446: 50.993484,-25.518242 - 2447: 51.087234,-25.935198 - 2448: 51.295567,-26.427126 - 2449: 51.483067,-26.583485 - 2450: 51.483067,-27.334005 - 2451: 51.462234,-27.39655 - 2452: 51.420567,-27.615452 - 2453: 50.576817,-27.47994 - 2454: 50.5664,-27.44867 - 2455: 50.483067,-23.37484 - 2456: 50.233067,-22.301178 - 2457: 49.6914,-22.311602 - 2458: 49.712234,-21.707014 - 2459: 49.951817,-20.99819 - 2460: 49.680984,-20.768864 - 2461: 49.6289,-20.633352 + 2444: 50.5664,-25.424427 + 2445: 50.993484,-25.518242 + 2446: 51.087234,-25.935198 + 2447: 51.295567,-26.427126 + 2448: 51.483067,-26.583485 + 2449: 51.483067,-27.334005 + 2450: 51.462234,-27.39655 + 2451: 51.420567,-27.615452 + 2452: 50.576817,-27.47994 + 2453: 50.5664,-27.44867 + 2454: 50.483067,-23.37484 + 2455: 50.233067,-22.301178 + 2456: 49.6914,-22.311602 + 2457: 49.712234,-21.707014 + 2458: 49.951817,-20.99819 + 2459: 49.680984,-20.768864 + 2460: 49.6289,-20.633352 + 2461: 50.41015,-19.512796 2462: 50.41015,-19.512796 - 2463: 50.41015,-19.512796 - 2464: 50.045567,-19.38771 - 2465: 48.493484,-19.502373 - 2466: 47.774734,-19.533646 + 2463: 50.045567,-19.38771 + 2464: 48.493484,-19.502373 + 2465: 47.774734,-19.533646 + 2466: 47.545567,-19.450254 2467: 47.545567,-19.450254 - 2468: 47.545567,-19.450254 - 2469: 47.53515,-18.418287 - 2470: 48.389317,-18.449558 - 2471: 48.47265,-18.459982 - 2472: 48.47265,-18.155146 - 2473: 49.430984,-16.618757 - 2474: 49.4414,-16.535366 - 2475: 49.451817,-16.483246 - 2476: 48.5039,-15.962051 - 2477: 48.514317,-14.450585 - 2478: 48.483067,-14.638215 - 2479: 48.47265,-15.148987 - 2480: 48.483067,-15.284497 - 2481: 47.451817,-14.440162 - 2482: 47.3789,-14.700759 - 2483: 47.41015,-15.065596 - 2484: 47.430984,-15.190682 - 2485: 47.47265,-15.524247 + 2468: 47.53515,-18.418287 + 2469: 48.389317,-18.449558 + 2470: 48.47265,-18.459982 + 2471: 48.47265,-18.155146 + 2472: 49.430984,-16.618757 + 2473: 49.4414,-16.535366 + 2474: 49.451817,-16.483246 + 2475: 48.5039,-15.962051 + 2476: 48.514317,-14.450585 + 2477: 48.483067,-14.638215 + 2478: 48.47265,-15.148987 + 2479: 48.483067,-15.284497 + 2480: 47.451817,-14.440162 + 2481: 47.3789,-14.700759 + 2482: 47.41015,-15.065596 + 2483: 47.430984,-15.190682 + 2484: 47.47265,-15.524247 + 2485: 47.514317,-12.568465 2486: 47.514317,-12.568465 2487: 47.514317,-12.568465 2488: 47.514317,-12.568465 - 2489: 47.514317,-12.568465 - 2490: 47.97265,-12.505921 - 2491: 48.47265,-12.47465 - 2492: 49.0039,-12.516346 - 2493: 49.295567,-12.516346 - 2494: 48.930984,-12.495498 - 2495: 49.28515,-12.537193 - 2496: 49.34765,-12.6205845 - 2497: 49.41015,-12.870759 - 2498: 49.420567,-13.120933 - 2499: 49.462234,-13.287715 - 2500: 49.5039,-13.537889 - 2501: 49.5039,-13.819334 - 2502: 49.483067,-14.017388 - 2503: 49.47265,-14.47604 + 2489: 47.97265,-12.505921 + 2490: 48.47265,-12.47465 + 2491: 49.0039,-12.516346 + 2492: 49.295567,-12.516346 + 2493: 48.930984,-12.495498 + 2494: 49.28515,-12.537193 + 2495: 49.34765,-12.6205845 + 2496: 49.41015,-12.870759 + 2497: 49.420567,-13.120933 + 2498: 49.462234,-13.287715 + 2499: 49.5039,-13.537889 + 2500: 49.5039,-13.819334 + 2501: 49.483067,-14.017388 + 2502: 49.47265,-14.47604 + 2503: 49.5664,-17.540283 2504: 49.5664,-17.540283 - 2505: 49.5664,-17.540283 - 2506: 49.899734,-17.56113 - 2507: 50.233067,-17.52986 - 2508: 49.962234,-17.519434 - 2509: 50.045567,-17.550707 - 2510: 50.389317,-17.540283 - 2511: 43.478157,-20.528257 - 2512: 43.90524,-20.465714 - 2513: 44.071907,-20.47614 - 2514: 44.040657,-22.383713 - 2515: 44.040657,-22.529648 - 2516: 44.446907,-22.529648 - 2517: 45.551075,-23.55119 + 2505: 49.899734,-17.56113 + 2506: 50.233067,-17.52986 + 2507: 49.962234,-17.519434 + 2508: 50.045567,-17.550707 + 2509: 50.389317,-17.540283 + 2510: 43.478157,-20.528257 + 2511: 43.90524,-20.465714 + 2512: 44.071907,-20.47614 + 2513: 44.040657,-22.383713 + 2514: 44.040657,-22.529648 + 2515: 44.446907,-22.529648 + 2516: 45.551075,-23.55119 + 2517: 44.540657,-24.48206 2518: 44.540657,-24.48206 - 2519: 44.540657,-24.48206 - 2520: 45.488575,-25.003256 - 2521: 45.68649,-24.951136 - 2522: 45.696907,-24.96156 - 2523: 46.582325,-26.483316 - 2524: 46.84274,-26.483316 - 2525: 47.09274,-26.483316 - 2526: 47.009407,-26.483316 - 2527: 48.509407,-26.514587 - 2528: 48.46774,-23.439535 - 2529: 48.40524,-23.575045 - 2530: 47.738575,-23.575045 - 2531: 47.509407,-24.44023 - 2532: 42.39001,-22.419138 - 2533: 42.49418,-22.481682 - 2534: 37.467724,-23.482378 - 2535: 37.394806,-24.149508 - 2536: 37.519806,-24.31629 - 2537: 38.040638,-25.369104 - 2538: 38.051056,-25.369104 - 2539: 38.457306,-25.442072 - 2540: 38.436474,-25.400375 - 2541: 39.332306,-24.58731 - 2542: 39.457306,-24.50392 + 2519: 45.488575,-25.003256 + 2520: 45.68649,-24.951136 + 2521: 45.696907,-24.96156 + 2522: 46.582325,-26.483316 + 2523: 46.84274,-26.483316 + 2524: 47.09274,-26.483316 + 2525: 47.009407,-26.483316 + 2526: 48.509407,-26.514587 + 2527: 48.46774,-23.439535 + 2528: 48.40524,-23.575045 + 2529: 47.738575,-23.575045 + 2530: 47.509407,-24.44023 + 2531: 42.39001,-22.419138 + 2532: 42.49418,-22.481682 + 2533: 37.467724,-23.482378 + 2534: 37.394806,-24.149508 + 2535: 37.519806,-24.31629 + 2536: 38.040638,-25.369104 + 2537: 38.051056,-25.369104 + 2538: 38.457306,-25.442072 + 2539: 38.436474,-25.400375 + 2540: 39.332306,-24.58731 + 2541: 39.457306,-24.50392 + 2542: 36.467724,-23.513649 2543: 36.467724,-23.513649 2544: 36.467724,-23.513649 - 2545: 36.467724,-23.513649 - 2546: 36.155224,-24.754093 - 2547: 35.457306,-24.483072 - 2548: 34.686474,-23.461529 - 2549: 34.665638,-23.503225 - 2550: 34.530224,-23.64916 - 2551: 34.582306,-26.401072 - 2552: 37.019806,-22.33527 - 2553: 36.926056,-22.543747 + 2545: 36.155224,-24.754093 + 2546: 35.457306,-24.483072 + 2547: 34.686474,-23.461529 + 2548: 34.665638,-23.503225 + 2549: 34.530224,-23.64916 + 2550: 34.582306,-26.401072 + 2551: 37.019806,-22.33527 + 2552: 36.926056,-22.543747 + 2553: 35.436474,-22.47078 2554: 35.436474,-22.47078 - 2555: 35.436474,-22.47078 + 2555: 34.426056,-20.542356 2556: 34.426056,-20.542356 - 2557: 34.426056,-20.542356 - 2558: 33.946888,-20.55278 - 2559: 40.46879,-18.693834 - 2560: 40.666702,-18.485357 - 2561: 40.86462,-18.474934 + 2557: 33.946888,-20.55278 + 2558: 40.46879,-18.693834 + 2559: 40.666702,-18.485357 + 2560: 40.86462,-18.474934 + 2561: 41.40629,-17.47483 2562: 41.40629,-17.47483 - 2563: 41.40629,-17.47483 - 2564: 41.00004,-17.443558 - 2565: 40.59379,-17.506102 + 2563: 41.00004,-17.443558 + 2564: 40.59379,-17.506102 + 2565: 42.50004,-18.472912 2566: 42.50004,-18.472912 2567: 42.50004,-18.472912 - 2568: 42.50004,-18.472912 - 2569: 42.53129,-18.931564 - 2570: 42.40629,-19.046227 - 2571: 42.447952,-15.389344 - 2572: 42.45837,-15.493583 - 2573: 42.45837,-15.587398 - 2574: 42.46879,-16.025202 - 2575: 42.416702,-13.513041 - 2576: 40.53129,-14.399073 + 2568: 42.53129,-18.931564 + 2569: 42.40629,-19.046227 + 2570: 42.447952,-15.389344 + 2571: 42.45837,-15.493583 + 2572: 42.45837,-15.587398 + 2573: 42.46879,-16.025202 + 2574: 42.416702,-13.513041 + 2575: 40.53129,-14.399073 + 2576: 33.53216,-5.498646 2577: 33.53216,-5.498646 - 2578: 33.53216,-5.498646 - 2579: 33.46966,-5.8947544 - 2580: 33.46966,-5.5716133 - 2581: 33.37591,-5.498646 - 2582: 30.48008,-17.625967 + 2578: 33.46966,-5.8947544 + 2579: 33.46966,-5.5716133 + 2580: 33.37591,-5.498646 + 2581: 30.48008,-17.625967 + 2582: 27.469662,-17.39664 2583: 27.469662,-17.39664 - 2584: 27.469662,-17.39664 - 2585: 31.768013,-23.235754 - 2586: 32.351345,-23.256601 - 2587: 30.913845,-22.870916 - 2588: 35.778427,-30.122984 - 2589: 36.070095,-30.175102 - 2590: 37.028427,-29.76857 - 2591: 33.184677,-34.242767 - 2592: 31.445095,-32.43943 - 2593: 32.215927,-28.225906 - 2594: 32.736763,-26.119097 - 2595: 30.038845,-22.976084 - 2596: 27.713322,-19.981579 - 2597: 30.202908,-19.220634 - 2598: 31.984158,-18.272093 - 2599: 24.86081,-14.72366 - 2600: 24.86081,-9.83413 - 2601: 20.760582,-10.43703 - 2602: 23.750168,-7.257738 - 2603: 31.196217,-6.4581 - 2604: 32.539967,-7.4170995 - 2605: 33.144135,-9.491458 - 2606: 21.509678,-5.50616 - 2607: 13.973496,-43.408886 + 2584: 31.768013,-23.235754 + 2585: 32.351345,-23.256601 + 2586: 30.913845,-22.870916 + 2587: 35.778427,-30.122984 + 2588: 36.070095,-30.175102 + 2589: 37.028427,-29.76857 + 2590: 33.184677,-34.242767 + 2591: 31.445095,-32.43943 + 2592: 32.215927,-28.225906 + 2593: 32.736763,-26.119097 + 2594: 30.038845,-22.976084 + 2595: 27.713322,-19.981579 + 2596: 30.202908,-19.220634 + 2597: 31.984158,-18.272093 + 2598: 24.86081,-14.72366 + 2599: 24.86081,-9.83413 + 2600: 20.760582,-10.43703 + 2601: 23.750168,-7.257738 + 2602: 31.196217,-6.4581 + 2603: 32.539967,-7.4170995 + 2604: 33.144135,-9.491458 + 2605: 21.509678,-5.50616 + 2606: 13.973496,-43.408886 + 2607: 8.965953,-43.502705 2608: 8.965953,-43.502705 - 2609: 8.965953,-43.502705 - 2610: 8.97637,-41.511738 - 2611: 9.049287,-41.428345 - 2612: 19.417751,-10.516342 - 2613: 23.466835,2.5198576 + 2609: 8.97637,-41.511738 + 2610: 9.049287,-41.428345 + 2611: 19.417751,-10.516342 + 2612: 23.466835,2.5198576 + 2613: 24.425167,-0.45095563 2614: 24.425167,-0.45095563 - 2615: 24.425167,-0.45095563 - 2616: 23.466835,-2.5148885 - 2617: 22.643917,-3.3800733 - 2618: 21.581417,-4.44503 - 2619: 21.612667,-4.4763017 - 2620: 21.998081,2.6088116 - 2621: 22.0085,2.535844 - 2622: 21.998081,1.1390407 - 2623: 24.831417,-1.5122066 - 2624: 24.831417,-1.4913585 - 2625: 26.498081,5.0041037 - 2626: 26.28975,4.9832554 - 2627: 26.237667,4.555875 - 2628: 26.393917,4.545451 - 2629: 27.143917,4.6288424 - 2630: 27.716831,4.555875 - 2631: 28.425167,5.4210596 - 2632: 28.560581,6.5259933 - 2633: 28.5085,6.4842978 - 2634: 18.56311,5.5357227 - 2635: 18.53186,4.4829082 - 2636: 19.146442,4.5350275 - 2637: 19.427692,4.545451 - 2638: 18.802692,4.5975714 - 2639: 18.40686,7.568384 - 2640: 22.490192,7.4623623 - 2641: 22.490192,7.441515 - 2642: 22.53186,7.3685474 - 2643: 21.573528,8.556872 - 2644: 16.450783,8.618908 + 2615: 23.466835,-2.5148885 + 2616: 22.643917,-3.3800733 + 2617: 21.581417,-4.44503 + 2618: 21.612667,-4.4763017 + 2619: 21.998081,2.6088116 + 2620: 22.0085,2.535844 + 2621: 21.998081,1.1390407 + 2622: 24.831417,-1.5122066 + 2623: 24.831417,-1.4913585 + 2624: 26.498081,5.0041037 + 2625: 26.28975,4.9832554 + 2626: 26.237667,4.555875 + 2627: 26.393917,4.545451 + 2628: 27.143917,4.6288424 + 2629: 27.716831,4.555875 + 2630: 28.425167,5.4210596 + 2631: 28.560581,6.5259933 + 2632: 28.5085,6.4842978 + 2633: 18.56311,5.5357227 + 2634: 18.53186,4.4829082 + 2635: 19.146442,4.5350275 + 2636: 19.427692,4.545451 + 2637: 18.802692,4.5975714 + 2638: 18.40686,7.568384 + 2639: 22.490192,7.4623623 + 2640: 22.490192,7.441515 + 2641: 22.53186,7.3685474 + 2642: 21.573528,8.556872 + 2643: 16.450783,8.618908 + 2644: 16.513283,9.50494 2645: 16.513283,9.50494 - 2646: 16.513283,9.50494 - 2647: 16.565369,9.067136 - 2648: 16.534119,10.526483 - 2649: 16.482033,11.349971 - 2650: 16.482033,11.45421 - 2651: 17.419537,10.547331 - 2652: 17.440369,9.6404505 - 2653: 17.044537,9.546636 - 2654: 16.7737,9.536212 - 2655: 16.482033,10.495212 - 2656: 16.909119,10.495212 - 2657: 17.11745,10.495212 - 2658: 17.419537,8.514668 - 2659: 18.6487,9.963592 - 2660: 18.700787,10.255462 - 2661: 19.315369,10.234613 - 2662: 15.315618,9.494516 - 2663: 14.993169,9.515364 - 2664: 14.670253,9.494516 - 2665: 14.066085,9.473668 - 2666: 13.326503,9.494516 - 2667: 10.018869,9.536212 - 2668: 7.4577208,9.484092 - 2669: 6.9643927,9.494516 - 2670: 8.703977,9.932321 - 2671: 7.9748096,10.026135 - 2672: 13.547727,10.953863 - 2673: 12.756059,10.891319 - 2674: 6.5373096,11.55845 - 2675: 6.5373096,11.45421 - 2676: 6.4956427,11.089374 - 2677: 6.4793053,8.54594 - 2678: 5.5401106,8.566789 - 2679: 4.393257,9.567483 - 2680: 4.143257,9.557059 - 2681: 3.7057571,9.536212 - 2682: 2.6849232,10.5577545 - 2683: 2.5807562,11.422938 - 2684: 2.4974232,8.577212 - 2685: 2.4974232,8.556365 - 2686: 1.4979553,9.484092 - 2687: 1.0604553,9.442397 - 2688: 0.7062888,9.463244 - 2689: 0.20628881,9.463244 - 2690: -0.22079468,9.494516 - 2691: -0.4187112,9.50494 - 2692: -0.8666277,9.546636 - 2693: -1.6166277,9.557059 - 2694: 0.8312888,10.380548 - 2695: 1.3937888,10.484787 - 2696: 0.6125388,10.453515 - 2697: -0.31454468,10.46394 - 2698: -1.2624612,10.516059 - 2699: 0.4250388,11.381244 - 2700: -0.11662769,11.433363 - 2701: -1.4395447,9.911472 - 2702: -1.4916277,8.608484 - 2703: -0.43954468,8.608484 - 2704: 0.5500388,8.472974 - 2705: 19.499157,12.425813 - 2706: 19.519989,11.716988 - 2707: 20.072071,11.550204 - 2708: 20.655407,11.518932 - 2709: 16.322071,15.484221 - 2710: 13.384572,18.455036 - 2711: 13.384572,18.163166 - 2712: 14.457488,18.746904 - 2713: 14.457488,19.393187 - 2714: 12.738738,16.662123 - 2715: 13.488738,16.505764 - 2716: 13.499154,16.505764 - 2717: 13.769988,16.474493 - 2718: 14.676238,14.577342 - 2719: 14.655404,15.129807 - 2720: 14.488738,15.452949 - 2721: 14.592904,15.411254 - 2722: 14.603322,15.40083 - 2723: 14.530404,13.430711 - 2724: 14.509572,12.784429 - 2725: 14.655404,12.607223 - 2726: 14.738738,12.555102 - 2727: 14.717904,12.49256 - 2728: 15.415822,12.49256 - 2729: 15.686653,12.4300165 - 2730: 16.155403,12.450864 - 2731: 16.999153,12.49256 - 2732: 17.238739,12.544679 - 2733: 17.322071,12.586375 - 2734: 17.405403,12.648917 - 2735: 17.415821,13.243081 - 2736: 17.342903,13.441136 - 2737: 16.853321,13.34732 - 2738: 16.019989,13.34732 - 2739: 15.894989,13.34732 - 2740: 15.905403,14.004025 - 2741: 15.801239,14.045722 - 2742: 15.624153,13.805972 - 2743: 15.280404,13.983178 - 2744: 15.332488,14.86921 - 2745: 14.905404,13.357743 - 2746: 14.915822,13.316049 - 2747: 19.966679,13.316049 - 2748: 20.070843,13.190961 - 2749: 19.945843,12.73231 - 2750: 20.11251,16.349405 - 2751: 19.820843,17.600275 - 2752: 19.95626,17.537731 - 2753: 20.164593,17.548155 - 2754: 20.86251,18.350796 - 2755: 20.48751,18.350796 - 2756: 20.497929,18.36122 - 2757: 21.320847,17.621122 - 2758: 23.540947,16.578732 - 2759: 23.509697,17.141623 - 2760: 24.540947,17.485613 - 2761: 25.186779,15.286166 - 2762: 25.384697,14.973449 - 2763: 25.415947,14.733699 - 2764: 27.374279,13.816396 - 2765: 26.832611,13.190961 - 2766: 26.572197,13.253505 - 2767: 26.051365,12.419593 - 2768: 26.551361,12.38832 - 2769: 26.113861,11.689919 - 2770: 25.957615,11.42932 - 2771: 25.978447,10.97067 - 2772: 29.335304,12.475633 - 2773: 29.418636,11.485362 - 2774: 29.564472,10.682721 - 2775: 29.564472,10.2866125 - 2776: 30.335304,14.258882 - 2777: 29.699886,17.688349 - 2778: 29.637386,18.25124 - 2779: 31.626972,17.58411 - 2780: 31.199886,17.490294 - 2781: 31.449886,17.47987 - 2782: 31.710304,16.771046 - 2783: 31.543636,16.374937 - 2784: 28.606136,17.636229 - 2785: 29.095722,17.604958 - 2786: 29.043636,16.543253 - 2787: 29.929054,15.563406 - 2788: 24.963287,19.575718 - 2789: 23.682034,21.391178 - 2790: 23.744534,20.849134 - 2791: 22.73412,23.536888 - 2792: 23.379951,23.422226 - 2793: 23.525784,22.452803 - 2794: 20.479828,27.156353 - 2795: 20.417328,26.53092 - 2796: 20.37566,25.801247 - 2797: 19.511078,25.884638 - 2798: 19.511078,26.624735 - 2799: 19.59441,27.250168 - 2800: 20.604828,24.10215 - 2801: 20.37566,24.039606 - 2802: 20.104828,24.039606 - 2803: 19.542328,24.008333 - 2804: 22.990246,30.314796 - 2805: 22.865246,29.887417 - 2806: 24.125664,30.148014 - 2807: 24.104828,29.751907 - 2808: 24.281914,29.38707 - 2809: 20.771496,27.635853 - 2810: 24.938164,26.520494 - 2811: 22.719414,27.291864 - 2812: 22.781914,27.072962 - 2813: 28.913006,28.459343 + 2646: 16.565369,9.067136 + 2647: 16.534119,10.526483 + 2648: 16.482033,11.349971 + 2649: 16.482033,11.45421 + 2650: 17.419537,10.547331 + 2651: 17.440369,9.6404505 + 2652: 17.044537,9.546636 + 2653: 16.7737,9.536212 + 2654: 16.482033,10.495212 + 2655: 16.909119,10.495212 + 2656: 17.11745,10.495212 + 2657: 17.419537,8.514668 + 2658: 18.6487,9.963592 + 2659: 18.700787,10.255462 + 2660: 19.315369,10.234613 + 2661: 15.315618,9.494516 + 2662: 14.993169,9.515364 + 2663: 14.670253,9.494516 + 2664: 14.066085,9.473668 + 2665: 13.326503,9.494516 + 2666: 10.018869,9.536212 + 2667: 7.4577208,9.484092 + 2668: 6.9643927,9.494516 + 2669: 8.703977,9.932321 + 2670: 7.9748096,10.026135 + 2671: 13.547727,10.953863 + 2672: 12.756059,10.891319 + 2673: 6.5373096,11.55845 + 2674: 6.5373096,11.45421 + 2675: 6.4956427,11.089374 + 2676: 6.4793053,8.54594 + 2677: 5.5401106,8.566789 + 2678: 4.393257,9.567483 + 2679: 4.143257,9.557059 + 2680: 3.7057571,9.536212 + 2681: 2.6849232,10.5577545 + 2682: 2.5807562,11.422938 + 2683: 2.4974232,8.577212 + 2684: 2.4974232,8.556365 + 2685: 1.4979553,9.484092 + 2686: 1.0604553,9.442397 + 2687: 0.7062888,9.463244 + 2688: 0.20628881,9.463244 + 2689: -0.22079468,9.494516 + 2690: -0.4187112,9.50494 + 2691: -0.8666277,9.546636 + 2692: -1.6166277,9.557059 + 2693: 0.8312888,10.380548 + 2694: 1.3937888,10.484787 + 2695: 0.6125388,10.453515 + 2696: -0.31454468,10.46394 + 2697: -1.2624612,10.516059 + 2698: 0.4250388,11.381244 + 2699: -0.11662769,11.433363 + 2700: -1.4395447,9.911472 + 2701: -1.4916277,8.608484 + 2702: -0.43954468,8.608484 + 2703: 0.5500388,8.472974 + 2704: 19.499157,12.425813 + 2705: 19.519989,11.716988 + 2706: 20.072071,11.550204 + 2707: 20.655407,11.518932 + 2708: 16.322071,15.484221 + 2709: 13.384572,18.455036 + 2710: 13.384572,18.163166 + 2711: 14.457488,18.746904 + 2712: 14.457488,19.393187 + 2713: 12.738738,16.662123 + 2714: 13.488738,16.505764 + 2715: 13.499154,16.505764 + 2716: 13.769988,16.474493 + 2717: 14.676238,14.577342 + 2718: 14.655404,15.129807 + 2719: 14.488738,15.452949 + 2720: 14.592904,15.411254 + 2721: 14.603322,15.40083 + 2722: 14.530404,13.430711 + 2723: 14.509572,12.784429 + 2724: 14.655404,12.607223 + 2725: 14.738738,12.555102 + 2726: 14.717904,12.49256 + 2727: 15.415822,12.49256 + 2728: 15.686653,12.4300165 + 2729: 16.155403,12.450864 + 2730: 16.999153,12.49256 + 2731: 17.238739,12.544679 + 2732: 17.322071,12.586375 + 2733: 17.405403,12.648917 + 2734: 17.415821,13.243081 + 2735: 17.342903,13.441136 + 2736: 16.853321,13.34732 + 2737: 16.019989,13.34732 + 2738: 15.894989,13.34732 + 2739: 15.905403,14.004025 + 2740: 15.801239,14.045722 + 2741: 15.624153,13.805972 + 2742: 15.280404,13.983178 + 2743: 15.332488,14.86921 + 2744: 14.905404,13.357743 + 2745: 14.915822,13.316049 + 2746: 19.966679,13.316049 + 2747: 20.070843,13.190961 + 2748: 19.945843,12.73231 + 2749: 20.11251,16.349405 + 2750: 19.820843,17.600275 + 2751: 19.95626,17.537731 + 2752: 20.164593,17.548155 + 2753: 20.86251,18.350796 + 2754: 20.48751,18.350796 + 2755: 20.497929,18.36122 + 2756: 21.320847,17.621122 + 2757: 23.540947,16.578732 + 2758: 23.509697,17.141623 + 2759: 24.540947,17.485613 + 2760: 25.186779,15.286166 + 2761: 25.384697,14.973449 + 2762: 25.415947,14.733699 + 2763: 27.374279,13.816396 + 2764: 26.832611,13.190961 + 2765: 26.572197,13.253505 + 2766: 26.051365,12.419593 + 2767: 26.551361,12.38832 + 2768: 26.113861,11.689919 + 2769: 25.957615,11.42932 + 2770: 25.978447,10.97067 + 2771: 29.335304,12.475633 + 2772: 29.418636,11.485362 + 2773: 29.564472,10.682721 + 2774: 29.564472,10.2866125 + 2775: 30.335304,14.258882 + 2776: 29.699886,17.688349 + 2777: 29.637386,18.25124 + 2778: 31.626972,17.58411 + 2779: 31.199886,17.490294 + 2780: 31.449886,17.47987 + 2781: 31.710304,16.771046 + 2782: 31.543636,16.374937 + 2783: 28.606136,17.636229 + 2784: 29.095722,17.604958 + 2785: 29.043636,16.543253 + 2786: 29.929054,15.563406 + 2787: 24.963287,19.575718 + 2788: 23.682034,21.391178 + 2789: 23.744534,20.849134 + 2790: 22.73412,23.536888 + 2791: 23.379951,23.422226 + 2792: 23.525784,22.452803 + 2793: 20.479828,27.156353 + 2794: 20.417328,26.53092 + 2795: 20.37566,25.801247 + 2796: 19.511078,25.884638 + 2797: 19.511078,26.624735 + 2798: 19.59441,27.250168 + 2799: 20.604828,24.10215 + 2800: 20.37566,24.039606 + 2801: 20.104828,24.039606 + 2802: 19.542328,24.008333 + 2803: 22.990246,30.314796 + 2804: 22.865246,29.887417 + 2805: 24.125664,30.148014 + 2806: 24.104828,29.751907 + 2807: 24.281914,29.38707 + 2808: 20.771496,27.635853 + 2809: 24.938164,26.520494 + 2810: 22.719414,27.291864 + 2811: 22.781914,27.072962 + 2812: 28.913006,28.459343 + 2813: 28.965088,31.763721 2814: 28.965088,31.763721 - 2815: 28.965088,31.763721 - 2816: 28.163006,33.605797 - 2817: 27.850506,33.58495 - 2818: 27.225506,31.500168 - 2819: 26.590088,31.531437 - 2820: 26.465088,31.489742 - 2821: 26.600506,31.18745 - 2822: 26.579674,30.676678 - 2823: 26.569256,30.562016 - 2824: 29.569256,29.894886 - 2825: 29.517174,29.905308 - 2826: 29.475506,29.613438 - 2827: 31.443161,26.045942 - 2828: 32.057743,27.53656 - 2829: 32.797325,27.567833 - 2830: 33.026493,27.567833 - 2831: 35.922325,26.775616 - 2832: 37.28691,27.692919 - 2833: 36.66191,27.494865 - 2834: 36.578575,28.36005 - 2835: 36.422325,28.349625 - 2836: 38.16191,28.526833 - 2837: 38.328575,28.412167 - 2838: 38.391075,28.20369 - 2839: 38.328575,25.712378 - 2840: 38.22441,25.660257 - 2841: 37.984825,23.48166 - 2842: 38.026493,24.451084 - 2843: 36.34941,24.857616 - 2844: 36.06816,24.586596 - 2845: 35.963993,24.471931 - 2846: 35.91191,24.471931 - 2847: 34.682743,23.66929 - 2848: 34.34941,24.888887 - 2849: 34.34941,24.253029 - 2850: 34.34941,24.0654 - 2851: 32.63066,23.710987 - 2852: 31.474411,24.013279 - 2853: 31.578575,24.795073 - 2854: 31.505661,25.274572 - 2855: 32.69316,25.15991 - 2856: 33.547325,25.545595 - 2857: 34.026493,25.451778 - 2858: 31.943161,26.087637 - 2859: 23.60672,35.584606 - 2860: 23.440052,34.854935 - 2861: 23.45047,34.2295 - 2862: 24.002552,32.55125 - 2863: 25.07547,36.79359 - 2864: 25.148388,36.07434 - 2865: 25.148388,35.64696 - 2866: 25.523388,36.407906 - 2867: 16.423882,28.976421 - 2868: 16.444714,28.653278 - 2869: 16.465546,28.19463 - 2870: 16.028046,29.028542 - 2871: 18.580132,29.028542 - 2872: 18.944714,28.590736 - 2873: 19.007214,28.100815 - 2874: 15.600964,23.98337 - 2875: 14.517631,23.962523 - 2876: 17.517632,24.045914 - 2877: 13.028047,23.618534 - 2878: 12.757213,23.483023 - 2879: 12.028047,23.55599 - 2880: 11.528047,23.55599 - 2881: 11.278047,24.337784 - 2882: 10.705129,24.389902 - 2883: 10.257213,24.358631 - 2884: 9.809297,24.421175 - 2885: 9.36138,25.369751 - 2886: 9.340547,26.016033 - 2887: 8.996797,26.401716 - 2888: 8.590547,26.141119 - 2889: 8.694713,25.28636 - 2890: 8.590547,28.361412 - 2891: 8.475963,27.673433 - 2892: 8.538463,26.870792 - 2893: 8.67388,25.922216 - 2894: 8.944713,26.724857 - 2895: 13.882213,27.558771 - 2896: 14.371797,27.579618 - 2897: 13.278047,27.537922 - 2898: 13.007213,27.537922 - 2899: 12.444713,28.601162 - 2900: 12.246797,28.611584 - 2901: 11.059297,28.784977 - 2902: 11.017629,28.628616 - 2903: 11.319713,28.388866 - 2904: 9.01763,29.608463 - 2905: 9.028047,29.399986 - 2906: 9.01763,30.431953 - 2907: 9.01763,30.755093 - 2908: 12.955131,31.828754 - 2909: 12.653047,32.110203 - 2910: 12.923881,32.235287 - 2911: 13.132213,32.891994 - 2912: 12.975963,35.07059 - 2913: 12.757213,34.997623 - 2914: 13.163463,35.028896 - 2915: 13.788463,34.96635 - 2916: 13.923881,32.56885 - 2917: 14.017631,30.515343 - 2918: 13.882213,30.515343 - 2919: 13.465547,30.494495 - 2920: 10.462693,33.439457 - 2921: 10.566859,32.866142 - 2922: 10.566859,32.59512 - 2923: 11.473109,33.647938 - 2924: 11.421027,34.586086 - 2925: 10.504359,34.53397 - 2926: 9.525193,34.48185 - 2927: 9.264776,33.543697 - 2928: 8.452276,33.668785 - 2929: 6.8481092,33.65836 - 2930: 4.806443,33.637512 - 2931: 4.233526,33.637512 - 2932: 3.5251932,34.398457 - 2933: 4.587693,34.283794 - 2934: 5.5981092,34.2421 - 2935: 7.368943,34.231674 - 2936: 8.014776,34.2421 - 2937: 8.723109,34.2004 - 2938: 9.191859,34.30464 - 2939: 8.504359,34.335915 - 2940: 2.4961157,32.532578 - 2941: 3.2773657,33.012077 - 2942: 2.6731997,32.93911 - 2943: 3.7148657,32.126045 - 2944: 2.5794497,32.021805 - 2945: 2.0898657,32.000957 - 2946: 2.5065327,31.563152 - 2947: 1.6940327,33.627087 - 2948: 1.2044492,33.647938 - 2949: 0.6523657,33.700054 - 2950: 0.32944918,33.512424 - 2951: 0.32944918,33.502003 - 2952: 0.40236568,32.75148 - 2953: 0.43361568,32.56385 - 2954: -0.48305082,33.585392 - 2955: 0.5794492,34.42973 - 2956: 0.5481992,34.554813 - 2957: 1.5794492,34.44015 - 2958: 2.2773657,35.45127 - 2959: 1.7565327,35.440845 - 2960: 0.5898657,39.277607 - 2961: 0.6731992,38.25606 - 2962: 0.8606992,37.588932 - 2963: 0.8294492,36.94265 - 2964: 0.7669492,36.014923 - 2965: 0.5273657,38.474964 - 2966: -0.41013432,38.662594 - 2967: -0.6913843,38.652172 - 2968: -2.7196784,38.527084 - 2969: -3.428012,38.422844 - 2970: -2.9800951,36.129585 - 2971: -4.490512,35.431183 - 2972: -4.4800954,35.139317 - 2973: -4.4800954,34.659813 - 2974: -3.521762,35.358215 - 2975: -4.3238454,34.46176 - 2976: -3.490512,34.420063 - 2977: -3.4488451,34.13862 - 2978: -3.5009284,33.87802 - 2979: -3.5009284,33.732086 - 2980: -3.5113451,33.544456 - 2981: -3.396762,34.10735 - 2982: -3.2196784,34.48261 - 2983: -2.740512,34.503456 - 2984: 0.4782381,34.37837 - 2985: 0.4365716,34.37837 - 2986: -3.4696784,32.59526 - 2987: -3.4175951,33.41875 - 2988: -4.6884284,33.512566 - 2989: -5.8134284,33.54384 - 2990: -6.3134284,33.512566 - 2991: -7.521762,33.616806 - 2992: -8.313429,33.585533 - 2993: -8.105095,34.46114 - 2994: -7.8446784,34.440292 - 2995: -7.4175954,34.388172 - 2996: -6.6363454,34.304783 - 2997: -6.0634284,34.336056 - 2998: -5.396762,34.27351 - 2999: -5.5315547,34.379097 - 3000: -5.541971,34.35825 - 3001: -5.5315547,33.493065 - 3002: -5.5315547,33.420097 - 3003: -5.677388,33.440945 - 3004: -5.948221,33.50349 - 3005: -5.916971,33.472218 - 3006: -6.291971,33.430523 - 3007: -6.166971,34.347824 - 3008: -6.187805,34.347824 - 3009: -6.573221,34.337402 - 3010: -6.927388,34.30613 - 3011: -14.342768,34.596508 - 3012: -14.415685,34.794563 - 3013: -14.134435,34.450573 - 3014: -14.124018,34.450573 - 3015: -13.696934,34.481846 - 3016: -13.790684,34.38803 - 3017: -13.978185,34.315063 - 3018: -13.582351,34.71117 - 3019: -13.686518,34.4193 - 3020: -14.103185,34.32549 - 3021: -14.457351,34.4193 - 3022: -14.467768,35.138554 - 3023: -14.467768,35.10728 - 3024: -14.457351,34.930073 - 3025: -14.457351,34.80499 - 3026: -14.561518,35.19067 - 3027: -14.540685,34.971767 - 3028: -14.530268,34.75287 - 3029: -14.509435,34.57566 - 3030: -13.488601,35.148975 - 3031: -13.488601,35.05516 - 3032: -11.644851,33.502 - 3033: -11.467768,33.53327 - 3034: -11.582351,34.33591 - 3035: -11.582351,34.262943 - 3036: -11.551101,34.11701 - 3037: -11.478184,33.647934 - 3038: -11.488601,33.2414 - 3039: -11.603184,34.367184 - 3040: -12.519851,33.522846 - 3041: -12.644851,32.928684 - 3042: -14.259435,32.188587 - 3043: -13.478184,32.459606 - 3044: -13.446934,32.19901 - 3045: -12.988601,32.41791 - 3046: -10.644851,44.23155 - 3047: -10.644851,44.189854 - 3048: -11.144851,44.2107 - 3049: -11.738601,44.24197 - 3050: -11.634434,44.512993 - 3051: -11.301101,44.502567 - 3052: -12.478184,45.25309 - 3053: -12.186518,44.4296 - 3054: -13.372225,19.418964 - 3055: -13.111808,19.502356 - 3056: -13.080558,19.439812 - 3057: -12.747225,19.418964 - 3058: -12.549308,19.418964 - 3059: -12.778475,19.366844 - 3060: -13.049308,19.418964 - 3061: -12.768058,18.772682 - 3062: -12.726391,18.585052 - 3063: -13.080558,18.65802 - 3064: -12.611808,19.617018 - 3065: -12.549308,19.7838 - 3066: -12.590975,20.07567 - 3067: -12.528475,20.409235 - 3068: -12.549308,20.701105 - 3069: -12.590975,21.118061 - 3070: -12.601391,21.54544 - 3071: -12.601391,22.129179 - 3072: -12.393058,22.285538 - 3073: -12.393058,22.23342 - 3074: 11.161374,25.052107 - 3075: 11.286374,25.052107 - 3076: 11.42179,25.052107 - 3077: 12.119706,25.469063 - 3078: 12.39054,25.500334 - 3079: 13.411374,24.999987 - 3080: 38.407673,13.5602255 - 3081: 38.251423,17.623114 - 3082: 41.709755,17.64396 - 3083: 42.105587,17.654385 - 3084: 41.491005,15.621723 - 3085: 41.491005,15.381972 - 3086: 41.470173,14.704419 - 3087: 41.449337,15.204766 - 3088: 41.501423,15.559179 - 3089: 42.116005,15.652996 - 3090: 40.595173,15.340278 - 3091: 40.720173,14.641875 - 3092: 46.599617,14.475093 - 3093: 46.880867,14.516788 - 3094: 47.0892,14.516788 + 2815: 28.163006,33.605797 + 2816: 27.850506,33.58495 + 2817: 27.225506,31.500168 + 2818: 26.590088,31.531437 + 2819: 26.465088,31.489742 + 2820: 26.600506,31.18745 + 2821: 26.579674,30.676678 + 2822: 26.569256,30.562016 + 2823: 29.569256,29.894886 + 2824: 29.517174,29.905308 + 2825: 29.475506,29.613438 + 2826: 31.443161,26.045942 + 2827: 32.057743,27.53656 + 2828: 32.797325,27.567833 + 2829: 33.026493,27.567833 + 2830: 35.922325,26.775616 + 2831: 37.28691,27.692919 + 2832: 36.66191,27.494865 + 2833: 36.578575,28.36005 + 2834: 36.422325,28.349625 + 2835: 38.16191,28.526833 + 2836: 38.328575,28.412167 + 2837: 38.391075,28.20369 + 2838: 38.328575,25.712378 + 2839: 38.22441,25.660257 + 2840: 37.984825,23.48166 + 2841: 38.026493,24.451084 + 2842: 36.34941,24.857616 + 2843: 36.06816,24.586596 + 2844: 35.963993,24.471931 + 2845: 35.91191,24.471931 + 2846: 34.682743,23.66929 + 2847: 34.34941,24.888887 + 2848: 34.34941,24.253029 + 2849: 34.34941,24.0654 + 2850: 32.63066,23.710987 + 2851: 31.474411,24.013279 + 2852: 31.578575,24.795073 + 2853: 31.505661,25.274572 + 2854: 32.69316,25.15991 + 2855: 33.547325,25.545595 + 2856: 34.026493,25.451778 + 2857: 31.943161,26.087637 + 2858: 23.60672,35.584606 + 2859: 23.440052,34.854935 + 2860: 23.45047,34.2295 + 2861: 24.002552,32.55125 + 2862: 25.07547,36.79359 + 2863: 25.148388,36.07434 + 2864: 25.148388,35.64696 + 2865: 25.523388,36.407906 + 2866: 16.423882,28.976421 + 2867: 16.444714,28.653278 + 2868: 16.465546,28.19463 + 2869: 16.028046,29.028542 + 2870: 18.580132,29.028542 + 2871: 18.944714,28.590736 + 2872: 19.007214,28.100815 + 2873: 15.600964,23.98337 + 2874: 14.517631,23.962523 + 2875: 17.517632,24.045914 + 2876: 13.028047,23.618534 + 2877: 12.757213,23.483023 + 2878: 12.028047,23.55599 + 2879: 11.528047,23.55599 + 2880: 11.278047,24.337784 + 2881: 10.705129,24.389902 + 2882: 10.257213,24.358631 + 2883: 9.809297,24.421175 + 2884: 9.36138,25.369751 + 2885: 9.340547,26.016033 + 2886: 8.996797,26.401716 + 2887: 8.590547,26.141119 + 2888: 8.694713,25.28636 + 2889: 8.590547,28.361412 + 2890: 8.475963,27.673433 + 2891: 8.538463,26.870792 + 2892: 8.67388,25.922216 + 2893: 8.944713,26.724857 + 2894: 13.882213,27.558771 + 2895: 14.371797,27.579618 + 2896: 13.278047,27.537922 + 2897: 13.007213,27.537922 + 2898: 12.444713,28.601162 + 2899: 12.246797,28.611584 + 2900: 11.059297,28.784977 + 2901: 11.017629,28.628616 + 2902: 11.319713,28.388866 + 2903: 9.01763,29.608463 + 2904: 9.028047,29.399986 + 2905: 9.01763,30.431953 + 2906: 9.01763,30.755093 + 2907: 12.955131,31.828754 + 2908: 12.653047,32.110203 + 2909: 12.923881,32.235287 + 2910: 13.132213,32.891994 + 2911: 12.975963,35.07059 + 2912: 12.757213,34.997623 + 2913: 13.163463,35.028896 + 2914: 13.788463,34.96635 + 2915: 13.923881,32.56885 + 2916: 14.017631,30.515343 + 2917: 13.882213,30.515343 + 2918: 13.465547,30.494495 + 2919: 10.462693,33.439457 + 2920: 10.566859,32.866142 + 2921: 10.566859,32.59512 + 2922: 11.473109,33.647938 + 2923: 11.421027,34.586086 + 2924: 10.504359,34.53397 + 2925: 9.525193,34.48185 + 2926: 9.264776,33.543697 + 2927: 8.452276,33.668785 + 2928: 6.8481092,33.65836 + 2929: 4.806443,33.637512 + 2930: 4.233526,33.637512 + 2931: 3.5251932,34.398457 + 2932: 4.587693,34.283794 + 2933: 5.5981092,34.2421 + 2934: 7.368943,34.231674 + 2935: 8.014776,34.2421 + 2936: 8.723109,34.2004 + 2937: 9.191859,34.30464 + 2938: 8.504359,34.335915 + 2939: 2.4961157,32.532578 + 2940: 3.2773657,33.012077 + 2941: 2.6731997,32.93911 + 2942: 3.7148657,32.126045 + 2943: 2.5794497,32.021805 + 2944: 2.0898657,32.000957 + 2945: 2.5065327,31.563152 + 2946: 1.6940327,33.627087 + 2947: 1.2044492,33.647938 + 2948: 0.6523657,33.700054 + 2949: 0.32944918,33.512424 + 2950: 0.32944918,33.502003 + 2951: 0.40236568,32.75148 + 2952: 0.43361568,32.56385 + 2953: -0.48305082,33.585392 + 2954: 0.5794492,34.42973 + 2955: 0.5481992,34.554813 + 2956: 1.5794492,34.44015 + 2957: 2.2773657,35.45127 + 2958: 1.7565327,35.440845 + 2959: 0.5898657,39.277607 + 2960: 0.6731992,38.25606 + 2961: 0.8606992,37.588932 + 2962: 0.8294492,36.94265 + 2963: 0.7669492,36.014923 + 2964: 0.5273657,38.474964 + 2965: -0.41013432,38.662594 + 2966: -0.6913843,38.652172 + 2967: -2.7196784,38.527084 + 2968: -3.428012,38.422844 + 2969: -2.9800951,36.129585 + 2970: -4.490512,35.431183 + 2971: -4.4800954,35.139317 + 2972: -4.4800954,34.659813 + 2973: -3.521762,35.358215 + 2974: -4.3238454,34.46176 + 2975: -3.490512,34.420063 + 2976: -3.4488451,34.13862 + 2977: -3.5009284,33.87802 + 2978: -3.5009284,33.732086 + 2979: -3.5113451,33.544456 + 2980: -3.396762,34.10735 + 2981: -3.2196784,34.48261 + 2982: -2.740512,34.503456 + 2983: 0.4782381,34.37837 + 2984: 0.4365716,34.37837 + 2985: -3.4696784,32.59526 + 2986: -3.4175951,33.41875 + 2987: -4.6884284,33.512566 + 2988: -5.8134284,33.54384 + 2989: -6.3134284,33.512566 + 2990: -7.521762,33.616806 + 2991: -8.313429,33.585533 + 2992: -8.105095,34.46114 + 2993: -7.8446784,34.440292 + 2994: -7.4175954,34.388172 + 2995: -6.6363454,34.304783 + 2996: -6.0634284,34.336056 + 2997: -5.396762,34.27351 + 2998: -5.5315547,34.379097 + 2999: -5.541971,34.35825 + 3000: -5.5315547,33.493065 + 3001: -5.5315547,33.420097 + 3002: -5.677388,33.440945 + 3003: -5.948221,33.50349 + 3004: -5.916971,33.472218 + 3005: -6.291971,33.430523 + 3006: -6.166971,34.347824 + 3007: -6.187805,34.347824 + 3008: -6.573221,34.337402 + 3009: -6.927388,34.30613 + 3010: -14.342768,34.596508 + 3011: -14.415685,34.794563 + 3012: -14.134435,34.450573 + 3013: -14.124018,34.450573 + 3014: -13.696934,34.481846 + 3015: -13.790684,34.38803 + 3016: -13.978185,34.315063 + 3017: -13.582351,34.71117 + 3018: -13.686518,34.4193 + 3019: -14.103185,34.32549 + 3020: -14.457351,34.4193 + 3021: -14.467768,35.138554 + 3022: -14.467768,35.10728 + 3023: -14.457351,34.930073 + 3024: -14.457351,34.80499 + 3025: -14.561518,35.19067 + 3026: -14.540685,34.971767 + 3027: -14.530268,34.75287 + 3028: -14.509435,34.57566 + 3029: -13.488601,35.148975 + 3030: -13.488601,35.05516 + 3031: -11.644851,33.502 + 3032: -11.467768,33.53327 + 3033: -11.582351,34.33591 + 3034: -11.582351,34.262943 + 3035: -11.551101,34.11701 + 3036: -11.478184,33.647934 + 3037: -11.488601,33.2414 + 3038: -11.603184,34.367184 + 3039: -12.519851,33.522846 + 3040: -12.644851,32.928684 + 3041: -14.259435,32.188587 + 3042: -13.478184,32.459606 + 3043: -13.446934,32.19901 + 3044: -12.988601,32.41791 + 3045: -10.644851,44.23155 + 3046: -10.644851,44.189854 + 3047: -11.144851,44.2107 + 3048: -11.738601,44.24197 + 3049: -11.634434,44.512993 + 3050: -11.301101,44.502567 + 3051: -12.478184,45.25309 + 3052: -12.186518,44.4296 + 3053: -13.372225,19.418964 + 3054: -13.111808,19.502356 + 3055: -13.080558,19.439812 + 3056: -12.747225,19.418964 + 3057: -12.549308,19.418964 + 3058: -12.778475,19.366844 + 3059: -13.049308,19.418964 + 3060: -12.768058,18.772682 + 3061: -12.726391,18.585052 + 3062: -13.080558,18.65802 + 3063: -12.611808,19.617018 + 3064: -12.549308,19.7838 + 3065: -12.590975,20.07567 + 3066: -12.528475,20.409235 + 3067: -12.549308,20.701105 + 3068: -12.590975,21.118061 + 3069: -12.601391,21.54544 + 3070: -12.601391,22.129179 + 3071: -12.393058,22.285538 + 3072: -12.393058,22.23342 + 3073: 11.161374,25.052107 + 3074: 11.286374,25.052107 + 3075: 11.42179,25.052107 + 3076: 12.119706,25.469063 + 3077: 12.39054,25.500334 + 3078: 13.411374,24.999987 + 3079: 38.407673,13.5602255 + 3080: 38.251423,17.623114 + 3081: 41.709755,17.64396 + 3082: 42.105587,17.654385 + 3083: 41.491005,15.621723 + 3084: 41.491005,15.381972 + 3085: 41.470173,14.704419 + 3086: 41.449337,15.204766 + 3087: 41.501423,15.559179 + 3088: 42.116005,15.652996 + 3089: 40.595173,15.340278 + 3090: 40.720173,14.641875 + 3091: 46.599617,14.475093 + 3092: 46.880867,14.516788 + 3093: 47.0892,14.516788 + 3094: 47.860035,16.70581 3095: 47.860035,16.70581 - 3096: 47.860035,16.70581 - 3097: 48.4642,18.457026 - 3098: 48.4642,18.436178 - 3099: 48.443367,18.31109 - 3100: 47.474617,13.50567 - 3101: 47.0892,13.411855 - 3102: 43.693367,10.377899 - 3103: 42.7142,10.680193 - 3104: 42.505867,10.70104 - 3105: 45.443367,10.388324 - 3106: 45.568367,9.616954 - 3107: 45.078785,9.554411 - 3108: 40.412117,9.283389 - 3109: 40.43295,8.866433 - 3110: 40.422535,8.741346 - 3111: 40.93295,9.398051 - 3112: 41.287117,8.439054 - 3113: 44.505867,8.746013 - 3114: 42.943367,9.314661 - 3115: 43.891285,9.36678 - 3116: 44.860035,9.417288 - 3117: 44.703785,9.469407 - 3118: 46.266285,8.531255 - 3119: 45.93295,8.01006 - 3120: 45.891285,7.551409 - 3121: 46.172535,7.5826807 - 3122: 44.485035,7.363778 - 3123: 43.318367,7.2908106 - 3124: 42.828785,7.0927563 - 3125: 42.380867,6.1024847 - 3126: 42.391285,5.591714 - 3127: 41.349617,5.675105 - 3128: 41.49545,6.7591915 - 3129: 44.287117,6.206724 - 3130: 44.662117,6.2588444 - 3131: 45.516285,5.9357023 - 3132: 45.5267,5.622985 - 3133: 47.2767,6.780039 - 3134: 47.2767,6.800887 - 3135: 48.203785,7.071909 - 3136: 48.97631,6.780039 - 3137: 48.997147,6.363082 - 3138: 49.028397,5.9044313 - 3139: 50.778397,6.8842783 - 3140: 50.76798,5.9669743 - 3141: 50.19506,6.185877 - 3142: 50.11173,6.1441813 - 3143: 48.10131,6.4047785 - 3144: 48.059647,6.0816374 - 3145: 52.13674,6.123334 - 3146: 52.07424,6.363082 - 3147: 52.01174,6.623681 - 3148: 52.79299,6.269267 - 3149: 52.845074,6.6445284 - 3150: 54.063824,7.363778 - 3151: 54.678406,6.352659 - 3152: 54.084656,6.1650286 - 3153: 54.48049,5.5395947 - 3154: 54.897156,11.898667 - 3155: 58.053406,11.867394 - 3156: 59.08138,12.586644 - 3157: 58.227207,12.534526 - 3158: 56.945957,12.628341 - 3159: 56.706375,12.440709 - 3160: 57.373043,12.461558 - 3161: 59.508457,12.617917 - 3162: 59.508457,12.451133 - 3163: 59.248043,9.48032 - 3164: 58.508457,9.3760805 - 3165: 58.154293,9.334385 - 3166: 57.404293,9.407352 - 3167: 56.873043,9.313538 - 3168: 57.195957,9.459473 - 3169: 57.258457,9.449048 - 3170: 59.05013,10.501863 - 3171: 58.67513,10.470592 + 3096: 48.4642,18.457026 + 3097: 48.4642,18.436178 + 3098: 48.443367,18.31109 + 3099: 47.474617,13.50567 + 3100: 47.0892,13.411855 + 3101: 43.693367,10.377899 + 3102: 42.7142,10.680193 + 3103: 42.505867,10.70104 + 3104: 45.443367,10.388324 + 3105: 45.568367,9.616954 + 3106: 45.078785,9.554411 + 3107: 40.412117,9.283389 + 3108: 40.43295,8.866433 + 3109: 40.422535,8.741346 + 3110: 40.93295,9.398051 + 3111: 41.287117,8.439054 + 3112: 44.505867,8.746013 + 3113: 42.943367,9.314661 + 3114: 43.891285,9.36678 + 3115: 44.860035,9.417288 + 3116: 44.703785,9.469407 + 3117: 46.266285,8.531255 + 3118: 45.93295,8.01006 + 3119: 45.891285,7.551409 + 3120: 46.172535,7.5826807 + 3121: 44.485035,7.363778 + 3122: 43.318367,7.2908106 + 3123: 42.828785,7.0927563 + 3124: 42.380867,6.1024847 + 3125: 42.391285,5.591714 + 3126: 41.349617,5.675105 + 3127: 41.49545,6.7591915 + 3128: 44.287117,6.206724 + 3129: 44.662117,6.2588444 + 3130: 45.516285,5.9357023 + 3131: 45.5267,5.622985 + 3132: 47.2767,6.780039 + 3133: 47.2767,6.800887 + 3134: 48.203785,7.071909 + 3135: 48.97631,6.780039 + 3136: 48.997147,6.363082 + 3137: 49.028397,5.9044313 + 3138: 50.778397,6.8842783 + 3139: 50.76798,5.9669743 + 3140: 50.19506,6.185877 + 3141: 50.11173,6.1441813 + 3142: 48.10131,6.4047785 + 3143: 48.059647,6.0816374 + 3144: 52.13674,6.123334 + 3145: 52.07424,6.363082 + 3146: 52.01174,6.623681 + 3147: 52.79299,6.269267 + 3148: 52.845074,6.6445284 + 3149: 54.063824,7.363778 + 3150: 54.678406,6.352659 + 3151: 54.084656,6.1650286 + 3152: 54.48049,5.5395947 + 3153: 54.897156,11.898667 + 3154: 58.053406,11.867394 + 3155: 59.08138,12.586644 + 3156: 58.227207,12.534526 + 3157: 56.945957,12.628341 + 3158: 56.706375,12.440709 + 3159: 57.373043,12.461558 + 3160: 59.508457,12.617917 + 3161: 59.508457,12.451133 + 3162: 59.248043,9.48032 + 3163: 58.508457,9.3760805 + 3164: 58.154293,9.334385 + 3165: 57.404293,9.407352 + 3166: 56.873043,9.313538 + 3167: 57.195957,9.459473 + 3168: 57.258457,9.449048 + 3169: 59.05013,10.501863 + 3170: 58.67513,10.470592 + 3171: 59.51888,9.918124 3172: 59.51888,9.918124 - 3173: 59.51888,9.918124 - 3174: 56.279293,9.980667 - 3175: 55.581375,9.928548 - 3176: 55.518875,9.918124 - 3177: 55.227207,9.85558 - 3178: 52.977207,9.467992 - 3179: 52.227207,9.259513 - 3180: 51.498043,9.207394 - 3181: 49.393875,9.228242 - 3182: 50.237625,10.416567 - 3183: 49.675125,10.812675 - 3184: 50.248043,12.126086 - 3185: 50.320957,11.980153 - 3186: 50.429398,15.647409 - 3187: 50.28356,15.199182 - 3188: 49.51273,18.472288 - 3189: 50.12731,18.388897 - 3190: 50.18981,17.982365 - 3191: 50.20023,17.586256 - 3192: 51.804398,17.544561 - 3193: 52.148148,17.544561 - 3194: 53.15856,17.544561 - 3195: 53.26273,17.252691 - 3196: 53.26273,17.033789 - 3197: 53.82523,16.856583 - 3198: 54.73148,17.544561 - 3199: 55.06481,17.523712 - 3200: 55.56481,16.272844 - 3201: 55.554398,15.616138 - 3202: 57.56481,16.585562 - 3203: 57.59606,17.867702 - 3204: 56.45023,18.305506 - 3205: 56.460648,18.044909 - 3206: 58.814816,17.200571 - 3207: 58.95023,16.523018 - 3208: 58.991894,16.085215 - 3209: 58.960644,16.439627 - 3210: 58.939816,15.647409 - 3211: 58.877316,14.990703 - 3212: 57.98148,14.573747 - 3213: 58.023148,14.928159 - 3214: 57.960648,14.53205 - 3215: 56.68981,14.500779 - 3216: 56.460648,14.542476 + 3173: 56.279293,9.980667 + 3174: 55.581375,9.928548 + 3175: 55.518875,9.918124 + 3176: 55.227207,9.85558 + 3177: 52.977207,9.467992 + 3178: 52.227207,9.259513 + 3179: 51.498043,9.207394 + 3180: 49.393875,9.228242 + 3181: 50.237625,10.416567 + 3182: 49.675125,10.812675 + 3183: 50.248043,12.126086 + 3184: 50.320957,11.980153 + 3185: 50.429398,15.647409 + 3186: 50.28356,15.199182 + 3187: 49.51273,18.472288 + 3188: 50.12731,18.388897 + 3189: 50.18981,17.982365 + 3190: 50.20023,17.586256 + 3191: 51.804398,17.544561 + 3192: 52.148148,17.544561 + 3193: 53.15856,17.544561 + 3194: 53.26273,17.252691 + 3195: 53.26273,17.033789 + 3196: 53.82523,16.856583 + 3197: 54.73148,17.544561 + 3198: 55.06481,17.523712 + 3199: 55.56481,16.272844 + 3200: 55.554398,15.616138 + 3201: 57.56481,16.585562 + 3202: 57.59606,17.867702 + 3203: 56.45023,18.305506 + 3204: 56.460648,18.044909 + 3205: 58.814816,17.200571 + 3206: 58.95023,16.523018 + 3207: 58.991894,16.085215 + 3208: 58.960644,16.439627 + 3209: 58.939816,15.647409 + 3210: 58.877316,14.990703 + 3211: 57.98148,14.573747 + 3212: 58.023148,14.928159 + 3213: 57.960648,14.53205 + 3214: 56.68981,14.500779 + 3215: 56.460648,14.542476 + 3216: 55.534443,14.038774 3217: 55.534443,14.038774 - 3218: 55.534443,14.038774 - 3219: 55.409443,14.08047 - 3220: 54.98236,13.924111 - 3221: 50.648247,13.965806 - 3222: 50.460747,13.559274 - 3223: 55.16271,-29.56868 - 3224: 53.996044,-30.121147 - 3225: 43.734573,-27.556866 - 3226: 43.015823,-27.546442 - 3227: 39.83369,-27.412212 - 3228: 46.104523,-27.568571 - 3229: 46.385773,-27.547724 - 3230: 37.409584,-27.526875 - 3231: 37.430416,-27.651962 - 3232: -19.565151,-25.476324 - 3233: -28.102497,-20.576414 - 3234: -23.539997,-17.960318 - 3235: -29.523403,-32.040947 - 3236: -29.648403,-32.666386 - 3237: -26.606735,-32.478752 - 3238: -19.377567,-32.96497 - 3239: -19.565067,-32.725224 - 3240: -19.544235,-32.902428 - 3241: -8.406201,-0.4566989 - 3242: 20.04884,4.4430914 - 3243: 19.757172,4.453515 - 3244: 19.403008,3.74469 - 3245: 12.676013,-0.25743055 - 3246: 11.623931,-0.30954957 - 3247: 10.686431,-0.30954957 - 3248: 3.8577223,4.6130314 - 3249: 4.0764723,4.592183 - 3250: 4.2118893,3.9250526 - 3251: -17.415333,5.5268745 - 3252: -17.363249,5.2037334 - 3253: -16.675749,5.370516 - 3254: -16.311165,5.339245 - 3255: -15.613249,5.130766 - 3256: -16.311165,4.421941 - 3257: -35.885174,-9.732544 - 3258: -36.343506,-9.409403 - 3259: -36.39559,-9.398979 - 3260: -34.478924,-8.8256645 - 3261: -39.71845,-13.58939 - 3262: -39.92678,-13.5685425 - 3263: -40.40595,-13.860412 - 3264: -41.30178,-14.402454 - 3265: -42.2497,-14.381607 - 3266: -44.054047,-14.360759 - 3267: -48.820038,-13.380912 - 3268: -49.184624,-13.370487 - 3269: -49.465874,-13.495575 - 3270: -49.278374,-32.45957 - 3271: -49.351288,-32.58466 - 3272: -49.445038,-33.095432 - 3273: -49.872124,-32.537483 - 3274: -49.767956,-32.756386 - 3275: -49.486706,-33.21504 - 3276: -41.073032,-36.453472 - 3277: -40.614697,-36.463894 - 3278: -40.208447,-37.026787 - 3279: -40.052197,-38.006634 - 3280: -44.968864,-42.261353 - 3281: -45.928387,-41.333626 - 3282: -45.990887,-41.3649 - 3283: -46.26172,-40.666496 - 3284: -46.178387,-40.666496 - 3285: -44.865887,-40.739464 - 3286: -3.8079247,-70.90175 - 3287: -3.8697991,-70.953865 - 3288: -4.1093826,-71.00599 - 3289: -4.6822996,-71.058105 - 3290: -5.7656326,-71.13107 - 3291: -6.1197996,-71.151924 - 3292: -4.8697996,-71.28743 - 3293: 30.344131,-89.77827 - 3294: 29.875381,-89.945045 - 3295: 29.375381,-89.91378 - 3296: 35.327736,-87.57111 - 3297: 35.327736,-87.7379 - 3298: 35.338154,-88.06104 - 3299: 35.504818,-88.37376 - 3300: 35.536068,-88.01935 - 3301: 35.213154,-88.154854 - 3302: 34.827736,-88.363335 - 3303: 36.963154,-65.47481 - 3304: 37.327736,-65.40184 + 3218: 55.409443,14.08047 + 3219: 54.98236,13.924111 + 3220: 50.648247,13.965806 + 3221: 50.460747,13.559274 + 3222: 55.16271,-29.56868 + 3223: 53.996044,-30.121147 + 3224: 43.734573,-27.556866 + 3225: 43.015823,-27.546442 + 3226: 39.83369,-27.412212 + 3227: 46.104523,-27.568571 + 3228: 46.385773,-27.547724 + 3229: 37.409584,-27.526875 + 3230: 37.430416,-27.651962 + 3231: -19.565151,-25.476324 + 3232: -28.102497,-20.576414 + 3233: -23.539997,-17.960318 + 3234: -29.523403,-32.040947 + 3235: -29.648403,-32.666386 + 3236: -26.606735,-32.478752 + 3237: -19.377567,-32.96497 + 3238: -19.565067,-32.725224 + 3239: -19.544235,-32.902428 + 3240: -8.406201,-0.4566989 + 3241: 20.04884,4.4430914 + 3242: 19.757172,4.453515 + 3243: 19.403008,3.74469 + 3244: 12.676013,-0.25743055 + 3245: 11.623931,-0.30954957 + 3246: 10.686431,-0.30954957 + 3247: 3.8577223,4.6130314 + 3248: 4.0764723,4.592183 + 3249: 4.2118893,3.9250526 + 3250: -17.415333,5.5268745 + 3251: -17.363249,5.2037334 + 3252: -16.675749,5.370516 + 3253: -16.311165,5.339245 + 3254: -15.613249,5.130766 + 3255: -16.311165,4.421941 + 3256: -35.885174,-9.732544 + 3257: -36.343506,-9.409403 + 3258: -36.39559,-9.398979 + 3259: -34.478924,-8.8256645 + 3260: -39.71845,-13.58939 + 3261: -39.92678,-13.5685425 + 3262: -40.40595,-13.860412 + 3263: -41.30178,-14.402454 + 3264: -42.2497,-14.381607 + 3265: -44.054047,-14.360759 + 3266: -48.820038,-13.380912 + 3267: -49.184624,-13.370487 + 3268: -49.465874,-13.495575 + 3269: -49.278374,-32.45957 + 3270: -49.351288,-32.58466 + 3271: -49.445038,-33.095432 + 3272: -49.872124,-32.537483 + 3273: -49.767956,-32.756386 + 3274: -49.486706,-33.21504 + 3275: -41.073032,-36.453472 + 3276: -40.614697,-36.463894 + 3277: -40.208447,-37.026787 + 3278: -40.052197,-38.006634 + 3279: -44.968864,-42.261353 + 3280: -45.928387,-41.333626 + 3281: -45.990887,-41.3649 + 3282: -46.26172,-40.666496 + 3283: -46.178387,-40.666496 + 3284: -44.865887,-40.739464 + 3285: -3.8079247,-70.90175 + 3286: -3.8697991,-70.953865 + 3287: -4.1093826,-71.00599 + 3288: -4.6822996,-71.058105 + 3289: -5.7656326,-71.13107 + 3290: -6.1197996,-71.151924 + 3291: -4.8697996,-71.28743 + 3292: 30.344131,-89.77827 + 3293: 29.875381,-89.945045 + 3294: 29.375381,-89.91378 + 3295: 35.327736,-87.57111 + 3296: 35.327736,-87.7379 + 3297: 35.338154,-88.06104 + 3298: 35.504818,-88.37376 + 3299: 35.536068,-88.01935 + 3300: 35.213154,-88.154854 + 3301: 34.827736,-88.363335 + 3302: 36.963154,-65.47481 + 3303: 37.327736,-65.40184 + 3304: 34.973568,-56.398106 3305: 34.973568,-56.398106 - 3306: 34.973568,-56.398106 - 3307: 34.661068,-55.94988 - 3308: 35.327736,-56.022846 - 3309: 43.818256,-49.574497 - 3310: 43.818256,-49.835094 - 3311: 43.787006,-50.252052 - 3312: 43.83878,-38.40324 - 3313: 43.27628,-38.43451 - 3314: 43.130447,-38.663837 - 3315: 43.01586,-39.591564 - 3316: 42.77628,-40.018944 - 3317: 53.17552,-17.753592 - 3318: 53.165108,-17.393248 - 3319: 53.040108,-16.100685 - 3320: 52.977608,-15.027021 - 3321: 52.99844,-14.151413 - 3322: 52.80052,-13.327925 - 3323: 52.758858,-16.997139 - 3324: 52.727608,-17.810204 - 3325: 52.602608,-18.571148 - 3326: 60.029858,-21.940498 - 3327: 60.342358,-21.271244 - 3328: 52.16824,-1.7232664 - 3329: 51.93907,-1.6919949 - 3330: 51.366154,-1.6398752 - 3331: 34.815258,7.256752 - 3332: 34.096508,7.2775993 - 3333: 33.700672,7.2463274 - 3334: 33.419422,6.964882 - 3335: 32.794422,6.693861 - 3336: 32.096508,6.6521645 - 3337: 30.96109,6.7355556 - 3338: 30.30484,7.079545 - 3339: 29.55484,7.2775993 - 3340: 29.763172,6.7668285 - 3341: 39.242516,22.375364 - 3342: 38.82585,22.344093 - 3343: 37.82585,22.12519 - 3344: 37.377934,22.104343 - 3345: 33.867516,22.458755 - 3346: 34.26335,22.156462 - 3347: 34.867516,21.812473 - 3348: 35.721684,21.687386 - 3349: 36.617516,21.697811 - 3350: 37.492516,21.895864 - 3351: 36.8571,22.208582 - 3352: 36.127934,22.28155 - 5147: -2.5229442,-7.5749044 - 5148: -2.5229442,-7.564481 - 5149: -2.470861,-5.479699 - 5150: -2.5125275,-5.66733 - 5151: -2.5750275,-6.011318 - 5152: -2.5229442,-6.5116663 - 5153: 0.5603895,-6.5012426 - 5154: 0.5603895,-6.5012426 - 5155: 1.258306,-4.5206995 - 5156: 1.0291395,-4.531124 - 5157: 1.0291395,-4.531124 - 5158: 0.86247253,-4.541548 - 5159: 0.570806,-4.5623956 - 5160: 0.38330603,-4.2809496 - 5161: 0.33122253,-4.1350155 - 5162: 0.28955603,-3.9161134 - 5163: 0.049972534,-3.6763635 - 5164: -0.21044397,-3.645092 - 5165: -2.595861,-3.5617008 - 5166: -1.689611,-3.5617008 - 5167: -1.4812775,-3.80145 - 5168: -2.595861,-1.4211264 - 5169: -2.6479442,-1.0875609 - 5170: -3.095861,1.6330783 - 5171: -2.627111,1.5079916 - 5172: -1.741694,1.4454482 - 5173: -1.064611,1.3099372 - 5174: -2.1166942,1.3829043 - 5175: -1.4187775,1.3516328 - 5176: -0.6271105,1.2056983 - 5177: 3.0426645,-0.3095293 - 5178: 3.0322475,-0.5492792 - 5179: 3.0426645,-0.7890291 - 5180: 2.1989145,-0.7890291 - 5181: 2.1780806,-0.66394234 - 5182: 2.1155806,-0.4346161 - 5183: 1.9176645,-0.60139894 - 5184: 1.771831,-0.7473335 - 5185: 2.3655815,-4.346985 - 5186: 2.084331,-4.545039 - 5187: 4.033042,-8.655805 - 5188: 2.678875,-8.489021 - 5189: 3.980958,-8.561989 - 5190: -4.6294065,-0.5137758 - 5191: -4.452323,0.52861524 - 5192: -6.5356565,2.3632224 - 5193: -7.18149,2.509157 - 5194: -7.5669065,2.4570372 - 5195: -7.4731565,2.3527987 - 5196: -7.4731565,2.050505 - 5197: -4.644047,-3.5288017 - 5198: -5.5086303,-3.6643124 - 5199: -5.7898803,-5.5614634 - 5200: -5.519047,-6.583006 - 5201: -5.4773803,-6.6455493 - 5202: -5.4148803,-7.104202 - 5203: -5.456547,-7.3960705 - 5204: -5.331547,-8.438461 - 5205: -8.539881,-1.4350414 - 5206: -8.539881,-1.4975846 - 5207: -8.571131,-1.685215 - 5208: -12.560714,3.328684 - 5209: -12.560714,3.1931727 - 5210: -12.550297,2.65113 - 5211: -12.602381,2.2550213 - 5212: -12.696131,1.7234023 - 5213: -14.487798,3.3391078 - 5214: -14.508631,3.036815 - 5215: -14.560714,2.65113 - 5216: -14.727381,2.4634993 - 5217: -13.435714,1.7859457 - 5218: -13.414881,1.494076 - 5219: -11.171612,2.5364668 - 5220: -10.942445,2.442652 - 5221: -11.546612,-1.6539433 - 5222: -17.546612,1.5774677 - 5223: -17.55703,1.5149243 - 5224: -17.598694,1.108392 - 5225: -17.504944,1.494076 - 5226: -16.890362,1.7546742 - 5227: -16.49453,1.6504347 - 5228: -20.570595,0.47185016 - 5229: -20.528927,2.535784 - 5230: -21.528927,2.4315445 - 5231: -21.060177,2.4940884 - 5232: -20.685177,2.5253594 - 5233: -19.549759,2.4940884 - 5234: -19.549759,2.4940884 - 5235: -23.992668,1.9816601 - 5236: -24.409336,1.9295409 - 5237: -26.467155,2.0650513 - 5238: -25.612988,2.4090407 - 5239: -25.47757,2.3881924 - 5240: -25.404655,2.106747 - 5241: -25.404655,1.7002146 - 5242: -25.394238,1.5647042 - 5243: -25.467155,0.7203672 - 5244: -27.487988,0.5952809 - 5245: -16.005154,0.48198867 - 5246: -12.025986,0.5758035 - 5247: -24.472675,-1.5790999 - 5248: -23.639343,-3.643033 - 5249: -24.253925,-3.622185 - 5250: -25.462261,-3.570066 - 5251: -27.389343,-3.570066 - 5252: -25.410175,-0.46374154 - 5253: -18.628925,-0.5054374 - 5254: -18.358093,-0.44289422 - 5255: -32.513805,8.500856 - 5256: -32.513805,8.500856 - 5257: -32.565887,8.323649 - 5258: -32.513805,7.531433 - 5259: -33.534637,7.500161 - 5260: -33.534637,7.500161 - 5261: -31.357555,7.625248 - 5262: -31.36797,7.531433 - 5263: -30.576305,7.4376173 - 5264: -30.52422,7.2604113 - 5265: -30.503387,6.9581184 - 5266: -29.49297,4.4146843 - 5267: -28.80547,2.5279577 - 5268: -28.71172,2.4445665 - 5269: -28.55547,0.54741645 - 5270: -28.80547,0.4223287 - 5271: -29.378387,0.2972424 - 5272: -36.565887,1.674514 - 5273: -37.357555,1.9455359 - 5274: -37.05547,1.9976552 - 5275: -39.154213,3.0704515 - 5276: -38.78963,3.0808756 - 5294: -39.46848,0.42637277 - 5295: -39.05181,0.46806836 - 5296: -38.74973,0.43679643 - 5297: -38.603893,-0.4909308 - 5298: -39.21848,-0.5638983 - 5299: -35.55181,-1.7626479 - 5300: -36.52056,-1.5437453 - 5301: -36.874725,-1.4499304 - 5302: -38.072643,-1.4707785 - 5303: -39.478893,-2.5340173 - 5304: -40.572643,-0.42838764 - 5305: -41.17681,-0.44923568 - 5306: -41.61431,0.03026414 - 5307: -41.43723,0.46806836 - 5308: -41.4386,3.5282478 - 5309: -41.55318,3.4657052 - 5310: -42.230267,3.4865525 - 5311: -42.34485,3.2259552 - 5312: -42.30318,2.756879 - 5313: -41.605267,3.4031613 - 5314: -41.605267,2.9757807 - 5315: -40.386517,1.4643147 - 5316: -40.292767,1.9333909 - 5317: -40.42818,2.8715422 - 5318: -43.480267,2.6526396 - 5319: -43.324017,2.579673 - 5320: -43.91235,-2.4834108 - 5321: -44.266518,-2.4521391 - 5322: -44.68318,-2.4208677 - 5323: -45.22485,-1.6286509 - 5324: -45.03735,-0.9302492 - 5325: -43.71443,-0.6071081 - 5326: -43.71443,-0.9823687 - 5327: -46.46443,-1.5348356 - 5328: -45.922768,-1.5556834 - 5329: -45.91235,-0.6592276 - 5330: -48.41235,-0.6488035 - 5331: -48.922768,-0.68007565 - 5332: -49.047768,-0.6904993 - 5333: -49.3186,-0.8051622 - 5334: -49.3811,-1.4410207 - 5335: -49.329018,-1.8684008 - 5336: -48.735268,-2.368748 - 5337: -49.454018,0.58285356 - 5348: -43.5061,8.518829 - 5349: -42.4436,8.518829 - 5350: -42.454018,9.008753 - 5351: -42.485268,7.4764385 - 5352: -42.99568,7.278385 - 5353: -43.02693,7.0386353 - 5354: -43.02693,6.6529503 - 5355: -44.22485,6.538287 - 5356: -44.22485,6.538287 - 5357: -41.53735,9.436133 - 5358: -41.5061,6.486168 - 5359: -41.5061,6.486168 - 5360: -36.570263,-5.47698 - 5361: -37.539013,-6.050295 - 5362: -37.539013,-6.050295 - 5363: -37.51818,-7.5200663 - 5364: -39.539017,-6.164958 - 5365: -40.007767,-5.748002 - 5366: -40.789017,-7.47837 - 5367: -40.51818,-7.155229 - 5368: -34.418655,-6.3517876 - 5369: -34.179073,-6.03907 - 5370: -31.510803,-8.464451 - 5371: -31.448303,-8.943951 - 5372: -31.354553,-9.142004 - 5373: -31.37539,-9.298363 - 5374: -31.385803,-9.944645 - 5378: 0.45570707,-36.44141 - 5379: 0.7057071,-36.472683 - 5380: 0.7890401,-36.462257 - 5381: 0.9557071,-36.264206 - 5382: 0.8515401,-36.399715 - 5383: 0.6640401,-36.462257 - 5384: 0.4452901,-36.576923 - 5385: -4.1229095,-40.204956 - 5386: -4.2062426,-40.33004 - 5387: -3.7791593,-40.42386 - 5388: -3.383326,-40.507248 - 5389: -1.7166591,-39.95478 - 5390: -1.8416591,-39.84012 - 5391: -2.0916593,-39.829693 - 5392: -3.4366515,-37.434795 - 5393: -2.957485,-36.38198 - 5394: -16.413067,-39.780174 - 5395: -16.163067,-39.602966 - 5396: -15.392234,-39.25898 - 5397: -15.5589,-38.498035 - 5398: -15.506817,-38.06023 - 5399: -15.517234,-38.64397 - 5400: -15.485984,-39.040077 - 5401: -16.423485,-40.082466 - 5402: -16.402649,-40.499424 - 5403: -13.850567,-40.52027 - 5404: -13.590151,-40.426456 - 5405: -13.590151,-40.416035 - 5406: -16.423485,-36.653004 - 5407: -11.423484,-36.551277 - 5408: -11.579734,-35.602703 - 5409: -11.777651,-35.185745 - 5410: -10.944317,-36.72848 - 5411: -4.319317,-32.594986 - 5412: -2.8401499,-32.70965 - 5413: -2.6606374,-33.52061 - 5414: -2.6189706,-34.22944 - 5415: -2.608554,-34.437916 - 5416: -2.5564706,-35.105045 - 5417: -3.2752206,-35.29938 - 5418: -3.2752206,-35.34108 - 5419: -3.2752206,-35.37235 - 5420: -2.6814706,-35.445316 - 5421: -3.5981374,-34.663525 - 5422: -3.5981374,-34.663525 - 5423: 0.08936262,-30.639894 - 5424: 0.1622796,-30.712862 - 5425: 0.3497796,-31.171515 - 5426: 0.3810296,-31.286177 - 5427: -0.22313738,-30.535656 - 5428: 0.7560296,-31.7761 - 5429: 0.7560296,-32.318146 - 5430: 0.5372796,-32.589165 - 5431: -0.6398039,-32.589165 - 5432: -0.9939704,-30.744135 - 5433: -0.6398039,-30.702438 - 5434: -0.8168874,-30.764982 - 5435: -1.2543874,-30.827526 - 5453: -21.403927,-27.520338 - 5454: -19.664345,-27.707968 - 5455: -19.33101,-27.760088 - 5456: -19.341427,-28.041533 - 5457: -19.33101,-28.250011 - 5458: -18.935177,-28.437641 - 5459: -18.747677,-28.427217 - 5460: -18.653927,-28.291706 - 5461: -18.622677,-27.697544 - 5462: -18.601845,-27.92687 - 5463: -19.23726,-31.147858 - 5464: -19.372677,-32.59678 - 5465: -19.008095,-32.659325 - 5466: -18.67476,-32.721867 - 5467: -18.664345,-33.23264 - 5468: -18.560177,-33.409847 - 5469: -19.466427,-33.6079 - 5470: -22.653927,-31.470999 - 5471: -23.226845,-29.886564 - 5472: -23.331013,-29.855293 - 5473: -23.435177,-29.865717 - 5474: -23.695595,-30.157585 - 5475: -23.695595,-30.616238 - 5476: -23.601845,-30.918531 - 5477: -23.289345,-31.45015 - 5478: -24.018513,-30.188858 - 5479: -24.331013,-29.949108 - 5480: -24.466427,-29.98038 - 5484: -10.398228,-27.616209 - 5485: -10.419062,-27.355612 - 5486: -10.450312,-27.126286 - 5487: -10.356562,-24.608856 - 5488: -10.366978,-24.85903 - 5489: -10.366978,-25.025812 - 5490: -10.346144,-25.547007 - 5491: -12.596145,-23.51351 - 5492: -10.481562,-18.559704 - 5493: -10.596144,-19.331072 - 5494: -11.491978,-19.69591 - 5495: -11.606562,-20.12329 - 5496: -12.419062,-20.852962 - 5497: -2.092088,-20.477701 - 5498: -1.5295877,-20.644485 - 5499: -1.4775047,-20.665333 - 5500: -1.3837547,-21.092712 - 5501: 3.275756,-25.704914 - 5502: 4.192422,-24.454044 - 5503: 4.650756,-24.6521 - 5504: 4.588256,-24.881424 - 5505: 4.442422,-25.569403 - 5506: 4.432006,-26.25738 - 5507: 4.411172,-26.653488 - 5508: 4.390339,-27.16426 - 5509: 4.234089,-27.50825 - 5510: 3.911172,-27.64376 - 5511: 3.327839,-27.633335 - 5512: 3.202839,-27.633335 - 5513: 2.588256,-27.695879 - 5514: 2.484089,-28.248346 - 5515: 2.452839,-28.561064 - 5516: 2.890339,-28.571487 - 5517: 3.379922,-28.540216 - 5518: 2.421589,-27.445705 - 5519: 1.7028389,-27.50825 - 5520: 1.4840889,-27.466553 - 5521: 1.4320054,-27.11214 - 5522: 2.629922,-25.152447 - 5523: 2.504922,-25.256685 - 5524: 2.348672,-25.256685 - 5525: 2.317422,-25.048206 - 5526: 1.9945054,-24.68337 - 5527: 1.3278389,-24.59998 - 5528: 1.3070054,-24.756338 - 5529: 1.3486719,-25.225414 - 5530: 1.4632554,-26.382467 - 5531: 0.6715889,-26.528402 - 5532: 0.06742191,-26.424162 - 5533: 0.22367191,-25.527706 - 5534: 0.1715889,-24.902273 - 5535: -0.4534111,-24.63125 - 5536: 0.2445054,-24.568708 - 5537: 0.2965889,-24.620827 - 5538: -0.047161102,-29.478367 - 5539: -0.4117446,-29.478367 - 5540: -1.0679946,-29.551334 - 5541: -1.8284116,-29.520063 - 5542: -2.5679948,-29.530487 - 5543: -3.495078,-28.508944 - 5544: -3.5784116,-28.488096 - 5545: -3.9221616,-28.488096 - 5546: -4.536745,-28.540216 - 5547: -9.052546,-24.537436 - 5548: -9.115046,-24.41235 - 5549: -8.865046,-24.537436 - 5550: -8.573379,-24.527012 - 5551: -8.396296,-24.037088 + 3306: 34.661068,-55.94988 + 3307: 35.327736,-56.022846 + 3308: 43.818256,-49.574497 + 3309: 43.818256,-49.835094 + 3310: 43.787006,-50.252052 + 3311: 43.83878,-38.40324 + 3312: 43.27628,-38.43451 + 3313: 43.130447,-38.663837 + 3314: 43.01586,-39.591564 + 3315: 42.77628,-40.018944 + 3316: 53.17552,-17.753592 + 3317: 53.165108,-17.393248 + 3318: 53.040108,-16.100685 + 3319: 52.977608,-15.027021 + 3320: 52.99844,-14.151413 + 3321: 52.80052,-13.327925 + 3322: 52.758858,-16.997139 + 3323: 52.727608,-17.810204 + 3324: 52.602608,-18.571148 + 3325: 60.029858,-21.940498 + 3326: 60.342358,-21.271244 + 3327: 52.16824,-1.7232664 + 3328: 51.93907,-1.6919949 + 3329: 51.366154,-1.6398752 + 3330: 34.815258,7.256752 + 3331: 34.096508,7.2775993 + 3332: 33.700672,7.2463274 + 3333: 33.419422,6.964882 + 3334: 32.794422,6.693861 + 3335: 32.096508,6.6521645 + 3336: 30.96109,6.7355556 + 3337: 30.30484,7.079545 + 3338: 29.55484,7.2775993 + 3339: 29.763172,6.7668285 + 3340: 39.242516,22.375364 + 3341: 38.82585,22.344093 + 3342: 37.82585,22.12519 + 3343: 37.377934,22.104343 + 3344: 33.867516,22.458755 + 3345: 34.26335,22.156462 + 3346: 34.867516,21.812473 + 3347: 35.721684,21.687386 + 3348: 36.617516,21.697811 + 3349: 37.492516,21.895864 + 3350: 36.8571,22.208582 + 3351: 36.127934,22.28155 + 5137: -2.470861,-5.479699 + 5138: -2.5125275,-5.66733 + 5139: -2.5750275,-6.011318 + 5140: 0.5603895,-6.5012426 + 5141: 0.5603895,-6.5012426 + 5142: 1.258306,-4.5206995 + 5143: 1.0291395,-4.531124 + 5144: 1.0291395,-4.531124 + 5145: 0.86247253,-4.541548 + 5146: 0.570806,-4.5623956 + 5147: 0.38330603,-4.2809496 + 5148: 0.33122253,-4.1350155 + 5149: 0.28955603,-3.9161134 + 5150: 0.049972534,-3.6763635 + 5151: -0.21044397,-3.645092 + 5152: -2.595861,-3.5617008 + 5153: -1.689611,-3.5617008 + 5154: -1.4812775,-3.80145 + 5155: -2.595861,-1.4211264 + 5156: -2.6479442,-1.0875609 + 5157: -3.095861,1.6330783 + 5158: -2.627111,1.5079916 + 5159: -1.741694,1.4454482 + 5160: -1.064611,1.3099372 + 5161: -2.1166942,1.3829043 + 5162: -1.4187775,1.3516328 + 5163: -0.6271105,1.2056983 + 5164: 3.0426645,-0.3095293 + 5165: 3.0322475,-0.5492792 + 5166: 3.0426645,-0.7890291 + 5167: 2.1989145,-0.7890291 + 5168: 2.1780806,-0.66394234 + 5169: 2.1155806,-0.4346161 + 5170: 1.9176645,-0.60139894 + 5171: 1.771831,-0.7473335 + 5172: 2.3655815,-4.346985 + 5173: 2.084331,-4.545039 + 5174: 4.033042,-8.655805 + 5175: 2.678875,-8.489021 + 5176: 3.980958,-8.561989 + 5177: -4.6294065,-0.5137758 + 5178: -4.452323,0.52861524 + 5179: -6.5356565,2.3632224 + 5180: -7.18149,2.509157 + 5181: -7.5669065,2.4570372 + 5182: -7.4731565,2.3527987 + 5183: -7.4731565,2.050505 + 5184: -4.644047,-3.5288017 + 5185: -5.5086303,-3.6643124 + 5186: -5.7898803,-5.5614634 + 5187: -5.519047,-6.583006 + 5188: -5.4773803,-6.6455493 + 5189: -8.539881,-1.4350414 + 5190: -8.539881,-1.4975846 + 5191: -8.571131,-1.685215 + 5192: -12.560714,3.328684 + 5193: -12.560714,3.1931727 + 5194: -12.550297,2.65113 + 5195: -12.602381,2.2550213 + 5196: -12.696131,1.7234023 + 5197: -14.487798,3.3391078 + 5198: -14.508631,3.036815 + 5199: -14.560714,2.65113 + 5200: -14.727381,2.4634993 + 5201: -13.435714,1.7859457 + 5202: -13.414881,1.494076 + 5203: -11.171612,2.5364668 + 5204: -10.942445,2.442652 + 5205: -11.546612,-1.6539433 + 5206: -17.546612,1.5774677 + 5207: -17.55703,1.5149243 + 5208: -17.598694,1.108392 + 5209: -17.504944,1.494076 + 5210: -16.890362,1.7546742 + 5211: -16.49453,1.6504347 + 5212: -20.570595,0.47185016 + 5213: -20.528927,2.535784 + 5214: -21.528927,2.4315445 + 5215: -21.060177,2.4940884 + 5216: -20.685177,2.5253594 + 5217: -19.549759,2.4940884 + 5218: -19.549759,2.4940884 + 5219: -23.992668,1.9816601 + 5220: -24.409336,1.9295409 + 5221: -26.467155,2.0650513 + 5222: -25.612988,2.4090407 + 5223: -25.47757,2.3881924 + 5224: -25.404655,2.106747 + 5225: -25.404655,1.7002146 + 5226: -25.394238,1.5647042 + 5227: -25.467155,0.7203672 + 5228: -27.487988,0.5952809 + 5229: -16.005154,0.48198867 + 5230: -12.025986,0.5758035 + 5231: -24.472675,-1.5790999 + 5232: -23.639343,-3.643033 + 5233: -24.253925,-3.622185 + 5234: -25.462261,-3.570066 + 5235: -27.389343,-3.570066 + 5236: -25.410175,-0.46374154 + 5237: -18.628925,-0.5054374 + 5238: -18.358093,-0.44289422 + 5239: -32.513805,8.500856 + 5240: -32.513805,8.500856 + 5241: -32.565887,8.323649 + 5242: -32.513805,7.531433 + 5243: -33.534637,7.500161 + 5244: -33.534637,7.500161 + 5245: -31.357555,7.625248 + 5246: -31.36797,7.531433 + 5247: -30.576305,7.4376173 + 5248: -30.52422,7.2604113 + 5249: -30.503387,6.9581184 + 5250: -29.49297,4.4146843 + 5251: -28.80547,2.5279577 + 5252: -28.71172,2.4445665 + 5253: -28.55547,0.54741645 + 5254: -28.80547,0.4223287 + 5255: -29.378387,0.2972424 + 5256: -36.565887,1.674514 + 5257: -37.357555,1.9455359 + 5258: -37.05547,1.9976552 + 5259: -39.154213,3.0704515 + 5260: -38.78963,3.0808756 + 5278: -39.46848,0.42637277 + 5279: -39.05181,0.46806836 + 5280: -38.74973,0.43679643 + 5281: -38.603893,-0.4909308 + 5282: -39.21848,-0.5638983 + 5283: -35.55181,-1.7626479 + 5284: -36.52056,-1.5437453 + 5285: -36.874725,-1.4499304 + 5286: -38.072643,-1.4707785 + 5287: -39.478893,-2.5340173 + 5288: -40.572643,-0.42838764 + 5289: -41.17681,-0.44923568 + 5290: -41.61431,0.03026414 + 5291: -41.43723,0.46806836 + 5292: -41.4386,3.5282478 + 5293: -41.55318,3.4657052 + 5294: -42.230267,3.4865525 + 5295: -42.34485,3.2259552 + 5296: -42.30318,2.756879 + 5297: -41.605267,3.4031613 + 5298: -41.605267,2.9757807 + 5299: -40.386517,1.4643147 + 5300: -40.292767,1.9333909 + 5301: -40.42818,2.8715422 + 5302: -43.480267,2.6526396 + 5303: -43.324017,2.579673 + 5304: -43.91235,-2.4834108 + 5305: -44.266518,-2.4521391 + 5306: -44.68318,-2.4208677 + 5307: -45.22485,-1.6286509 + 5308: -45.03735,-0.9302492 + 5309: -43.71443,-0.6071081 + 5310: -43.71443,-0.9823687 + 5311: -46.46443,-1.5348356 + 5312: -45.922768,-1.5556834 + 5313: -45.91235,-0.6592276 + 5314: -48.41235,-0.6488035 + 5315: -48.922768,-0.68007565 + 5316: -49.047768,-0.6904993 + 5317: -49.3186,-0.8051622 + 5318: -49.3811,-1.4410207 + 5319: -49.329018,-1.8684008 + 5320: -48.735268,-2.368748 + 5321: -49.454018,0.58285356 + 5332: -43.5061,8.518829 + 5333: -42.4436,8.518829 + 5334: -42.454018,9.008753 + 5335: -42.485268,7.4764385 + 5336: -42.99568,7.278385 + 5337: -43.02693,7.0386353 + 5338: -43.02693,6.6529503 + 5339: -44.22485,6.538287 + 5340: -44.22485,6.538287 + 5341: -41.53735,9.436133 + 5342: -41.5061,6.486168 + 5343: -41.5061,6.486168 + 5344: -36.570263,-5.47698 + 5345: -37.539013,-6.050295 + 5346: -37.539013,-6.050295 + 5347: -37.51818,-7.5200663 + 5348: -39.539017,-6.164958 + 5349: -40.007767,-5.748002 + 5350: -40.789017,-7.47837 + 5351: -40.51818,-7.155229 + 5352: -34.418655,-6.3517876 + 5353: -34.179073,-6.03907 + 5354: -31.510803,-8.464451 + 5355: -31.448303,-8.943951 + 5356: -31.354553,-9.142004 + 5357: -31.37539,-9.298363 + 5358: -31.385803,-9.944645 + 5362: 0.45570707,-36.44141 + 5363: 0.7057071,-36.472683 + 5364: 0.7890401,-36.462257 + 5365: 0.9557071,-36.264206 + 5366: 0.8515401,-36.399715 + 5367: 0.6640401,-36.462257 + 5368: 0.4452901,-36.576923 + 5369: -4.1229095,-40.204956 + 5370: -4.2062426,-40.33004 + 5371: -3.7791593,-40.42386 + 5372: -3.383326,-40.507248 + 5373: -1.7166591,-39.95478 + 5374: -1.8416591,-39.84012 + 5375: -2.0916593,-39.829693 + 5376: -3.4366515,-37.434795 + 5377: -2.957485,-36.38198 + 5378: -16.413067,-39.780174 + 5379: -16.163067,-39.602966 + 5380: -15.392234,-39.25898 + 5381: -15.5589,-38.498035 + 5382: -15.506817,-38.06023 + 5383: -15.517234,-38.64397 + 5384: -15.485984,-39.040077 + 5385: -16.423485,-40.082466 + 5386: -16.402649,-40.499424 + 5387: -13.850567,-40.52027 + 5388: -13.590151,-40.426456 + 5389: -13.590151,-40.416035 + 5390: -16.423485,-36.653004 + 5391: -11.423484,-36.551277 + 5392: -11.579734,-35.602703 + 5393: -11.777651,-35.185745 + 5394: -10.944317,-36.72848 + 5395: -4.319317,-32.594986 + 5396: -2.8401499,-32.70965 + 5397: -2.6606374,-33.52061 + 5398: -2.6189706,-34.22944 + 5399: -2.608554,-34.437916 + 5400: -2.5564706,-35.105045 + 5401: -3.2752206,-35.29938 + 5402: -3.2752206,-35.34108 + 5403: -3.2752206,-35.37235 + 5404: -2.6814706,-35.445316 + 5405: -3.5981374,-34.663525 + 5406: -3.5981374,-34.663525 + 5407: 0.08936262,-30.639894 + 5408: 0.1622796,-30.712862 + 5409: 0.3497796,-31.171515 + 5410: 0.3810296,-31.286177 + 5411: -0.22313738,-30.535656 + 5412: 0.7560296,-31.7761 + 5413: 0.7560296,-32.318146 + 5414: 0.5372796,-32.589165 + 5415: -0.6398039,-32.589165 + 5416: -0.9939704,-30.744135 + 5417: -0.6398039,-30.702438 + 5418: -0.8168874,-30.764982 + 5419: -1.2543874,-30.827526 + 5437: -21.403927,-27.520338 + 5438: -19.664345,-27.707968 + 5439: -19.33101,-27.760088 + 5440: -19.341427,-28.041533 + 5441: -19.33101,-28.250011 + 5442: -18.935177,-28.437641 + 5443: -18.747677,-28.427217 + 5444: -18.653927,-28.291706 + 5445: -18.622677,-27.697544 + 5446: -18.601845,-27.92687 + 5447: -19.23726,-31.147858 + 5448: -19.372677,-32.59678 + 5449: -19.008095,-32.659325 + 5450: -18.67476,-32.721867 + 5451: -18.664345,-33.23264 + 5452: -18.560177,-33.409847 + 5453: -19.466427,-33.6079 + 5454: -22.653927,-31.470999 + 5455: -23.226845,-29.886564 + 5456: -23.331013,-29.855293 + 5457: -23.435177,-29.865717 + 5458: -23.695595,-30.157585 + 5459: -23.695595,-30.616238 + 5460: -23.601845,-30.918531 + 5461: -23.289345,-31.45015 + 5462: -24.018513,-30.188858 + 5463: -24.331013,-29.949108 + 5464: -24.466427,-29.98038 + 5468: -10.398228,-27.616209 + 5469: -10.419062,-27.355612 + 5470: -10.450312,-27.126286 + 5471: -10.356562,-24.608856 + 5472: -10.366978,-24.85903 + 5473: -10.366978,-25.025812 + 5474: -10.346144,-25.547007 + 5475: -12.596145,-23.51351 + 5476: -10.481562,-18.559704 + 5477: -10.596144,-19.331072 + 5478: -11.491978,-19.69591 + 5479: -11.606562,-20.12329 + 5480: -12.419062,-20.852962 + 5481: -2.092088,-20.477701 + 5482: -1.5295877,-20.644485 + 5483: -1.4775047,-20.665333 + 5484: -1.3837547,-21.092712 + 5485: 3.275756,-25.704914 + 5486: 4.192422,-24.454044 + 5487: 4.650756,-24.6521 + 5488: 4.588256,-24.881424 + 5489: 4.442422,-25.569403 + 5490: 4.432006,-26.25738 + 5491: 4.411172,-26.653488 + 5492: 4.390339,-27.16426 + 5493: 4.234089,-27.50825 + 5494: 3.911172,-27.64376 + 5495: 3.327839,-27.633335 + 5496: 3.202839,-27.633335 + 5497: 2.588256,-27.695879 + 5498: 2.484089,-28.248346 + 5499: 2.452839,-28.561064 + 5500: 2.890339,-28.571487 + 5501: 3.379922,-28.540216 + 5502: 2.421589,-27.445705 + 5503: 1.7028389,-27.50825 + 5504: 1.4840889,-27.466553 + 5505: 1.4320054,-27.11214 + 5506: 2.629922,-25.152447 + 5507: 2.504922,-25.256685 + 5508: 2.348672,-25.256685 + 5509: 2.317422,-25.048206 + 5510: 1.9945054,-24.68337 + 5511: 1.3278389,-24.59998 + 5512: 1.3070054,-24.756338 + 5513: 1.3486719,-25.225414 + 5514: 1.4632554,-26.382467 + 5515: 0.6715889,-26.528402 + 5516: 0.06742191,-26.424162 + 5517: 0.22367191,-25.527706 + 5518: 0.1715889,-24.902273 + 5519: -0.4534111,-24.63125 + 5520: 0.2445054,-24.568708 + 5521: 0.2965889,-24.620827 + 5522: -0.047161102,-29.478367 + 5523: -0.4117446,-29.478367 + 5524: -1.0679946,-29.551334 + 5525: -1.8284116,-29.520063 + 5526: -2.5679948,-29.530487 + 5527: -3.495078,-28.508944 + 5528: -3.5784116,-28.488096 + 5529: -3.9221616,-28.488096 + 5530: -4.536745,-28.540216 + 5531: -9.052546,-24.537436 + 5532: -9.115046,-24.41235 + 5533: -8.865046,-24.537436 + 5534: -8.573379,-24.527012 + 5535: -8.396296,-24.037088 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 5280: -9.987249,-3.9825282 - 5281: -10.039333,-3.0652246 - 5282: -10.039333,-3.0652246 - 5283: -10.039333,-3.0652246 - 5284: -9.514065,-6.5939417 - 5285: -8.961981,-6.531399 - 5286: -16.013287,-8.928868 - 5287: -15.992452,-9.043531 - 5288: -16.05495,-13.536976 - 5289: -16.6487,-13.495279 - 5290: -15.440369,-13.453585 - 5291: -15.440369,-13.453585 - 5338: -49.516518,2.6884825 - 5339: -49.47485,2.3549178 - 5436: -0.9314704,-31.036003 - 5437: -11.019344,-29.480032 - 5438: -17.54976,-27.853903 - 5439: -17.54976,-28.479338 - 5440: -17.54976,-28.594 - 5441: -17.67476,-29.63639 - 5442: -17.716427,-29.949108 - 5443: -17.758095,-30.553694 - 5444: -17.747677,-30.876835 - 5445: -17.76851,-31.231249 - 5446: -17.79976,-31.710749 - 5447: -17.79976,-32.11728 - 5448: -17.58101,-32.732292 - 5449: -17.133095,-32.721867 - 5450: -17.101845,-32.721867 - 5451: -17.101845,-32.85738 - 5452: -17.497677,-32.784412 + 5264: -9.987249,-3.9825282 + 5265: -10.039333,-3.0652246 + 5266: -10.039333,-3.0652246 + 5267: -10.039333,-3.0652246 + 5268: -9.514065,-6.5939417 + 5269: -8.961981,-6.531399 + 5270: -16.013287,-8.928868 + 5271: -15.992452,-9.043531 + 5272: -16.05495,-13.536976 + 5273: -16.6487,-13.495279 + 5274: -15.440369,-13.453585 + 5275: -15.440369,-13.453585 + 5322: -49.516518,2.6884825 + 5323: -49.47485,2.3549178 + 5420: -0.9314704,-31.036003 + 5421: -11.019344,-29.480032 + 5422: -17.54976,-27.853903 + 5423: -17.54976,-28.479338 + 5424: -17.54976,-28.594 + 5425: -17.67476,-29.63639 + 5426: -17.716427,-29.949108 + 5427: -17.758095,-30.553694 + 5428: -17.747677,-30.876835 + 5429: -17.76851,-31.231249 + 5430: -17.79976,-31.710749 + 5431: -17.79976,-32.11728 + 5432: -17.58101,-32.732292 + 5433: -17.133095,-32.721867 + 5434: -17.101845,-32.721867 + 5435: -17.101845,-32.85738 + 5436: -17.497677,-32.784412 - node: color: '#F9801DFF' id: FlowersBRTwo decals: - 5113: -74.36727,1.0510876 + 5103: -74.36727,1.0510876 - node: color: '#F9801DFF' id: Flowersbr1 decals: - 5111: -74.14852,3.1879885 + 5101: -74.14852,3.1879885 - node: color: '#FED83DFF' id: Flowersbr1 decals: - 3894: 51.722157,-50.67294 + 3893: 51.722157,-50.67294 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 5036: -7.7392144,-18.074406 - 5037: -3.2704644,-16.114712 + 5026: -7.7392144,-18.074406 + 5027: -3.2704644,-16.114712 - node: color: '#169C9CFF' id: Flowersbr3 decals: - 5144: -52.107662,0.9340193 + 5134: -52.107662,0.9340193 - node: color: '#FED83DFF' id: Flowersbr3 decals: - 5074: -14.363294,-15.488698 + 5064: -14.363294,-15.488698 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 3380: 19.843185,-45.26182 - 3381: 20.405685,-45.33479 - 3382: 19.770267,-45.407757 + 3379: 19.843185,-45.26182 + 3380: 20.405685,-45.33479 + 3381: 19.770267,-45.407757 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 3383: 4.210721,-45.324364 + 3382: 4.210721,-45.324364 - node: color: '#FED83DFF' id: Flowerspv2 decals: - 5073: -14.790377,-18.13637 + 5063: -14.790377,-18.13637 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 3384: 6.523221,-45.12631 - 5033: -4.8954644,-14.957659 - 5034: -8.916298,-16.156408 + 3383: 6.523221,-45.12631 + 5023: -4.8954644,-14.957659 + 5024: -8.916298,-16.156408 - node: color: '#169C9CFF' id: Flowerspv3 decals: - 5146: -50.451412,4.0403433 + 5136: -50.451412,4.0403433 - node: color: '#F9801DFF' id: Flowerspv3 decals: - 5112: -73.66935,2.1977174 + 5102: -73.66935,2.1977174 - node: color: '#FED83DFF' id: Flowerspv3 decals: - 3895: 52.451324,-50.631245 + 3894: 52.451324,-50.631245 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 3385: 8.794054,-45.783016 - 5035: -9.041298,-18.053558 + 3384: 8.794054,-45.783016 + 5025: -9.041298,-18.053558 - node: color: '#169C9CFF' id: Flowersy1 decals: - 5145: -51.305576,4.0716143 + 5135: -51.305576,4.0716143 - node: color: '#FED83DFF' id: Flowersy1 decals: - 5072: -16.18621,-16.23922 + 5062: -16.18621,-16.23922 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 5031: -6.405881,-15.197409 - 5038: -1.1558809,-16.18768 + 5021: -6.405881,-15.197409 + 5028: -1.1558809,-16.18768 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 3377: 12.582768,-45.10546 - 3378: 13.332768,-45.115887 - 3379: 12.968184,-45.41818 - 5032: -5.791298,-15.426735 + 3376: 12.582768,-45.10546 + 3377: 13.332768,-45.115887 + 3378: 12.968184,-45.41818 + 5022: -5.791298,-15.426735 - node: color: '#1D1D21FF' id: FullTileOverlayGreyscale @@ -5384,11 +5379,11 @@ entities: 1163: 15,-32 1164: 15,-33 1165: 15,-34 - 4269: 21,-23 - 4270: 22,-23 - 4271: 23,-23 - 4272: 24,-23 - 4273: 25,-23 + 4268: 21,-23 + 4269: 22,-23 + 4270: 23,-23 + 4271: 24,-23 + 4272: 25,-23 - node: color: '#D381C996' id: FullTileOverlayGreyscale @@ -5414,129 +5409,129 @@ entities: color: '#FFFFFFFF' id: Grassa2 decals: - 5030: -6.291298,-15.343344 + 5020: -6.291298,-15.343344 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 5013: -6.135048,-15.332919 + 5003: -6.135048,-15.332919 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3878: 51.565907,-50.48531 + 3877: 51.565907,-50.48531 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 3879: 52.763824,-50.787605 + 3878: 52.763824,-50.787605 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 3358: 20.21592,-45.313942 - 3359: 18.955502,-45.991493 - 3361: 13.178092,-45.23055 - 3365: 8.396841,-45.57454 - 3366: 8.782258,-45.855984 - 3367: 9.219758,-45.63708 - 3376: 4.5151777,-45.303516 - 5007: -8.676715,-17.876352 - 5028: -6.1142144,-18.772808 - 5100: -73.21102,6.12753 - 5102: -74.02352,1.8745763 - 5103: -73.908936,1.5618589 - 5143: -50.243076,2.8207462 + 3357: 20.21592,-45.313942 + 3358: 18.955502,-45.991493 + 3360: 13.178092,-45.23055 + 3364: 8.396841,-45.57454 + 3365: 8.782258,-45.855984 + 3366: 9.219758,-45.63708 + 3375: 4.5151777,-45.303516 + 4997: -8.676715,-17.876352 + 5018: -6.1142144,-18.772808 + 5090: -73.21102,6.12753 + 5092: -74.02352,1.8745763 + 5093: -73.908936,1.5618589 + 5133: -50.243076,2.8207462 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 3354: 16.976334,-46.06446 - 3360: 20.882584,-46.06446 - 3883: 51.909657,-49.839027 - 5008: -7.635048,-17.605331 + 3353: 16.976334,-46.06446 + 3359: 20.882584,-46.06446 + 3882: 51.909657,-49.839027 + 4998: -7.635048,-17.605331 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 3353: 16.976334,-44.0318 - 3355: 22.986752,-44.177734 - 3363: 9.969758,-46.074886 - 3371: 5.1401777,-45.960224 - 3372: 3.9943447,-45.991493 - 3373: 2.9735117,-44.146465 - 3881: 52.055492,-51.089897 - 5009: -3.8329644,-15.051475 - 5010: -2.5829644,-16.020897 - 5022: -5.312131,-16.95905 - 5029: -4.905881,-18.824928 - 5099: -72.05477,4.9913244 - 5104: -73.46102,0.43607688 + 3352: 16.976334,-44.0318 + 3354: 22.986752,-44.177734 + 3362: 9.969758,-46.074886 + 3370: 5.1401777,-45.960224 + 3371: 3.9943447,-45.991493 + 3372: 2.9735117,-44.146465 + 3880: 52.055492,-51.089897 + 4999: -3.8329644,-15.051475 + 5000: -2.5829644,-16.020897 + 5012: -5.312131,-16.95905 + 5019: -4.905881,-18.824928 + 5089: -72.05477,4.9913244 + 5094: -73.46102,0.43607688 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 3356: 23.018002,-46.022766 - 3357: 19.820084,-45.34521 - 3362: 12.761424,-45.240974 - 3364: 9.959341,-44.18816 - 3368: 6.386424,-45.001225 - 3369: 6.521841,-45.074192 - 3370: 4.8693447,-45.939373 - 3374: 3.0151777,-45.991493 - 3375: 3.9943447,-45.272243 - 3880: 51.107574,-50.443615 - 3882: 53.430492,-50.433193 - 5006: -8.843382,-15.812419 - 5011: -4.093381,-16.093864 - 5012: -1.2912979,-14.968083 - 5027: -6.499631,-15.343344 - 5098: -74.17977,4.17826 - 5101: -73.80477,2.9690864 - 5105: -72.283936,0.029544592 - 5106: -73.23185,-1.1796286 - 5107: -72.67977,-1.0024219 - 5123: -52.420162,1.2258885 - 5124: -50.586826,0.3607037 - 5125: -50.201412,1.6428444 - 5126: -51.201412,1.6219966 - 5127: -52.951412,3.0709198 - 5128: -52.909744,2.216159 - 5141: -52.607662,2.7165072 - 5142: -51.024326,3.6233873 + 3355: 23.018002,-46.022766 + 3356: 19.820084,-45.34521 + 3361: 12.761424,-45.240974 + 3363: 9.959341,-44.18816 + 3367: 6.386424,-45.001225 + 3368: 6.521841,-45.074192 + 3369: 4.8693447,-45.939373 + 3373: 3.0151777,-45.991493 + 3374: 3.9943447,-45.272243 + 3879: 51.107574,-50.443615 + 3881: 53.430492,-50.433193 + 4996: -8.843382,-15.812419 + 5001: -4.093381,-16.093864 + 5002: -1.2912979,-14.968083 + 5017: -6.499631,-15.343344 + 5088: -74.17977,4.17826 + 5091: -73.80477,2.9690864 + 5095: -72.283936,0.029544592 + 5096: -73.23185,-1.1796286 + 5097: -72.67977,-1.0024219 + 5113: -52.420162,1.2258885 + 5114: -50.586826,0.3607037 + 5115: -50.201412,1.6428444 + 5116: -51.201412,1.6219966 + 5117: -52.951412,3.0709198 + 5118: -52.909744,2.216159 + 5131: -52.607662,2.7165072 + 5132: -51.024326,3.6233873 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 4990: -9.093382,-16.208527 - 4991: -9.062132,-15.614366 - 4992: -4.166298,-16.020897 - 4993: -0.9579644,-14.957659 - 5059: -13.921192,-14.957659 - 5065: -16.129526,-16.941525 - 5084: -74.0756,2.802304 - 5085: -73.565186,2.7814558 - 5116: -52.034744,1.1112254 - 5118: -50.388912,1.6428444 - 5135: -50.628494,3.5295715 - 5136: -52.243076,2.737355 + 4980: -9.093382,-16.208527 + 4981: -9.062132,-15.614366 + 4982: -4.166298,-16.020897 + 4983: -0.9579644,-14.957659 + 5049: -13.921192,-14.957659 + 5055: -16.129526,-16.941525 + 5074: -74.0756,2.802304 + 5075: -73.565186,2.7814558 + 5106: -52.034744,1.1112254 + 5108: -50.388912,1.6428444 + 5125: -50.628494,3.5295715 + 5126: -52.243076,2.737355 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 4997: -9.114215,-17.8972 - 4998: -0.9162979,-15.906235 - 4999: -3.322548,-15.781148 - 5026: -4.9267144,-14.915963 - 5066: -16.108692,-17.858828 - 5070: -13.848276,-17.433235 - 5071: -14.077442,-16.599321 - 5086: -74.158936,3.7821503 - 5087: -73.71102,3.7404556 - 5119: -49.847244,1.476062 - 5122: -52.232662,0.46494317 - 5134: -51.524326,3.4983003 - 5140: -49.920162,2.7582023 + 4987: -9.114215,-17.8972 + 4988: -0.9162979,-15.906235 + 4989: -3.322548,-15.781148 + 5016: -4.9267144,-14.915963 + 5056: -16.108692,-17.858828 + 5060: -13.848276,-17.433235 + 5061: -14.077442,-16.599321 + 5076: -74.158936,3.7821503 + 5077: -73.71102,3.7404556 + 5109: -49.847244,1.476062 + 5112: -52.232662,0.46494317 + 5124: -51.524326,3.4983003 + 5130: -49.920162,2.7582023 - node: color: '#FFFFFFFF' id: Grassd3 @@ -5548,76 +5543,76 @@ entities: 1584: 37.716373,-88.642166 1585: 38.299706,-88.01673 1586: 38.341373,-88.829796 - 4994: -4.135048,-14.936811 - 4995: -1.7912979,-14.936811 - 4996: -8.510048,-18.022287 - 5020: -4.853798,-17.136255 - 5067: -15.504526,-18.667604 - 5069: -14.462859,-17.412386 - 5088: -74.096436,4.55352 - 5120: -49.940994,0.40239978 - 5132: -49.930576,3.5608435 - 5133: -52.190994,3.571268 - 5138: -52.284744,1.788779 + 4984: -4.135048,-14.936811 + 4985: -1.7912979,-14.936811 + 4986: -8.510048,-18.022287 + 5010: -4.853798,-17.136255 + 5057: -15.504526,-18.667604 + 5059: -14.462859,-17.412386 + 5078: -74.096436,4.55352 + 5110: -49.940994,0.40239978 + 5122: -49.930576,3.5608435 + 5123: -52.190994,3.571268 + 5128: -52.284744,1.788779 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 5000: -8.082965,-16.250223 - 5001: -7.635048,-17.292614 - 5002: -3.1767144,-15.020203 - 5021: -5.5204644,-19.033405 - 5060: -13.973275,-15.2912245 - 5089: -73.127686,5.7626934 - 5090: -72.64852,6.044139 - 5091: -72.065186,5.0121717 - 5121: -50.836826,0.41282344 - 5131: -50.076412,4.0716143 + 4990: -8.082965,-16.250223 + 4991: -7.635048,-17.292614 + 4992: -3.1767144,-15.020203 + 5011: -5.5204644,-19.033405 + 5050: -13.973275,-15.2912245 + 5079: -73.127686,5.7626934 + 5080: -72.64852,6.044139 + 5081: -72.065186,5.0121717 + 5111: -50.836826,0.41282344 + 5121: -50.076412,4.0716143 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 5003: -2.322548,-15.958354 - 5004: -8.957965,-17.073711 - 5016: -4.968381,-16.656755 - 5017: -6.3017144,-19.043829 - 5024: -6.7079644,-15.04105 - 5061: -14.744109,-15.4684305 - 5062: -13.869109,-15.916658 - 5063: -15.577442,-15.603941 - 5080: -74.08602,0.82176185 - 5081: -73.71102,0.8113377 - 5092: -71.971436,0.11293578 - 5093: -72.83602,0.18590331 - 5094: -72.783936,-0.71055245 - 5095: -72.73185,-1.064965 - 5096: -73.2006,-1.0753894 - 5097: -73.29435,-0.16850924 - 5114: -53.003494,3.091768 - 5130: -51.034744,4.1237345 - 5137: -51.399326,2.6852357 + 4993: -2.322548,-15.958354 + 4994: -8.957965,-17.073711 + 5006: -4.968381,-16.656755 + 5007: -6.3017144,-19.043829 + 5014: -6.7079644,-15.04105 + 5051: -14.744109,-15.4684305 + 5052: -13.869109,-15.916658 + 5053: -15.577442,-15.603941 + 5070: -74.08602,0.82176185 + 5071: -73.71102,0.8113377 + 5082: -71.971436,0.11293578 + 5083: -72.83602,0.18590331 + 5084: -72.783936,-0.71055245 + 5085: -72.73185,-1.064965 + 5086: -73.2006,-1.0753894 + 5087: -73.29435,-0.16850924 + 5104: -53.003494,3.091768 + 5120: -51.034744,4.1237345 + 5127: -51.399326,2.6852357 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 3873: 50.867992,-50.433193 - 3874: 52.492992,-51.07947 - 3875: 51.659657,-51.06905 - 3876: 53.107574,-50.3498 - 3877: 51.961742,-49.81818 - 5005: -7.5933814,-18.13695 - 5018: -5.603798,-17.146679 - 5019: -4.947548,-19.064678 - 5023: -6.3329644,-15.781148 - 5025: -5.780881,-14.884692 - 5064: -16.08786,-16.250223 - 5068: -14.764942,-18.14206 - 5082: -74.096436,1.7286413 - 5083: -73.690186,1.7494895 - 5115: -53.034744,2.038953 - 5117: -51.315994,1.611573 - 5129: -52.013912,4.082039 - 5139: -50.482662,2.7165072 + 3872: 50.867992,-50.433193 + 3873: 52.492992,-51.07947 + 3874: 51.659657,-51.06905 + 3875: 53.107574,-50.3498 + 3876: 51.961742,-49.81818 + 4995: -7.5933814,-18.13695 + 5008: -5.603798,-17.146679 + 5009: -4.947548,-19.064678 + 5013: -6.3329644,-15.781148 + 5015: -5.780881,-14.884692 + 5054: -16.08786,-16.250223 + 5058: -14.764942,-18.14206 + 5072: -74.096436,1.7286413 + 5073: -73.690186,1.7494895 + 5105: -53.034744,2.038953 + 5107: -51.315994,1.611573 + 5119: -52.013912,4.082039 + 5129: -50.482662,2.7165072 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -5651,9 +5646,9 @@ entities: 1098: 13,-30 1099: 14,-30 1100: 15,-30 - 4252: 22,-22 - 4253: 23,-22 - 4254: 24,-22 + 4251: 22,-22 + 4252: 23,-22 + 4253: 24,-22 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -5676,9 +5671,9 @@ entities: 1872: 58,18 1998: 41,18 1999: 42,18 - 4401: -19,-14 - 4402: -20,-14 - 4403: -21,-14 + 4400: -19,-14 + 4401: -20,-14 + 4402: -21,-14 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -5691,15 +5686,15 @@ entities: color: '#EAEBEE93' id: HalfTileOverlayGreyscale decals: - 5656: 15,-31 - 5657: 15,-31 - 5658: 15,-31 + 5640: 15,-31 + 5641: 15,-31 + 5642: 15,-31 - node: color: '#F9801D80' id: HalfTileOverlayGreyscale decals: - 4206: 12,-22 - 4207: 11,-22 + 4205: 12,-22 + 4206: 11,-22 - node: color: '#F9FFFEFF' id: HalfTileOverlayGreyscale @@ -5736,9 +5731,9 @@ entities: 1114: 12,-31 1115: 13,-31 1166: 15,-31 - 4257: 22,-24 - 4258: 23,-24 - 4259: 24,-24 + 4256: 22,-24 + 4257: 23,-24 + 4258: 24,-24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -5752,12 +5747,12 @@ entities: 1879: 46,15 1880: 54,6 1881: 58,15 - 4410: -20,-22 - 4411: -19,-22 - 4412: -18,-22 - 4413: -17,-22 - 4414: -16,-22 - 4415: -15,-22 + 4409: -20,-22 + 4410: -19,-22 + 4411: -18,-22 + 4412: -17,-22 + 4413: -16,-22 + 4414: -15,-22 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -5770,8 +5765,8 @@ entities: color: '#F9801D80' id: HalfTileOverlayGreyscale180 decals: - 4200: 12,-28 - 4201: 11,-28 + 4199: 12,-28 + 4200: 11,-28 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -5789,8 +5784,8 @@ entities: 1109: 14,-34 1110: 14,-33 1111: 14,-32 - 4255: 15,-24 - 4256: 15,-26 + 4254: 15,-24 + 4255: 15,-26 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -5805,12 +5800,12 @@ entities: 1869: 43,10 1870: 43,12 1871: 57,17 - 4404: -22,-15 - 4405: -21,-17 - 4406: -21,-18 - 4407: -21,-19 - 4408: -21,-20 - 4409: -21,-21 + 4403: -22,-15 + 4404: -21,-17 + 4405: -21,-18 + 4406: -21,-19 + 4407: -21,-20 + 4408: -21,-21 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -5826,10 +5821,10 @@ entities: color: '#F9801D80' id: HalfTileOverlayGreyscale270 decals: - 4203: 10,-27 - 4204: 10,-26 - 4205: 10,-24 - 4212: 10,-25 + 4202: 10,-27 + 4203: 10,-26 + 4204: 10,-24 + 4211: 10,-25 - node: color: '#0E7F1B81' id: HalfTileOverlayGreyscale90 @@ -5857,7 +5852,7 @@ entities: 991: 19,-29 1101: 16,-32 1102: 16,-33 - 4274: 26,-23 + 4273: 26,-23 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -5885,9 +5880,9 @@ entities: color: '#F9801D80' id: HalfTileOverlayGreyscale90 decals: - 4199: 13,-24 - 4202: 13,-26 - 4234: 13,-27 + 4198: 13,-24 + 4201: 13,-26 + 4233: 13,-27 - node: cleanable: True angle: -1.5707963267948966 rad @@ -5938,30 +5933,30 @@ entities: color: '#5E7C16FF' id: MiniTileDiagonalCheckerAOverlay decals: - 4026: -28,-32 - 4027: -27,-32 - 4028: -27,-31 - 4029: -28,-31 - 4030: -28,-30 - 4031: -27,-30 - 4032: -27,-29 - 4033: -28,-29 - 4034: -28,-28 - 4035: -27,-28 - 4036: -27,-27 - 4037: -28,-27 - 4038: -27,-23 - 4039: -28,-23 - 4040: -28,-22 - 4041: -27,-22 - 4042: -27,-21 - 4043: -28,-21 - 4044: -28,-20 - 4045: -27,-20 - 4046: -27,-19 - 4047: -28,-19 - 4048: -28,-18 - 4049: -27,-18 + 4025: -28,-32 + 4026: -27,-32 + 4027: -27,-31 + 4028: -28,-31 + 4029: -28,-30 + 4030: -27,-30 + 4031: -27,-29 + 4032: -28,-29 + 4033: -28,-28 + 4034: -27,-28 + 4035: -27,-27 + 4036: -28,-27 + 4037: -27,-23 + 4038: -28,-23 + 4039: -28,-22 + 4040: -27,-22 + 4041: -27,-21 + 4042: -28,-21 + 4043: -28,-20 + 4044: -27,-20 + 4045: -27,-19 + 4046: -28,-19 + 4047: -28,-18 + 4048: -27,-18 - node: color: '#D381C996' id: MiniTileDiagonalCheckerAOverlay @@ -5988,30 +5983,30 @@ entities: color: '#835432FF' id: MiniTileDiagonalCheckerBOverlay decals: - 4002: -28,-18 - 4003: -27,-18 - 4004: -27,-19 - 4005: -28,-19 - 4006: -28,-20 - 4007: -27,-20 - 4008: -27,-21 - 4009: -28,-21 - 4010: -28,-22 - 4011: -27,-22 - 4012: -27,-23 - 4013: -28,-23 - 4014: -28,-27 - 4015: -27,-27 - 4016: -27,-28 - 4017: -28,-28 - 4018: -28,-29 - 4019: -27,-29 - 4020: -27,-30 - 4021: -28,-30 - 4022: -28,-31 - 4023: -27,-31 - 4024: -27,-32 - 4025: -28,-32 + 4001: -28,-18 + 4002: -27,-18 + 4003: -27,-19 + 4004: -28,-19 + 4005: -28,-20 + 4006: -27,-20 + 4007: -27,-21 + 4008: -28,-21 + 4009: -28,-22 + 4010: -27,-22 + 4011: -27,-23 + 4012: -28,-23 + 4013: -28,-27 + 4014: -27,-27 + 4015: -27,-28 + 4016: -28,-28 + 4017: -28,-29 + 4018: -27,-29 + 4019: -27,-30 + 4020: -28,-30 + 4021: -28,-31 + 4022: -27,-31 + 4023: -27,-32 + 4024: -28,-32 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe @@ -6035,7 +6030,7 @@ entities: 1679: 4,35 1746: 32,28 1762: 20,17 - 3807: 24,15 + 3806: 24,15 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe @@ -6061,12 +6056,12 @@ entities: 1671: 9,30 1815: 14,24 1821: 11,26 - 3805: 24,13 + 3804: 24,13 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 4450: -20,-45 + 4449: -20,-45 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe @@ -6079,7 +6074,7 @@ entities: 1788: 24,20 1814: 14,24 1824: 12,27 - 3951: 29,11 + 3950: 29,11 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw @@ -6095,18 +6090,18 @@ entities: 1773: 25,17 1789: 23,20 1797: 23,24 - 3806: 25,15 - 3950: 29,11 + 3805: 25,15 + 3949: 29,11 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 4449: -20,-45 + 4448: -20,-45 - node: color: '#9FED5896' id: MiniTileWhiteInnerSe decals: - 4375: -11,-13 + 4374: -11,-13 - node: color: '#EFB34196' id: MiniTileWhiteInnerSe @@ -6118,12 +6113,12 @@ entities: 1785: 25,20 1817: 14,26 1827: 12,30 - 3947: 29,13 + 3946: 29,13 - node: color: '#9FED5896' id: MiniTileWhiteInnerSw decals: - 4376: -12,-13 + 4375: -12,-13 - node: color: '#EFB34196' id: MiniTileWhiteInnerSw @@ -6138,8 +6133,8 @@ entities: 1796: 23,24 1818: 14,26 1828: 11,30 - 3945: 25,20 - 3946: 29,13 + 3944: 25,20 + 3945: 29,13 - node: color: '#EFB34196' id: MiniTileWhiteLineE @@ -6175,7 +6170,7 @@ entities: 1795: 24,23 1825: 12,28 1826: 12,29 - 3948: 29,12 + 3947: 29,12 - node: color: '#334E6DC8' id: MiniTileWhiteLineN @@ -6286,8 +6281,8 @@ entities: 1813: 15,24 1819: 13,26 1820: 12,26 - 3809: 25,13 - 3952: 26,13 + 3808: 25,13 + 3951: 26,13 - node: color: '#EFB34196' id: MiniTileWhiteLineW @@ -6319,40 +6314,40 @@ entities: 1829: 11,27 1830: 11,28 1831: 11,29 - 3808: 24,14 - 3949: 29,12 + 3807: 24,14 + 3948: 29,12 - node: color: '#F9FFFEFF' id: MonoOverlay decals: - 4564: -2,-28 - 4565: -1,-27 - 4566: -2,-26 - 4567: -3,-27 - 4568: -5,-27 - 4569: -4,-26 - 4570: -7,-27 - 4571: -6,-26 - 4572: -8,-26 - 4573: -7,-25 - 4574: -8,-24 - 4575: -7,-23 - 4576: -8,-22 + 4563: -2,-28 + 4564: -1,-27 + 4565: -2,-26 + 4566: -3,-27 + 4567: -5,-27 + 4568: -4,-26 + 4569: -7,-27 + 4570: -6,-26 + 4571: -8,-26 + 4572: -7,-25 + 4573: -8,-24 + 4574: -7,-23 + 4575: -8,-22 - node: color: '#334E6DC8' id: OffsetCheckerAOverlay decals: - 3896: 9,22 - 3897: 9,21 - 3898: 9,20 - 3899: 10,20 - 3900: 11,20 - 4558: -40,-24 - 4559: -39,-24 - 4560: -38,-24 - 4561: -38,-23 - 4562: -38,-22 - 4563: -38,-21 + 3895: 9,22 + 3896: 9,21 + 3897: 9,20 + 3898: 10,20 + 3899: 11,20 + 4557: -40,-24 + 4558: -39,-24 + 4559: -38,-24 + 4560: -38,-23 + 4561: -38,-22 + 4562: -38,-21 - node: color: '#D381C996' id: OffsetCheckerAOverlay @@ -6377,33 +6372,33 @@ entities: 1240: 26,-65 1576: 25,-68 1577: 27,-68 - 3836: 26,-69 + 3835: 26,-69 - node: color: '#DE3A3A96' id: OffsetCheckerAOverlay decals: - 4549: -40,-28 - 4550: -39,-28 - 4551: -38,-28 - 4552: -38,-29 - 4553: -38,-30 - 4554: -39,-30 - 4555: -40,-30 - 4556: -40,-29 + 4548: -40,-28 + 4549: -39,-28 + 4550: -38,-28 + 4551: -38,-29 + 4552: -38,-30 + 4553: -39,-30 + 4554: -40,-30 + 4555: -40,-29 - node: color: '#F9801D80' id: OffsetCheckerAOverlay decals: - 4239: 11,-23 - 4240: 12,-23 - 4241: 12,-24 - 4242: 11,-24 - 4243: 11,-25 - 4244: 12,-25 - 4245: 12,-26 - 4246: 11,-26 - 4247: 11,-27 - 4248: 12,-27 + 4238: 11,-23 + 4239: 12,-23 + 4240: 12,-24 + 4241: 11,-24 + 4242: 11,-25 + 4243: 12,-25 + 4244: 12,-26 + 4245: 11,-26 + 4246: 11,-27 + 4247: 12,-27 - node: color: '#1D1D21FF' id: OffsetCheckerBOverlay @@ -6420,40 +6415,40 @@ entities: 490: 5,-58 491: 4,-58 492: 3,-58 - 4535: -40,-28 - 4536: -39,-28 - 4537: -38,-28 - 4538: -38,-29 - 4539: -38,-30 - 4540: -39,-30 - 4541: -40,-30 - 4542: -40,-29 - 4543: -40,-24 - 4544: -39,-24 - 4545: -38,-24 - 4546: -38,-23 - 4547: -38,-22 - 4548: -38,-21 + 4534: -40,-28 + 4535: -39,-28 + 4536: -38,-28 + 4537: -38,-29 + 4538: -38,-30 + 4539: -39,-30 + 4540: -40,-30 + 4541: -40,-29 + 4542: -40,-24 + 4543: -39,-24 + 4544: -38,-24 + 4545: -38,-23 + 4546: -38,-22 + 4547: -38,-21 - node: color: '#334E6DC8' id: OffsetCheckerBOverlay decals: - 3901: 10,22 - 3902: 11,22 + 3900: 10,22 + 3901: 11,22 - node: color: '#F9801D80' id: OffsetCheckerBOverlay decals: - 4227: 11,-27 - 4228: 12,-27 - 4229: 12,-26 - 4230: 12,-25 - 4231: 12,-24 - 4232: 12,-23 - 4233: 11,-23 - 4236: 11,-26 - 4237: 11,-25 - 4238: 11,-24 + 4226: 11,-27 + 4227: 12,-27 + 4228: 12,-26 + 4229: 12,-25 + 4230: 12,-24 + 4231: 12,-23 + 4232: 11,-23 + 4235: 11,-26 + 4236: 11,-25 + 4237: 11,-24 - node: color: '#52B4E996' id: OffsetOverlay @@ -6465,7 +6460,7 @@ entities: color: '#DE3A3A96' id: OffsetOverlay decals: - 4557: -39,-29 + 4556: -39,-29 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -6474,8 +6469,8 @@ entities: 975: 18,-19 976: 18,-16 980: 18,-22 - 4625: -25,-13 - 4626: -25,-14 + 4624: -25,-13 + 4625: -25,-14 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -6485,8 +6480,8 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 4627: -26,-13 - 4630: -26,-14 + 4626: -26,-13 + 4629: -26,-14 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -6500,7 +6495,7 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 4416: -21,-16 + 4415: -21,-16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 @@ -6516,12 +6511,12 @@ entities: color: '#FFFFFFFF' id: Rock01 decals: - 5110: -72.04435,4.0740204 + 5100: -72.04435,4.0740204 - node: color: '#FFFFFFFF' id: Rock02 decals: - 3888: 50.930492,-50.996082 + 3887: 50.930492,-50.996082 - node: angle: -39.269908169872416 rad color: '#FFFFFFFF' @@ -6710,8 +6705,8 @@ entities: 2020: -33.539146,25.539179 2022: -5.2004986,-96.93421 2023: -6.8671656,-96.80912 - 3801: -27.417637,-85.7586 - 3802: -28.500969,-84.938675 + 3800: -27.417637,-85.7586 + 3801: -28.500969,-84.938675 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -7275,7 +7270,7 @@ entities: 24: -17.355396,5.2854548 748: -30.477211,13.316003 749: -24.456902,12.013015 - 3827: 2.431754,-68.85548 + 3826: 2.431754,-68.85548 - node: color: '#FFFFFFFF' id: Rock07 @@ -7307,12 +7302,12 @@ entities: 2014: -33.455814,26.487755 2015: -31.528732,26.44606 2016: -31.424564,24.68442 - 3803: -27.469719,-86.81498 - 3804: -26.876545,-81.61934 - 3823: 3,-71 - 3824: 2,-70 - 3825: 2.759879,-70.54415 - 3826: 2.509879,-69.85617 + 3802: -27.469719,-86.81498 + 3803: -26.876545,-81.61934 + 3822: 3,-71 + 3823: 2,-70 + 3824: 2.759879,-70.54415 + 3825: 2.509879,-69.85617 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -7561,58 +7556,58 @@ entities: color: '#F9FFFEFF' id: SpaceStationSign1 decals: - 4288: -10,-38 + 4287: -10,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign2 decals: - 4287: -9,-38 + 4286: -9,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign3 decals: - 4286: -8,-38 + 4285: -8,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign4 decals: - 4285: -7,-38 + 4284: -7,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign5 decals: - 4284: -6,-38 + 4283: -6,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign6 decals: - 4283: -5,-38 + 4282: -5,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign7 decals: - 4282: -4,-38 + 4281: -4,-38 - node: angle: -1.5707963267948966 rad color: '#DE3A3AC0' id: StandClear decals: - 3994: -41,-1 - 3995: -41,-2 + 3993: -41,-1 + 3994: -41,-2 - node: angle: -1.5707963267948966 rad color: '#DE3A3AFF' id: StandClear decals: - 3996: -41,-1 - 3997: -41,-2 + 3995: -41,-1 + 3996: -41,-2 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' id: StandClear decals: + 3999: -41,0 4000: -41,0 - 4001: -41,0 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -7690,8 +7685,8 @@ entities: 983: 15,-22 1064: 18,-33 1095: 10,-30 - 4249: 21,-22 - 4631: -21,-10 + 4248: 21,-22 + 4630: -21,-10 - node: color: '#5E7C1681' id: ThreeQuarterTileOverlayGreyscale @@ -7705,7 +7700,7 @@ entities: 1836: 37,18 1837: 50,18 1838: 57,18 - 4420: -22,-14 + 4419: -22,-14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -7716,7 +7711,7 @@ entities: color: '#F9801D80' id: ThreeQuarterTileOverlayGreyscale decals: - 4209: 10,-22 + 4208: 10,-22 - node: color: '#0E7F1B81' id: ThreeQuarterTileOverlayGreyscale180 @@ -7732,8 +7727,8 @@ entities: 309: 27,-29 989: 19,-31 1068: 22,-35 - 4251: 26,-24 - 4634: -19,-11 + 4250: 26,-24 + 4633: -19,-11 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 @@ -7741,7 +7736,7 @@ entities: 1856: 48,15 1857: 55,6 1858: 59,15 - 4417: -14,-22 + 4416: -14,-22 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 @@ -7751,7 +7746,7 @@ entities: color: '#F9801D80' id: ThreeQuarterTileOverlayGreyscale180 decals: - 4211: 13,-28 + 4210: 13,-28 - node: color: '#0E7F1B81' id: ThreeQuarterTileOverlayGreyscale270 @@ -7771,8 +7766,8 @@ entities: 1065: 18,-35 1108: 14,-35 1116: 10,-31 - 4275: 21,-24 - 4632: -21,-11 + 4274: 21,-24 + 4631: -21,-11 - node: color: '#5E7C1681' id: ThreeQuarterTileOverlayGreyscale270 @@ -7785,8 +7780,8 @@ entities: decals: 1860: 57,15 1861: 37,15 - 4418: -21,-22 - 4419: -22,-16 + 4417: -21,-22 + 4418: -22,-16 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 @@ -7796,7 +7791,7 @@ entities: color: '#F9801D80' id: ThreeQuarterTileOverlayGreyscale270 decals: - 4210: 10,-28 + 4209: 10,-28 - node: color: '#0E7F1B81' id: ThreeQuarterTileOverlayGreyscale90 @@ -7811,8 +7806,8 @@ entities: decals: 301: 28,-27 302: 27,-28 - 4250: 26,-22 - 4633: -19,-10 + 4249: 26,-22 + 4632: -19,-10 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 @@ -7820,7 +7815,7 @@ entities: 1854: 55,18 1855: 48,18 1859: 59,18 - 4421: -18,-14 + 4420: -18,-14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 @@ -7831,27 +7826,27 @@ entities: color: '#F9801D80' id: ThreeQuarterTileOverlayGreyscale90 decals: - 4208: 13,-22 + 4207: 13,-22 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 4188: -31,-30 + 4187: -31,-30 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 4187: -34,-30 + 4186: -34,-30 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 5482: -31,-20 + 5466: -31,-20 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 4186: -34,-20 + 4185: -34,-20 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -7896,28 +7891,28 @@ entities: color: '#DE3A3AC0' id: WarnCornerSmallGreyscaleSE decals: - 4985: -42,1 - 4986: -42,1 + 4975: -42,1 + 4976: -42,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 5481: -36,-16 + 5465: -36,-16 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 4289: -13,-40 - 4290: -12,-40 - 4291: -11,-40 - 4292: -8,-40 - 4293: -7,-40 - 4294: -6,-40 - 4295: -5,-40 - 4373: -10,-40 - 4374: -9,-40 - 4443: -32,-36 - 4444: -31,-36 + 4288: -13,-40 + 4289: -12,-40 + 4290: -11,-40 + 4291: -8,-40 + 4292: -7,-40 + 4293: -6,-40 + 4294: -5,-40 + 4372: -10,-40 + 4373: -9,-40 + 4442: -32,-36 + 4443: -31,-36 - node: color: '#FFFFFFFF' id: WarnLineE @@ -7937,60 +7932,60 @@ entities: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 4982: -42,-2 - 4983: -42,-2 + 4972: -42,-2 + 4973: -42,-2 - node: color: '#DE3A3AC0' id: WarnLineGreyscaleE decals: - 4984: -42,-2 + 4974: -42,-2 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleE decals: - 3998: -42,-1 - 3999: -42,0 + 3997: -42,-1 + 3998: -42,0 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 4196: -36,-18 - 4197: -36,-17 + 4195: -36,-18 + 4196: -36,-17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 4174: -30,-26 - 4175: -31,-26 - 4176: -32,-26 - 4177: -33,-26 - 4178: -34,-26 - 4179: -35,-26 - 4189: -33,-30 - 4190: -32,-30 - 4194: -31,-34 - 4195: -32,-34 + 4173: -30,-26 + 4174: -31,-26 + 4175: -32,-26 + 4176: -33,-26 + 4177: -34,-26 + 4178: -35,-26 + 4188: -33,-30 + 4189: -32,-30 + 4193: -31,-34 + 4194: -32,-34 - node: color: '#DE3A3AC0' id: WarnLineGreyscaleS decals: - 4987: -41,1 - 4988: -41,1 + 4977: -41,1 + 4978: -41,1 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 4180: -35,-24 - 4181: -34,-24 - 4182: -33,-24 - 4183: -32,-24 - 4184: -31,-24 - 4185: -30,-24 - 4191: -33,-20 - 4192: -32,-16 - 4193: -31,-16 - 4198: -35,-16 - 5483: -32,-20 + 4179: -35,-24 + 4180: -34,-24 + 4181: -33,-24 + 4182: -32,-24 + 4183: -31,-24 + 4184: -30,-24 + 4190: -33,-20 + 4191: -32,-16 + 4192: -31,-16 + 4197: -35,-16 + 5467: -32,-20 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8058,51 +8053,51 @@ entities: 2007: 38,0 2008: 39,0 2009: 40,0 - 3939: 56,12 - 3940: 56,9 + 3938: 56,12 + 3939: 56,9 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 3907: 34,-91 - 3908: 35,-91 - 3909: 36,-91 - 3910: 36,-92 - 3911: 35,-92 - 3912: 34,-92 - 3913: 34,-93 - 3914: 35,-93 - 3915: 36,-93 - 3916: 36,-94 - 3917: 35,-94 - 3918: 34,-94 - 3919: 34,-95 - 3920: 35,-95 - 3921: 36,-95 - 3922: 36,-96 - 3923: 34,-96 - 3924: 35,-96 - 3925: 27,-91 - 3926: 26,-91 - 3927: 26,-92 - 3928: 27,-92 - 3929: 27,-93 - 3930: 26,-93 - 3931: 26,-94 - 3932: 27,-94 - 3933: 27,-95 - 3934: 27,-96 - 3935: 26,-96 - 3936: 26,-95 - 3937: 34,-90 - 3938: 35,-90 + 3906: 34,-91 + 3907: 35,-91 + 3908: 36,-91 + 3909: 36,-92 + 3910: 35,-92 + 3911: 34,-92 + 3912: 34,-93 + 3913: 35,-93 + 3914: 36,-93 + 3915: 36,-94 + 3916: 35,-94 + 3917: 34,-94 + 3918: 34,-95 + 3919: 35,-95 + 3920: 36,-95 + 3921: 36,-96 + 3922: 34,-96 + 3923: 35,-96 + 3924: 27,-91 + 3925: 26,-91 + 3926: 26,-92 + 3927: 27,-92 + 3928: 27,-93 + 3929: 26,-93 + 3930: 26,-94 + 3931: 27,-94 + 3932: 27,-95 + 3933: 27,-96 + 3934: 26,-96 + 3935: 26,-95 + 3936: 34,-90 + 3937: 35,-90 - node: color: '#474F52FF' id: WoodTrimThinLineS decals: - 3988: -37,4 - 3989: -38,4 - 3990: -39,4 + 3987: -37,4 + 3988: -38,4 + 3989: -39,4 - node: angle: 3.141592653589793 rad color: '#0E7F1BFF' @@ -8127,12 +8122,12 @@ entities: color: '#F9801DFF' id: grasssnowb1 decals: - 5109: -73.41935,1.1865985 + 5099: -73.41935,1.1865985 - node: color: '#F9801DFF' id: grasssnowb3 decals: - 5108: -73.9506,4.4180098 + 5098: -73.9506,4.4180098 - node: color: '#D381C996' id: rune1 @@ -8143,19 +8138,19 @@ entities: id: rune2 decals: 554: 2,-52 - 3818: 20,-66 + 3817: 20,-66 - node: color: '#D381C996' id: rune3 decals: 555: 4,-52 - 3819: 21,-68 + 3818: 21,-68 - node: color: '#D381C996' id: rune4 decals: 415: 6,-61 - 3820: 19,-68 + 3819: 19,-68 - node: color: '#D381C996' id: rune5 @@ -12740,11 +12735,6 @@ entities: type: Transform - proto: AirlockBrigLocked entities: - - uid: 363 - components: - - pos: -4.5,-7.5 - parent: 6747 - type: Transform - uid: 4756 components: - pos: -7.5,-63.5 @@ -14441,6 +14431,13 @@ entities: - pos: 42.5,-22.5 parent: 6747 type: Transform +- proto: AirlockSecurity + entities: + - uid: 25526 + components: + - pos: -3.5,-6.5 + parent: 6747 + type: Transform - proto: AirlockSecurityGlass entities: - uid: 533 @@ -14652,6 +14649,11 @@ entities: - pos: -10.5,-49.5 parent: 6747 type: Transform + - uid: 2477 + components: + - pos: -25.5,-24.5 + parent: 6747 + type: Transform - uid: 5381 components: - pos: 43.5,-13.5 @@ -14679,11 +14681,6 @@ entities: - pos: 36.5,-19.5 parent: 6747 type: Transform - - uid: 11454 - components: - - pos: -25.5,-24.5 - parent: 6747 - type: Transform - proto: AirlockVirologyGlassLocked entities: - uid: 1975 @@ -51696,12 +51693,6 @@ entities: - pos: -10.5,-3.5 parent: 6747 type: Transform - - uid: 316 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 6747 - type: Transform - uid: 504 components: - rot: 1.5707963267948966 rad @@ -53130,6 +53121,11 @@ entities: pos: 30.5,-60.5 parent: 6747 type: Transform + - uid: 3738 + components: + - pos: 18.519688,-38.556324 + parent: 6747 + type: Transform - uid: 4346 components: - rot: 3.141592653589793 rad @@ -54003,6 +53999,11 @@ entities: - pos: 55.5,-42.5 parent: 6747 type: Transform + - placedEntities: + - 9085 + type: SolutionHeater + - isPlaceable: False + type: PlaceableSurface - proto: ChurchOrganInstrument entities: - uid: 4241 @@ -56401,6 +56402,12 @@ entities: - pos: 24.5,-32.5 parent: 6747 type: Transform + - uid: 2478 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 6747 + type: Transform - uid: 3351 components: - pos: 41.5,-31.5 @@ -58471,6 +58478,18 @@ entities: type: Transform - proto: DisposalBend entities: + - uid: 316 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 6747 + type: Transform + - uid: 1431 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 6747 + type: Transform - uid: 2742 components: - rot: 1.5707963267948966 rad @@ -59318,6 +59337,11 @@ entities: pos: -9.5,-10.5 parent: 6747 type: Transform + - uid: 22357 + components: + - pos: -2.5,-6.5 + parent: 6747 + type: Transform - uid: 22359 components: - rot: 1.5707963267948966 rad @@ -59359,6 +59383,12 @@ entities: pos: -30.5,-0.5 parent: 6747 type: Transform + - uid: 22447 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 6747 + type: Transform - uid: 23760 components: - pos: 47.5,13.5 @@ -66775,12 +66805,6 @@ entities: pos: -4.5,-9.5 parent: 6747 type: Transform - - uid: 22357 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-8.5 - parent: 6747 - type: Transform - uid: 22358 components: - rot: 1.5707963267948966 rad @@ -66896,18 +66920,6 @@ entities: pos: -44.5,-11.5 parent: 6747 type: Transform - - uid: 22446 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-7.5 - parent: 6747 - type: Transform - - uid: 22447 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-6.5 - parent: 6747 - type: Transform - uid: 22448 components: - rot: 3.141592653589793 rad @@ -67212,6 +67224,23 @@ entities: pos: 0.5,-0.5 parent: 6747 type: Transform + - uid: 25523 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 6747 + type: Transform + - uid: 25524 + components: + - pos: -2.5,-7.5 + parent: 6747 + type: Transform + - uid: 25525 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 6747 + type: Transform - proto: DisposalRouter entities: - uid: 12860 @@ -68911,6 +68940,18 @@ entities: type: Tag - proto: DrinkWaterJug entities: + - uid: 9085 + components: + - pos: 55.86166,-42.720333 + parent: 6747 + type: Transform + - sleepingAllowed: False + type: Physics + - uid: 9086 + components: + - pos: -23.796017,-9.184493 + parent: 6747 + type: Transform - uid: 17594 components: - pos: 32.855408,-91.27466 @@ -73629,6 +73670,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 9088 + components: + - pos: -23.5,-14.5 + parent: 6747 + type: Transform + - fixtures: {} + type: Fixtures - uid: 15889 components: - pos: 2.5,-30.5 @@ -73636,6 +73684,13 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 25522 + components: + - pos: -1.5,-21.5 + parent: 6747 + type: Transform + - fixtures: {} + type: Fixtures - proto: FloraRockSolid01 entities: - uid: 7087 @@ -118418,6 +118473,11 @@ entities: type: Transform - proto: LockerParamedicFilled entities: + - uid: 9089 + components: + - pos: 11.983787,-29.5104 + parent: 6747 + type: Transform - uid: 25500 components: - pos: 12.5,-29.5 @@ -130386,6 +130446,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 25521 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-50.5 + parent: 6747 + type: Transform + - enabled: False + type: AmbientSound - proto: PoweredLightBlueInterior entities: - uid: 1634 @@ -132296,16 +132364,6 @@ entities: - pos: 32.5,16.5 parent: 6747 type: Transform - - uid: 2477 - components: - - pos: 18.5,-39.5 - parent: 6747 - type: Transform - - uid: 2478 - components: - - pos: 19.5,-39.5 - parent: 6747 - type: Transform - uid: 2479 components: - pos: 20.5,-39.5 @@ -132399,6 +132457,12 @@ entities: - pos: 21.5,-23.5 parent: 6747 type: Transform + - uid: 3739 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-39.5 + parent: 6747 + type: Transform - uid: 3742 components: - pos: 10.5,-34.5 @@ -142196,6 +142260,13 @@ entities: pos: -33.64376,1.5674789 parent: 6747 type: Transform +- proto: Roboisseur + entities: + - uid: 363 + components: + - pos: -13.5,-26.5 + parent: 6747 + type: Transform - proto: RobustHarvestChemistryBottle entities: - uid: 1705 @@ -142518,14 +142589,14 @@ entities: - pos: 27.496437,18.586308 parent: 6747 type: Transform - - uid: 3738 + - uid: 4396 components: - - pos: 19.536514,-39.348763 + - pos: 19.496231,-52.37857 parent: 6747 type: Transform - - uid: 4396 + - uid: 9090 components: - - pos: 19.496231,-52.37857 + - pos: 20.533249,-39.465157 parent: 6747 type: Transform - uid: 10388 @@ -142691,11 +142762,6 @@ entities: - pos: 27.570381,18.644657 parent: 6747 type: Transform - - uid: 3739 - components: - - pos: 18.505264,-39.38003 - parent: 6747 - type: Transform - uid: 3868 components: - flags: InContainer @@ -142721,6 +142787,12 @@ entities: pos: 3.5264168,-15.312646 parent: 6747 type: Transform + - uid: 11454 + components: + - rot: 3.141592653589793 rad + pos: 19.498447,-39.433884 + parent: 6747 + type: Transform - uid: 22572 components: - pos: 32.4218,15.499837 @@ -144953,6 +145025,12 @@ entities: - pos: -27.5,-57.5 parent: 6747 type: Transform + - uid: 9087 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 6747 + type: Transform - uid: 10489 components: - pos: -0.5,-30.5 @@ -146595,6 +146673,11 @@ entities: - pos: 46.5,-42.5 parent: 6747 type: Transform + - uid: 9084 + components: + - pos: 18.5,-38.5 + parent: 6747 + type: Transform - proto: SpawnPointPrisoner entities: - uid: 3516 @@ -155048,11 +155131,6 @@ entities: - pos: -9.5,-7.5 parent: 6747 type: Transform - - uid: 1431 - components: - - pos: -3.5,-6.5 - parent: 6747 - type: Transform - uid: 1434 components: - pos: -3.5,-4.5 @@ -161888,6 +161966,11 @@ entities: - pos: 20.5,-64.5 parent: 6747 type: Transform + - uid: 22446 + components: + - pos: -4.5,-7.5 + parent: 6747 + type: Transform - uid: 22746 components: - pos: 30.5,44.5 @@ -168409,24 +168492,6 @@ entities: - pos: 25.5,-20.5 parent: 6747 type: Transform - - uid: 9088 - components: - - rot: 3.141592653589793 rad - pos: 18.5,-39.5 - parent: 6747 - type: Transform - - uid: 9089 - components: - - rot: 3.141592653589793 rad - pos: 19.5,-39.5 - parent: 6747 - type: Transform - - uid: 9090 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-38.5 - parent: 6747 - type: Transform - uid: 16796 components: - rot: 1.5707963267948966 rad @@ -170353,30 +170418,6 @@ entities: pos: 24.5,-45.5 parent: 6747 type: Transform - - uid: 9084 - components: - - rot: 3.141592653589793 rad - pos: 20.5,-38.5 - parent: 6747 - type: Transform - - uid: 9085 - components: - - rot: -1.5707963267948966 rad - pos: 20.5,-39.5 - parent: 6747 - type: Transform - - uid: 9086 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,-39.5 - parent: 6747 - type: Transform - - uid: 9087 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,-39.5 - parent: 6747 - type: Transform - uid: 10394 components: - rot: 3.141592653589793 rad diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/meals.yml new file mode 100644 index 0000000000..0b071a250f --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Consumable/Food/meals.yml @@ -0,0 +1,22 @@ +- type: entity + name: grilled cheese + parent: FoodMealBase + id: FoodMealGrilledCheese + description: Two slices of bread cooked in butter with a lofty wedge of cheese in the middle. + components: + - type: FlavorProfile + flavors: + - butter + - cheesy + - type: Sprite + sprite: DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi + state: "grilled-cheese-v2" + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 6 + - ReagentId: Vitamin + Quantity: 2 diff --git a/Resources/Prototypes/DeltaV/NPC/roboisseur.yml b/Resources/Prototypes/DeltaV/NPC/roboisseur.yml new file mode 100644 index 0000000000..2c0b3aee8a --- /dev/null +++ b/Resources/Prototypes/DeltaV/NPC/roboisseur.yml @@ -0,0 +1,20 @@ +- type: entity + parent: BaseStructure + id: Roboisseur + name: Mr. Butlertron + description: It asks for food to deliver to exotic customers across the cosmos. Powered by the latest technology in bluespace food delivery. + components: + - type: Sprite + noRot: true + drawdepth: Mobs + sprite: DeltaV/Structures/Machines/roboisseur.rsi + layers: + - state: roboisseur-1 + - type: Roboisseur + - type: Speech + speechSounds: Pai + - type: Appearance + - type: Grammar + attributes: + gender: male + proper: true diff --git a/Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml new file mode 100644 index 0000000000..a64617c047 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Cooking/meal_recipes.yml @@ -0,0 +1,9 @@ +- type: microwaveMealRecipe + id: RecipeGrilledCheese + name: grilled cheese + result: FoodMealGrilledCheese + time: 10 + solids: + FoodBreadPlainSlice: 2 + FoodCheeseSlice: 1 + FoodButter: 1 diff --git a/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml b/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml index 00f8297016..409b076b87 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml @@ -48,6 +48,16 @@ products: GreenGrass: 6 +- type: reaction + id: BlueCuracao + reactants: + Sugar: + amount: 1 + JuiceOrange: + amount: 2 + products: + BlueCuracao: 3 + - type: reaction id: Daiquiri reactants: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 7e18c24783..29e8580252 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -117,6 +117,16 @@ - type: NoSlip - type: MobPrice price: 50 + - type: Item + size: 5 + - type: Extractable + grindableSolutionName: bee + - type: SolutionContainerManager + solutions: + bee: + reagents: + - ReagentId: GroundBee + Quantity: 5 - type: entity name: bee diff --git a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml index 6c08fda452..37ad6e3aed 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Shutter/blast_door.yml @@ -24,6 +24,9 @@ - type: Appearance - type: RadiationBlocker resistance: 8 + - type: Damageable + damageContainer: Inorganic + damageModifierSet: StrongMetallic - type: entity id: BlastDoorOpen diff --git a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml index c747a51596..a4a1283664 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/paramedic.yml @@ -26,11 +26,13 @@ id: ParamedicGear equipment: jumpsuit: ClothingUniformJumpsuitParamedic - back: ClothingBackpackMedicalFilled + back: ClothingBackpackParamedicFilled shoes: ClothingShoesColorWhite id: ParamedicPDA ears: ClothingHeadsetMedical belt: ClothingBeltParamedicFilled + pocket1: HandheldGPSBasic + pocket2: HandheldCrewMonitor innerclothingskirt: ClothingUniformJumpskirtParamedic - satchel: ClothingBackpackSatchelMedicalFilled - duffelbag: ClothingBackpackDuffelMedicalFilled + satchel: ClothingBackpackSatchelParamedicFilled + duffelbag: ClothingBackpackDuffelParamedicFilled diff --git a/Resources/ServerInfo/Rules.txt b/Resources/ServerInfo/Rules.txt index 4a68a8e38c..f4c5d2d9e3 100644 --- a/Resources/ServerInfo/Rules.txt +++ b/Resources/ServerInfo/Rules.txt @@ -2,7 +2,7 @@ [color=#ff0000]DISCONNECTING FROM OR IGNORING/EVADING ADMIN-HELPS WILL RESULT IN AN APPEAL ONLY BAN.[/color] -[color=#ff6600]Rules Update 26Aug2023 - Changed rule 5 to remove defibbed players from forgetting the circumstances of their death. Adjusted rule 15 to fix any confusion about the amount of time it takes to qualify a prisoner for extended confinement.[/color] +[color=#00ff00]Rules Update 20Sep2023 - Added a point to rule 15 about security's ability to implant check detainees. Added a point to rule 2 about the crew hiding the nuke in an impossible-to-see location. Added a point to rule 4 about the practice of Antag Rolling. Clarified rule 3 to include using OOC/LOOC and Emotes chats inappropriately. [/color] [color=#ffff00]Delta-V is a Medium Roleplay server. Try to immerse yourself into your character. This includes doing your job, interacting with your fellow crewmates, and using roleplay as the primary vessel to play the game. MRP places less emphasis on “winning” and more on just telling a story.[/color] @@ -19,6 +19,7 @@ If you have any questions about these rules, please use the admin help (ahelp) m - Do not abuse glitches and exploits. [color=#ff0000]We have zero tolerance for abusing exploits/bugs. If you’re not sure, ask an admin.[/color] Otherwise, please use the #bug-reports channel on the Discord to report the bug. - If you are banned from a role or department, you may not play that role. This includes seeking or accepting promotions into roles you are banned from. - Do not make yourself a major problem/annoyance/disruption for the crew while not being an antagonist (i.e. self-antagging). + - Do not, as a crewmate, hide the nuclear fission explosive (i.e. "the nuke") in an impossible to see location. - Do not ignore the admin help relay or abuse it by flooding it with garbage, checking for admins before stating a problem (ex: "hello?", "any admins?"), using it as a chatroom, or sending messages of no substance. Hostility to administrators in the relay will result in your removal. All ahelp messages are sent to the Delta-V Discord. - Department strikes, revolutions (ex: cargonia and any variation thereof), riots, cults, and any other type of similar largely disruptive behavior are strictly forbidden. These activities are generally antagonist-only and all players regardless of antagonist status must obtain admin Central Command permission before engaging in this behavior (you are extremely unlikely to get permission). - AFK (aka SSD) and catatonic players are considered to have the same rights as a conscious crewmate. @@ -28,17 +29,20 @@ If you have any questions about these rules, please use the admin help (ahelp) m - Do not spam. - Do not advertise. - Do not use netspeak in character (i.e. btw, lmfao). + - Do not use the Emotes channel to bypass an inability to speak. This includes examples like "motions for you to put parmesan THEN sauce on the spaghetti," "im friendly," and "huh weird looks like I can't type." + - Use the LOOC and OOC channels properly. Don’t speak of in-character matters in those channels unless you’re asking questions related to in-game concepts. + * DO NOT use in-character channels to bypass a lack of ability to use OOC/LOOC chats (e.g. "Huh, wonder where captain went? *OOC* He probably left to get dinner lol"). This will result in an immediate dewhitelist. - Hate speech, slurs and bigotry are [color=#ff0000]not allowed[/color]. Words that are closely tied to real life slurs are [color=#ff0000]not allowed[/color]. - No racist remarks towards in-game races/morphotypes (i.e. Simulated Racism), while you don’t have to like everybody, you should not be acting upon nor expressing your distaste for other races/morphotypes. [color=#a4885c]4.[/color] Follow Metagaming guidelines - - If you die and get revived, do not act on things you saw while you were dead. - - Use the LOOC and OOC channels properly. Don’t speak of in-character matters in those channels unless you’re asking questions related to in-game concepts. - - Do not engage in meta-communications. This includes using chat channels outside of what is available in-game to communicate with other players in the same game. - - Players are allowed to have in-character relationships (friends, enemies, or otherwise), however they cannot be used as a reason to grant or deny things based exclusively on having a relationship with one another(i.e. Meta-Friending). - - You are allowed to have knowledge of past experiences with someone else in prior shifts. This does not give you permission to hold a grudge against someone that results in you treating them differently in an unfair way (i.e. Meta-Grudging). - - Specific players who were antagonists in previous rounds must not be treated differently because of it. - - [color=#ff0000]Do not stream the current round to the Delta-V Discord.[/color] + - If you die and get revived, do not act on things you saw while you were dead. + - Do not engage in meta-communications. This includes using chat channels outside of what is available in-game to communicate with other players in the same game. + - Players are allowed to have in-character relationships (friends, enemies, or otherwise), however they cannot be used as a reason to grant or deny things based exclusively on having a relationship with one another(i.e. Meta-Friending). + - You are allowed to have knowledge of past experiences with someone else in prior shifts. This does not give you permission to hold a grudge against someone that results in you treating them differently in an unfair way (i.e. Meta-Grudging). + - Specific players who were antagonists in previous rounds must not be treated differently because of it. + - Do not "Antag Roll." This is the act of joining rounds for the purpose of seeing if you joined as an antagonist, and leaving soon after if not. Players who have a history of this behavior will have their whitelist revoked and/or face a ban. + - [color=#ff0000]Do not stream the current round to the Delta-V Discord.[/color] [color=#a4885c]5.[/color] If a player dies and is brought back, you don't have amnesia, but you do forget the last five minutes leading to your death and cannot describe who or what killed you. Players that are revived by using a defibrillator CAN recall what killed them and do not have any forgetfulness about what happened while they were alive. [color=#ff0000]Please report players who violate this rule.[/color] @@ -72,6 +76,7 @@ If you have any questions about these rules, please use the admin help (ahelp) m - The damage antagonists cause should be roughly proportional to their objectives, and contribute towards achieving them in some way. However antagonists have leniency in regards to what they can and can’t do. If you are concerned as to whether or not what you're about to do is allowed, feel free to ahelp and ask an admin. - Other antagonists are not necessarily your friends. Traitors, rat kings, and possibly even space dragons are free agents, but no one should be working together with xenomorphs or zombies. - Exploits, arrivals camping, unnecessary round extensions, and other extremely lame behavior are forbidden. + - Ghost roles have their own independent rules that must be followed. [color=#ff0000]Breaking these rules can result in a ban, whitelist removal, or both.[/color] [color=#a4885c]11.[/color] Psionics - Players that have psionic powers are allowed to use them at-will to accomplish their roleplay goals. It should be noted that in-character consequences can happen as a result of their use, including being stripped of psionic powers or even death. @@ -109,6 +114,7 @@ In the following special circumstances, lethal force may be used by Security: - Brig times should generally not exceed 20 minutes unless the crime is permabriggable. - Security may choose to confiscate dangerous items (weapons, firearms) as well as items used to commit crimes or items that prove problematic in possession of the detainee (tools, insulated gloves, etc.). - Security may inspect PDAs of detainees, but can only confiscate them if they are obviously contraband. Suspicion alone is NOT sufficient for PDA confiscation by Security. + - Security is prohibited from checking crewmates for implants without reasonable suspicion. - Detainees that die in your custody must be cloned unless they have been (legally) executed or have committed suicide. - Executions must be for a capital crime, used only as a last resort, and MUST be authorized by the highest ranking member of Security, who will answer to the use of execution. - Detainees in the brig have the right to know what they are being charged with. diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/grilled-cheese-v2.png b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/grilled-cheese-v2.png new file mode 100644 index 0000000000..baadc530b9 Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/grilled-cheese-v2.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/inhand-left.png b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/inhand-left.png new file mode 100644 index 0000000000..4a1759cd2c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/inhand-right.png b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/inhand-right.png new file mode 100644 index 0000000000..e2b38fab5c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/meta.json new file mode 100644 index 0000000000..c6ea68103b --- /dev/null +++ b/Resources/Textures/DeltaV/Objects/Consumable/Food/Baked/grilledcheese.rsi/meta.json @@ -0,0 +1,20 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "rosysyntax", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "grilled-cheese-v2" + }, + { + "name": "inhand-left" + }, + { + "name": "inhand-right" + } + ] +} diff --git a/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/meta.json new file mode 100644 index 0000000000..97d0e5f4ba --- /dev/null +++ b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "JustAnOrange", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "roboisseur-1" + }, + { + "name": "roboisseur-2" + }, + { + "name": "roboisseur-3" + }, + { + "name": "roboisseur-4" + }, + { + "name": "roboisseur-impatient1" + }, + { + "name": "roboisseur-impatient2" + } + ] +} diff --git a/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-1.png b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-1.png new file mode 100644 index 0000000000..454e6dd065 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-1.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-2.png b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-2.png new file mode 100644 index 0000000000..d33fad6405 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-2.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-3.png b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-3.png new file mode 100644 index 0000000000..fbcb190fba Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-3.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-4.png b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-4.png new file mode 100644 index 0000000000..d839fd636d Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-4.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-impatient1.png b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-impatient1.png new file mode 100644 index 0000000000..b1ef2cd81e Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-impatient1.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-impatient2.png b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-impatient2.png new file mode 100644 index 0000000000..fc6e6ee252 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/roboisseur.rsi/roboisseur-impatient2.png differ